I'm setting up a sensor node with lora. I've got this working with the lmic-arduino library. What I'm trying to achieve however is the ability to only trigger transmission when a sensor value qualifies. I'm not sure how to achieve this since the library has its own method of looping.
The loop method right now is simply
void loop() {
os_runloop_once();
}
Does anyone know if there's a way to do get to a standard loop with this library? Or only transmit when condition met in a 1 second loop?