Merge pull request #1213 from makermelissa/master

Fixed rotation for real eInk bonnet
This commit is contained in:
Melissa LeBlanc-Williams 2020-08-18 08:57:04 -07:00 committed by GitHub
commit 0d06e0555d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ display = Adafruit_SSD1675(
122, 250, spi, cs_pin=ecs, dc_pin=dc, sramcs_pin=None, rst_pin=rst, busy_pin=busy,
)
display.rotation = 3
display.rotation = 1
# RGB Colors
WHITE = (255, 255, 255)

View file

@ -41,7 +41,7 @@ display = Adafruit_SSD1675(
122, 250, spi, cs_pin=ecs, dc_pin=dc, sramcs_pin=None, rst_pin=rst, busy_pin=busy,
)
display.rotation = 3
display.rotation = 1
gfx = Weather_Graphics(display, am_pm=True, celsius=False)
weather_refresh = None