Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/rgb_display_minipitfttest.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@

# Main loop:
while True:
if not buttonA.value and not buttonB.value:
if buttonA.value and buttonB.value:
backlight.value = False # turn off backlight
else:
backlight.value = True # turn on backlight
if buttonB.value and not buttonA.value: # just button A pressed
display.fill(color565(255, 0, 0)) # red
if buttonA.value and not buttonB.value: # just button B pressed
display.fill(color565(0, 0, 255)) # blue
if buttonA.value and buttonB.value: # none pressed
if not buttonA.value and not buttonB.value: # none pressed
display.fill(color565(0, 255, 0)) # green