Collaboration diagram for LED Control Macros:
Defines | |
#define | LED_S1_OFF() PORTF &= ~_BV(2); PORTF &= ~_BV(3); |
#define | LED_S1_RED() PORTF &= ~_BV(2); PORTF |= _BV(3); |
#define | LED_S1_GREEN() PORTF |= _BV(2); PORTF &= ~_BV(3); |
#define | LED_S2_OFF() PORTF &= ~_BV(0); PORTF &= ~_BV(1); |
#define | LED_S2_RED() PORTF &= ~_BV(0); PORTF |= _BV(1); |
#define | LED_S2_GREEN() PORTF |= _BV(0); PORTF &= ~_BV(1); |
|
Switch LED S1 off |
|
Switch LED S1 red |
|
Switch LED S1 green |
|
Switch LED S2 off |
|
Switch LED S2 red |
|
Switch LED S2 green |