28.07.2023, 22:07
Hi,
here is SMS message possibility describe, and latest CSQ (signal level was added):
https://forum.logicmachine.net/showthrea...hlight=CSQ
Can we somehow add ATD modem command (call to number) to modem library?
SMS/Telegram/E-mail is not always take attention when we are busy, but if we can initiate call to showed in script number and enter how many rings can be done - such way can be used for security or fire alarm notification.
Info found about AT commands:
https://m2msupport.net/m2msupport/voice-...oice-call/
I think to user.sms library we need to add something like this - very simple call to number command:
function call(number)
cmd = string.format('ATD', number)
send(cmd)
sleep(8)
send('ATH')
end
but where and how do it correctly with line/answer check I still not experienced to do
Error I have:
User library sms:472: attempt to call global 'send' (a nil value)
stack traceback:
User library sms:472: in function 'call'
Alex
here is SMS message possibility describe, and latest CSQ (signal level was added):
https://forum.logicmachine.net/showthrea...hlight=CSQ
Can we somehow add ATD modem command (call to number) to modem library?
SMS/Telegram/E-mail is not always take attention when we are busy, but if we can initiate call to showed in script number and enter how many rings can be done - such way can be used for security or fire alarm notification.
Info found about AT commands:
https://m2msupport.net/m2msupport/voice-...oice-call/
I think to user.sms library we need to add something like this - very simple call to number command:
function call(number)
cmd = string.format('ATD', number)
send(cmd)
sleep(8)
send('ATH')
end
but where and how do it correctly with line/answer check I still not experienced to do
Error I have:
User library sms:472: attempt to call global 'send' (a nil value)
stack traceback:
User library sms:472: in function 'call'
Alex