How to sleep the Moteino M0?
-
Is anyone using the Moteino M0 as a MySensor?
I have got a BME280 sensor working with the RFM69HW attached but I am not getting low current sleep mode numbers.
I tried the ArduinoLowPower library LowPower.deepSleep(300000); command.
The current drops from 30 mA down to 16 mA.
I need to get to less than 100 uA.
Does the MySensors library support the Moteino M0 (SAMD21G18A) ?
How is the radio turned OFF?
I tried the sleep(300000); command without a response.
Edit August 6:
I tried the BatteryPoweredSensor example from the MySensors library with the
following changes for the RFM69HW radio:// Configure RFM69 Radio #define MY_RADIO_RFM69 #define MY_RFM69_NEW_DRIVER #define MY_IS_RFM69HW #define MY_RFM69_FREQUENCY RFM69_915MHZ #define MY_ENCRYPTION_SIMPLE_PASSWD "redacted" #define MY_RF69_IRQ_PIN 9 #define MY_RF69_IRQ_NUM 9 #define MY_RFM69_CS_PIN A2
I get this in the log file:
Payload Description 66074 MCO:SLP:MS=5000,SMS=0,I1=255,M1=255,I2=255,M2=255 Sleep node, duration 5000 ms, SmartSleep=0, Int1=255, Mode1=255, Int2=255, Mode2=255 66084 TSF:TDI:TSL Set transport to sleep 66094 MCO:SLP:WUP=-2 Node woke-up, reason/IRQ=-2 (-2=not possible, -1=timer, >=0 IRQ) 66104 TSF:TRI:TSB Set transport to standby
Looks like it tries to sleep but wakes up 10 mS later with a -2 return (not possible)
The radio goes back to standby 10 mS later.Can someone tell me what changes to the MySensors.h library are necessary to get this working? Meanwhile, I will try a SPI register write the radio to get it to sleep.
-
@gbsmith
Solved by doing a SPI write to the RFM69 Operation Mode register to sleep the radio. Here is a working example:https://github.com/gb53smith/Public/blob/master/MySensors_BME280/MySensors_BME280.ino
This is a workaround since the MySensors.h method did nothing.
sleep(sleepTime);
Aside:
I had to enter the bootloader by double clicking the reset button or reconnecting the USB plug. The COM port number bounced between two port numbers. The port would disconnect just before serial upload. I did not have this problem with the simple Blink example. Does the MySensors library interfere with USB serial port and cause this instability?I found the answer in the LowPowerLabs forum.
There has to be a SerialUSB.begin(); statement in the previously loaded sketch. This will stabilize to USB port connection.
-
@gbsmith Interesting work, thanks for sharing.
Sleep on SAMD mcus is not implemented, that's why the call returns MY_SLEEP_NOT_POSSIBLE
https://github.com/mysensors/MySensors/blob/bfcb125e72fb32f2ea0482499563e73ae5990c2f/hal/architecture/SAMD/MyHwSAMD.cpp#L98
-
@gbsmith said in How to sleep the Moteino M0?:
https://github.com/gb53smith/Public/blob/master/MySensors_BME280/MySensors_BME280.ino
You are using the latest Felix's addition to Moteino family. It is cutting edge and I do not think anyone here has got Moteino M0 yet. Excellent work-around for sleep. What kind of current are you getting while properly sleeping?
-
@alexsh1 current draw details in sketch header. 10-20 uA
I had some problems with recovery after gateway power cycling. See discussion here. This issue has been fixed with a workaround.
Suggested Topics
-
Over the air updates
General Discussion • 23 Mar 2014, 21:38 • ToSa 1 Mar 2015, 11:21 -
hlk-pm01 are to noisy for rfm69?
Hardware • 5 Aug 2023, 21:16 • Tmaster 9 Aug 2023, 16:28 -
Best time of year to buy higher quality small project solar panels?
Hardware • 10 Jun 2021, 19:19 • NeverDie 30 Aug 2024, 14:01 -
Sensors and more
Hardware • 19 Jun 2023, 00:41 • Robert Leverett 19 Jun 2023, 00:41 -
"Remote Irrigation with LoRaWAN: LM27313 Challenges and PCB Design"
Hardware • 24 Jan 2024, 23:06 • wrendral 3 Feb 2024, 07:13 -
Does MySensors require Arduino Timer 2?
Hardware • 6 Jan 2024, 19:39 • OldSurferDude 11 Jan 2024, 04:39