#ifndef LED13_H #define LED13_H #include //It is very important to remember this! note that if you are using Arduino 1.0 IDE, change "WProgram.h" to "Arduino.h" class LED13 { public: LED13(); ~LED13(); void on(); void off(); void blink(int time); }; #endif