#include <Automaton.h>
#include "Atm_blink.h"

Atm_blink led;

void setup() {
  led.begin( 4, 200 );        // Setup a blink machine on pin 4
  led.trigger( led.EVT_ON );  // Turn it on
}

void loop() {
  automaton.run();
}