#include "casovyspinac.h"

timer t;

void setup() {
  // put your setup code here, to run once:
  pinMode(13, OUTPUT);
  pinMode(A0, INPUT_PULLUP);
  pinMode(A1, INPUT_PULLUP);
}

void loop() {
  // put your main code here, to run repeatedly:
  t.start(13, A0, A1);
}