How to put RFM95 to sleep

Hallo,

i hope some one can help me with a little problem.
I’am trying to minimize my nodes power consumption. At the moment i use the Low-Power Rocketscream library to put the controller to sleep with

LowPower.powerDown(SLEEP_8S, ADC_OFF, BOD_OFF);

This is working fine for me.

Now i want to put the RFM95 to sleep. I tried with LMIC.shutdown(); but then my node stops sending for ever. So has anyone an easy example for me?

Regards,
Bjoern

1 Like

me to :sunglasses:

searching found this

https://www.mysensors.org/apidocs/group__RFM95grp.html#gga58a50f630651a28661637aa416c58d90a8ffa5b5410e8dd723486d70c8fad986d
transportPowerDown()

maybe its possible to extend the lowpower lib with a RFM95 sleep part ?

LMIC already does this. I wrote that LowPower library, :slight_smile: Might be a shameless plug but here’s how I do it for a SAM21 based board:

https://www.thethingsnetwork.org/labs/story/using-mini-ultra-pro-samd21-arduino-compatible-with-the-things-network-ttn

5 Likes

cool… tnx !

Good to know, thank you.