Wake Up interval 15 seconds, transmit interval 300 seconds

Hello friends, I have a project where i need to read a sensor every 15 secconds but transmit data over loraWan every 300 secconds. But if the value of sensor are out of a range I need transmit data inmediatly.

Any idea ?

I have to use LowPower_Handler() or use normal dutycycle but inhibit the loraWan transmission until is necessary?

hi,

In my opinion, you can use Lorawan_interrupt.

After your node join the network for the first time finsed, the node will not take the initiative to send the data to gateway. send data after the node needs your interrupt event to trigger.

1 Like

Work for me, thanks Jason.