telstra / arduino-mkr-nb-1500-cumulocity

Telstra Arduino MKR NB1500 Cumulocity example sketch
Apache License 2.0
8 stars 2 forks source link

error message: "Timed out" #1

Open JuliusArnoldJanco opened 4 years ago

JuliusArnoldJanco commented 4 years ago

Hello dev/s,

I am attempting to register a MKR 1500 with: testra sim activated/NB-IoT antenna connected. I have an account with cumulocity through my university. am attempting to us the "register_device.ino" script and it connected once and gave me my device Id, I reset the arduino and now it wont connect it just keeps outputting "Timed out" between commands. Have used the arduino NBScanNetworks/Modem_Test/Data_test scripts from the arduino website and they all function correctly, I have the IMEI number/available networks/& able to communicate with arduino.cc.

Any suggestions as to why this script keeps outputting "Timed out" ?

Thank you for your time.

JuliusArnoldJanco commented 4 years ago

attached this section of code in the setup to fix problem:

// enable the POW_ON pin pinMode(SARA_PWR_ON, OUTPUT); digitalWrite(SARA_PWR_ON, HIGH);

// reset the ublox module pinMode(SARA_RESETN, OUTPUT); digitalWrite(SARA_RESETN, HIGH); delay(100); digitalWrite(SARA_RESETN, LOW);