@bmanos said in About battery level:
delay until ne
One thing i saw in your sketch is this line
delay(1000);
Delay will stop all processing, also the mysensors code...
what you preferably should use is:
wait(1000);
In this case mysensors is still able to process
(just a little tip which will help coding, see this link for more information)