Skip to content

Commit

Permalink
revert pin changes
Browse files Browse the repository at this point in the history
  • Loading branch information
helgibbons committed Apr 26, 2024
1 parent a320473 commit 18312aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/hat-mini/analog.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
disp = st7735.ST7735(
port=0,
cs=st7735.BG_SPI_CS_FRONT,
dc="GPIO9",
backlight="GPIO25",
dc=9,
backlight=25,
rotation=270,
spi_speed_hz=4000000
)
Expand Down
4 changes: 2 additions & 2 deletions examples/hat-mini/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
disp = st7735.ST7735(
port=0,
cs=st7735.BG_SPI_CS_FRONT,
dc="GPIO9",
backlight="GPIO25",
dc=9,
backlight=25,
rotation=270,
spi_speed_hz=4000000
)
Expand Down
4 changes: 2 additions & 2 deletions examples/hat-mini/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def draw_states(channels):
disp = st7735.ST7735(
port=0,
cs=st7735.BG_SPI_CS_FRONT,
dc="GPIO9",
backlight="GPIO25",
dc=9,
backlight=25,
rotation=270,
spi_speed_hz=4000000
)
Expand Down

0 comments on commit 18312aa

Please sign in to comment.