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.

Reactor LTE problem
#13
(06.11.2025, 20:07)AlexLV Wrote: Hi Cristian,

not remember all details now, but I added to my modem script's this part (in incoming sms handler):


Code:
-- incoming sms handler   readcsq = function()     local res, err, reply = modem:send('AT+CSQ')     local rssi     if reply then       rssi = reply:match('%+CSQ:%s+(%d+),(%d+)')     end     rssi = tonumber(rssi) or 0     if 2 <= rssi and rssi <= 9 then       quality = 'marginal'     elseif 10 <= rssi and rssi <= 14 then       quality = 'ok'     elseif 15 <= rssi and rssi <= 19 then       quality = 'good'     elseif 20 <= rssi and rssi <= 30 then       quality = 'excellent'     else       quality = 'unknown'     end     grp.write('0/0/40', quality)  -- Modem signal level write to group   end


For modem I use resident script, working every 10 seconds.
Hope it helps.
If not - I will look deep and will write my modem's script and info. I have 2G BGS2T modem, connected to usb on LM through USB2RS232 adapter. Working already ~8 years without problems.

BR,

Alex
Thanks I will check.
Reply


Messages In This Thread
Reactor LTE problem - by BMSimon - 27.05.2024, 10:02
RE: Reactor LTE problem - by admin - 27.05.2024, 10:03
RE: Reactor LTE problem - by BMSimon - 27.05.2024, 12:55
RE: Reactor LTE problem - by admin - 27.05.2024, 13:29
RE: Reactor LTE problem - by Novodk - 27.05.2024, 15:38
RE: Reactor LTE problem - by Frank68 - 29.05.2024, 12:54
RE: Reactor LTE problem - by admin - 27.05.2024, 15:57
RE: Reactor LTE problem - by Novodk - 27.05.2024, 16:33
RE: Reactor LTE problem - by admin - 27.05.2024, 16:36
RE: Reactor LTE problem - by admin - 29.05.2024, 12:58
RE: Reactor LTE problem - by CristianAgata - 06.11.2025, 16:41
RE: Reactor LTE problem - by AlexLV - 06.11.2025, 20:07
RE: Reactor LTE problem - by CristianAgata - 06.11.2025, 20:21

Forum Jump: