1
0
mirror of https://github.com/taigrr/arduinolibs synced 2025-01-18 04:33:12 -08:00

Document the BlinkLED and ChaseLEDs examples

This commit is contained in:
Rhys Weatherley
2012-04-11 17:05:13 +10:00
parent 45c2d09347
commit 4a4ff39952
16 changed files with 1063 additions and 20 deletions

View File

@@ -0,0 +1,16 @@
/*
Blink the status LED using the BlinkLED utility class.
This example is placed into the public domain.
*/
#include <BlinkLED.h>
BlinkLED statusBlink(13, 70, 930);
void setup() {}
void loop() {
statusBlink.loop();
}