This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

SMS not received
#12
Log the sending result in the resident script, it should be OK if the message is sent.
Code:
local res = modem:sendsms(msg:sub(1, sep - 1), msg:sub(sep + 1))
log(res)

The message can be retried several times like this:
Code:
for retry = 1, 5 do
  local res = modem:sendsms(msg:sub(1, sep - 1), msg:sub(sep + 1))
  if res == 'OK' then
    break
  else
    os.sleep(5)
  end
end
Reply


Messages In This Thread
SMS not received - by andrepneves@gmail.com - 20.03.2025, 14:49
RE: SMS not received - by admin - 21.03.2025, 07:59
RE: SMS not received - by admin - 26.05.2025, 06:11
RE: SMS not received - by admin - 26.05.2025, 11:56
RE: SMS not received - by admin - 26.05.2025, 12:30
RE: SMS not received - by admin - 26.05.2025, 14:20
RE: SMS not received - by admin - 03.06.2025, 12:27

Forum Jump: