diff --git a/main.c b/main.c index 0452b18..12958df 100644 --- a/main.c +++ b/main.c @@ -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;