mirror of
https://github.com/taigrr/arduinolibs
synced 2025-01-18 04:33:12 -08:00
17 lines
225 B
C++
17 lines
225 B
C++
/*
|
|
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();
|
|
}
|
|
|