// Easy peasy. Blink an LED without using delay.

#include <blinker.h>

blinker aBlinker;

void setup() { aBlinker.setOnOff(true); }

void loop() { idle(); }