49 lines
958 B
Arduino
49 lines
958 B
Arduino
|
/*
|
||
|
Grove LED Bar - Toggle Example
|
||
|
This example will show you how to use toggleLed() function of this library.
|
||
|
The function lets you set a single led to the opposite of it's current value.
|
||
|
|
||
|
Ported for MSP-EXP430F5529, TM4c123 (Tiva C) LaunchPad By Cameron P. LaFollette
|
||
|
*/
|
||
|
|
||
|
#include <Grove_LED_Bar.h>
|
||
|
|
||
|
// Arduino Clock pin, Data pin, Orientation
|
||
|
// Grove_LED_Bar bar(9, 8, 0); // Clock pin, Data pin, Orientation
|
||
|
|
||
|
// LaunchPad Clock pin, Data pin, Orientation
|
||
|
Grove_LED_Bar bar(35, 36, 0); // Clock pin, Data pin, Orientation
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
// nothing to initialize
|
||
|
bar.begin();
|
||
|
}
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
// Start with all LEDs illuminated
|
||
|
bar.setLevel(10);
|
||
|
delay(1000);
|
||
|
|
||
|
// Turn off LED 3
|
||
|
bar.toggleLed(3);
|
||
|
delay(1000);
|
||
|
|
||
|
// Turn on LED 3
|
||
|
bar.toggleLed(3);
|
||
|
delay(1000);
|
||
|
|
||
|
// Switch off all LEDs
|
||
|
bar.setLevel(0);
|
||
|
delay(1000);
|
||
|
|
||
|
// Turn on LED 7
|
||
|
bar.toggleLed(7);
|
||
|
delay(1000);
|
||
|
|
||
|
// Turn off LED 7
|
||
|
bar.toggleLed(7);
|
||
|
delay(1000);
|
||
|
}
|