-
Notifications
You must be signed in to change notification settings - Fork 23
Add support for 0.49'' 64 x 32 #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
57d3299
Add support for 0.49" inch 64x32 I2C
dglaude 8ea81ff
Create displayio_ssd1306_64x32_simpletest.py
dglaude 43ccd1d
Black fixing those files
dglaude 642d1bd
Making PyLint happy
dglaude 0eccec4
Update adafruit_displayio_ssd1306.py
dglaude File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# SPDX-FileCopyrightText: 2022 David Glaude (based on 2021 ladyada for Adafruit Industries) | ||
# SPDX-License-Identifier: MIT | ||
|
||
""" | ||
This test will initialize the display using displayio and draw a solid white | ||
background, a smaller black rectangle, and some white text. | ||
Customized version of displayio_ssd1306_simpletest.py for 64x32 | ||
""" | ||
|
||
import board | ||
import displayio | ||
import terminalio | ||
from adafruit_display_text import label | ||
import adafruit_displayio_ssd1306 | ||
|
||
displayio.release_displays() | ||
|
||
i2c = board.I2C() # uses board.SCL and board.SDA | ||
# i2c = board.STEMMA_I2C() # For using the built-in STEMMA QT connector on a microcontroller | ||
|
||
display_bus = displayio.I2CDisplay(i2c, device_address=0x3C) | ||
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=64, height=32) | ||
|
||
# Make the display context | ||
splash = displayio.Group() | ||
display.show(splash) | ||
|
||
color_bitmap = displayio.Bitmap(64, 32, 1) | ||
color_palette = displayio.Palette(1) | ||
color_palette[0] = 0xFFFFFF # White | ||
|
||
bg_sprite = displayio.TileGrid(color_bitmap, pixel_shader=color_palette, x=0, y=0) | ||
splash.append(bg_sprite) | ||
|
||
## Draw a smaller inner rectangle | ||
inner_bitmap = displayio.Bitmap(62, 30, 1) | ||
inner_palette = displayio.Palette(1) | ||
inner_palette[0] = 0x000000 # Black | ||
|
||
inner_sprite = displayio.TileGrid(inner_bitmap, pixel_shader=inner_palette, x=1, y=1) | ||
splash.append(inner_sprite) | ||
|
||
TEXT1 = "Hello" | ||
text_area = label.Label(terminalio.FONT, text=TEXT1, color=0xFFFFFF, x=2, y=6) | ||
splash.append(text_area) | ||
|
||
TEXT2 = "World" | ||
text_area = label.Label(terminalio.FONT, text=TEXT2, color=0xFFFFFF, x=32, y=15) | ||
splash.append(text_area) | ||
|
||
TEXT3 = "9876543210" | ||
text_area = label.Label(terminalio.FONT, text=TEXT3, color=0xFFFFFF, x=2, y=24) | ||
splash.append(text_area) | ||
|
||
while True: | ||
pass |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.