Hi,
I want to output a 46Hz clock signal with an 328P. The low power lib with minimum of 15ms sleeping time creates only 26 Hz
How can I speed up the wake up?
// **** INCLUDES *****
#include "LowPower.h"
bool state=false;
void setup()
{
pinMode(2, OUTPUT);
}
void loop()
{
LowPower.powerDown(SLEEP_15MS, ADC_OFF, BOD_OFF);
digitalWrite(2, state);
state = !state;
}