Skip to content

Instantly share code, notes, and snippets.

@Wolfhound905
Created October 21, 2021 23:54
Show Gist options
  • Save Wolfhound905/5a42b4d5be13db8bb21b43509d483ad7 to your computer and use it in GitHub Desktop.
Save Wolfhound905/5a42b4d5be13db8bb21b43509d483ad7 to your computer and use it in GitHub Desktop.
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