Currently a draft:

Low power design considerations

I started this writeup after I was doing some reading about low-power arduino setups.

Footnotes:

Links:

Example main

Using the low power library, here is what the loop function looks like:

    sleep_counter++;
    LowPower.idle(SLEEP_4S, ADC_OFF, TIMER2_OFF, TIMER1_OFF, TIMER0_OFF,
        SPI_OFF, USART0_OFF, TWI_OFF);
    if(sleep_counter % 15 == 0){
        board.sample(&board);
    }

Authors

Contributing authors:

kluong

Created by kluong on 2020/04/28 03:18.