Home › Forums › Mayfly Data Logger › uBee R410 setup issues › Reply To: uBee R410 setup issues
Thank you Sara.
Inching closer. Prior to switching to the modemLast branch I tried something similar to what @acgold suggested. I added the following lines:
if (modemVccPin >= 0)
{
pinMode(modemSleepRqPin, OUTPUT);
digitalWrite(modemSleepRqPin, HIGH);
}
to my file, just after greenredflash();
. This allowed the modem to wake up successfully and connect to the NIST timeserver on initial boot, which is certainly the farthest I’ve gotten with the R410. It does not successfully upload data after taking a reading, however, even though it goes through a lot of AT commands with “OK” responses, until it gets to:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
AT+USOWR=0,167 AT+USOWR=0,167 +CME ERROR: Operation not allowed AT+USOWR=0,2 AT+USOWR=0,2 +CME ERROR: Operation not allowed AT+USORD=0,0 AT+USORD=0,0 +CME ERROR: Operation not allowed AT+USOCTL=0,10 AT+USOCTL=0,10 +CME ERROR: Operation not allowed AT+USORD=0,0 AT+USORD=0,0 +CME ERROR: Operation not allowed AT+USOCTL=0,10 AT+USOCTL=0,10 +CME ERROR: Operation not allowed |
I’ll try modemLast and see if I can get anywhere.