Arduino Library that blinks an LED. A personal exercise in creating libraries for Arduino. Following the guide at http://arduino.cc/en/Hacking/LibraryTutorial.
- Start with a working *.ino sketch
- Create a *.h file (C++ header) with definitions of everything inside the library
- Create a *.cpp file containing the code to run
- Create a keywords.txt file to enable color highlighting
- Create an example.ino file which demonstrates the library
Morse > examples > SOS
Morse contains the .cpp .h and .txt files. SOS contains the .ino file that demonstrates the functionality of the library. SOS will be accessible from File > Sketchbook > Examples in Arduino.