-
Notifications
You must be signed in to change notification settings - Fork 65
Open
Description
var device = '/dev/ttyUSB0';
var message = {
text : 'Hello',
receiver: '+91xxxx',
encoding: '7bit'
};
modem.open(device, function(){
console.log('OPEN!!');
});
/*
- Send SMS
*/
modem.sms(message, function(err, res){
console.log('SMS', err, res);
});
OUTPUT:
node gsm_modem.js
OPEN!!
It can't send sms. 'delivery' method is also not working.
Metadata
Metadata
Assignees
Labels
No labels