SMS Alerts with 3G USB

Hi all,
New to this and I have searched he forum but I can’t find any reliable source if it works or how to do it, most threads just ends up without the questions resolved.

Running Vera Edge UI7 (Application Version: 1.7.2406) and would like to have my alerts sent to my with the help of a USB 3g stick.
The internet connection is not reliable so I need to send the alerts with a USB 3g stick.

Is this possible? If so how can I do it?

No. It won’t work.

If you had a hot spot that it could connect through via WiFi that would work.

Yes it is possible. This is an example that works.

–Sending a SMS

local PhoneNumber=‘+33xxxxxxxxx’
local Text=‘Your message’
local Port=‘ttyUSB2’

wserial=io.open(‘/dev/’ … Port ,‘w’)
wserial:write(‘AT+CMGF=1\n’)
wserial:flush()
wserial:write(‘AT+CMGS="’ … PhoneNumber … ‘"\n’)
wserial:flush()
wserial:write( Text … ‘\n’)
wserial:flush()
wserial:write( string.char(0x1A) )
wserial:write(‘\n’)
wserial:close()