@scalz Oh ya that makes sense regarding the before() and setup().
Regarding the sketch that doesn't include the radio turn off....I was just referring to the one that had the relevant lines commented out so:
void loop()
{
send(msg.set(20));
//digitalWrite (PER, HIGH); //turn off peripherals
// Sleep for 10 seconds (just for testing)
sleep(10000);
//digitalWrite (PER, LOW); //turn on peripherals
//delay(1000); //tried instituting a delay in case it needed a moment for power to stabilize
//transportInit(); //re-initialize radio
}
instead of:
void loop()
{
send(msg.set(20));
digitalWrite (PER, HIGH); //turn off peripherals
// Sleep for 10 seconds (just for testing)
sleep(10000);
digitalWrite (PER, LOW); //turn on peripherals
//delay(1000); //tried instituting a delay in case it needed a moment for power to stabilize
transportInit(); //re-initialize radio
}