From 4a29e0c60025cede6df049d8602905575e7524c2 Mon Sep 17 00:00:00 2001 From: Drew Bowering Date: Wed, 3 Apr 2024 00:56:44 -0600 Subject: [PATCH] swap inside brightness and party buttons - The outside button is next to the outside light, but not the inside button. This moves it beside the light and puts the party button in the middle (on the prototype board) --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 2b4eb98..c2dd758 100644 --- a/main.go +++ b/main.go @@ -91,8 +91,8 @@ func main() { insidebrightness := make(chan uint32, 2) outsidebutton := machine.GP22 - insidebutton := machine.GP21 - partybutton := machine.GP20 + insidebutton := machine.GP20 + partybutton := machine.GP21 outsidebutton.Configure(machine.PinConfig{Mode: machine.PinInputPullup}) insidebutton.Configure(machine.PinConfig{Mode: machine.PinInputPullup})