Hi guys
I have been using the the following cellular commands for weeks now but suddenly today they do not compile anymore.
#include "cellular_hal.h"
STARTUP(cellular_credentials_set("vmc.gprs.is", "", "", NULL));
void setup()
{
...
}
void loop()
{
...
CellularSignal sig = Cellular.RSSI();
sign = map(sig.rssi, -113, -51, 0, 100);
}
The error I’m getting is “‘CellularSignal’ was not declared in this scope”.
Does anyone else experience this ?