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 abffc02 commit a9bc4c3
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 @@ -36,8 +36,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 @@ -28,8 +28,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 @@ -49,8 +49,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 a9bc4c3

Please sign in to comment.