Paul Staron
Paul Staron
We check GPRS connection every 10 minutes when GPRS is idle, 100ms seems rather excessive but every application is different. Don't normally have any disconnection issues but if we do...
Did you manage to your 7080 working? I have three 7070G's with GNSS but could not get any to connect to cell using a SIM that works in my 7000E...
@Humancell > No, I have my 7080G working, but not with this library at all. I've made several attempts to try and learn more about how to debug the situation...
Please see bottom of #566 You would need to to test for valid fixmode first before too much processing and avoid using 'String' But the official library version is not...
Have you started the GPS? Something like this.. ``` if (!modem.enableGPS()) { Serial.printf("GPS started\n"); } ``` You need to set the GPS mode too... ``` /* CGNSSMODE: , This command...
Not really a bug, more characteristic of mobile network. Try this: I use it to re sync the ESP32 RTC timer once a day. I found some network operators are...
Depends if there's a working sim inserted at power on. No sim, the modem takes a while to respond. With sim, pretty much straight away. modem.init() or modem.restart() won't succeed...
Couldn't get TinyGSM v0.10.9 SIM7600E GPS part working properly so did this. Not sure if later updates are any better, I haven't tried. Get the GPS raw data and process...
Using SIM7600E and have a problem only with O2 throughout Germany similar to what you are saying. We use EMnify SIM cards and block O2 before using them. We don't...
I will add your workaround and see what happens and report back with the result. The problem is this extends the connection time which results in us not being able...