Skip to content

Commit

Permalink
fix another conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Revelstoke committed Apr 4, 2024
1 parent 52aedcc commit 6ff66e6
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions button.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,13 @@ def __init__(self):

#Setup pins and board
gpio.setmode(gpio.BCM)
<<<<<<< HEAD
#Pin 22 is Team 2
gpio.setup(22, gpio.IN, pull_up_down=gpio.PUD_DOWN)
#Pin 4 is Team 3
gpio.setup(4, gpio.IN, pull_up_down=gpio.PUD_DOWN)
#Pin 17 is Team 1
gpio.setup(17, gpio.IN, pull_up_down=gpio.PUD_DOWN)
#GPIO Needs to be setup between 3.3v and pins above
=======
gpio.setup(22, gpio.IN, pull_up_down=gpio.PUD_DOWN)
gpio.setup(4, gpio.IN, pull_up_down=gpio.PUD_DOWN)
gpio.setup(17, gpio.IN, pull_up_down=gpio.PUD_DOWN)
>>>>>>> master

#Put pins in variables
self.center_button = 22
Expand Down

0 comments on commit 6ff66e6

Please sign in to comment.