Subversion Repositories Arduino.arduino

Rev

Blame | Last modification | View Log | Download

#include <Test.h>

// Doing Something
// by John Doe <http://www.yourwebsite.com>

// Demostrates how to do something with the Test library

// Created 1 April 2006

Test myTest = Test(2);

void setup()
{
}

void loop()
{
  myTest.doSomething();
  delay(500);
}