Skip to content

Commit 94985a1

Browse files
authored
Merge pull request #9 from makermelissa/master
Fix rotation on examples for consistency
2 parents 46fa6ba + b84cb1f commit 94985a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/ssd1675_2.13_monochrome.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
time.sleep(1)
2929

3030
display = adafruit_ssd1675.SSD1675(
31-
display_bus, width=250, height=122, rotation=90, busy_pin=epd_busy
31+
display_bus, width=250, height=122, rotation=270, busy_pin=epd_busy
3232
)
3333

3434
g = displayio.Group()

examples/ssd1675_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
)
2424
time.sleep(1)
2525

26-
display = adafruit_ssd1675.SSD1675(display_bus, width=250, height=122, rotation=90)
26+
display = adafruit_ssd1675.SSD1675(display_bus, width=250, height=122, rotation=270)
2727

2828
g = displayio.Group()
2929

0 commit comments

Comments
 (0)