holomorph
holomorph
Thanks, GSM and GPRS status gets checked in `setup()` which seems fine, but using the first code I inserted the following into `loop()` before `if (now - then >= period)...
Hum, ok. I guess the way to check these is `gsm.isAccessAlive()` and `gprs.status()`? I'm finding that the online documentation and even the header documentation are not what I'd expect, and...
Here, if I include the check ``` if (!gsm.isAccessAlive()) Serial.println(F("gsm access is down!")); ``` before doing anything else in `loop ()` as you said, the sketch goes for a few...
Example sketch: ``` c++ #include #include #include #include #define PIN "123456" #define GPRS_APN "foobar" #define GPRS_LOGIN "user" #define GPRS_PASSWORD "secret" #define REQ_FMT \ "POST %s HTTP/1.1\r\n" \ "Host: %s:%d\r\n" \...
If it's not an error on my part, I'd guess it's because either transmission or the RPC has that oddity built in. Would have to investigate.
Thanks, I'll take a whack at it.
Not sure why I set `:coding 'binary` and `:filter-multibyte`, it looks like the RPC spec prescribes UTF-8 coding all the way back to transmission versions 1.x. Changing to UTF-8 coding...
Fixed in ae36637fe