Rikke 04/17/2023 10:00 AMHello,
I would like to get the rssi from my toit device running with sequans modem. I can see the function signal_strength -> float?:
from cellular package cellular/src/base/base.toit
line 119 does exactly what I want.
My problem is I can't find a way to get the value from the monarch container, and use it in a different container.
In the cellular/src/base/service.toit
file I can call the function using driver.signal_strength
and get the value I expect. But I can only print it out on serial log.
I've tried to save the service when opening the network, but this is CellularServiceClient
and I need CellularServiceProvider
.
Have I missed the simple way of getting the signal strength from modem, or is it supposed to be difficult to get hands on the uart connected to modem?