Created
October 21, 2021 23:54
-
-
Save Wolfhound905/5a42b4d5be13db8bb21b43509d483ad7 to your computer and use it in GitHub Desktop.
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
from PIL import Image | |
import ST7735 | |
disp = ST7735.ST7735( | |
port=0, | |
cs=ST7735.BG_SPI_CS_FRONT, | |
dc=9, | |
rotation=-90 | |
) | |
disp.begin() | |
img = Image.open("./asat.png") | |
disp.display(img) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment