From 7aa4315ee79c09600d099664aeae8cc5fd17c20a Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Tue, 12 May 2020 02:05:18 +0200 Subject: [PATCH] I guessed the pins wrong... --- main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 12958df..f2d47aa 100644 --- a/main.c +++ b/main.c @@ -75,10 +75,10 @@ int main (void) { setup(); // Array of what leds should be on - // Green LED is C8 - // Blue LED is C9 + // Green LED is C9 + // Blue LED is C8 // 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}; + uint16_t states[4] = {0, GPIO9, GPIO10, GPIO9 | GPIO10}; char state = 0; int i;