Disable blue LED

night
LEdoian 4 years ago
parent 9ba5cff642
commit 5a44096759

@ -75,7 +75,10 @@ int main (void) {
setup();
// Array of what leds should be on
uint16_t states[4] = {0, GPIO9, GPIO8, GPIO9 | GPIO8};
// Green LED is C8
// Blue LED is C9
// NC is C10, which is what I want to see at night (since the blue one is too bright
uint16_t states[4] = {0, GPIO10, GPIO8, GPIO10 | GPIO8};
char state = 0;
int i;

Loading…
Cancel
Save