micropython-micro-gui/setup_examples/ili9486_feather_s3_encoder.py

34 wiersze
1.4 KiB
Python

# ili9341_FeatherS3.py Customise for your hardware config
# Released under the MIT License (MIT). See LICENSE.
# Copyright (c) 2023 Peter Hinch
# As written, supports:
# ili9486 320x480 displays on ESP32-S3 FeatherS3 board.
from machine import Pin, SPI
import gc
from drivers.ili94xx.ili9486 import ILI9486 as SSD
# Create and export an SSD instance
pdc = Pin(17, Pin.OUT, value=0) # Arbitrary pins borrowed from st7735r_esp32.py
prst = Pin(18, Pin.OUT, value=1)
pcs = Pin(14, Pin.OUT, value=1)
gc.collect() # Precaution before instantiating framebuf
spi = SPI(1, 30_000_000, sck=Pin(36), mosi=Pin(35), miso=Pin(37)) # No need to wire MISO.
gc.collect() # Precaution before instantiating framebuf
ssd = SSD(spi, cs=pcs, dc=pdc, rst=prst)
from gui.core.ugui import Display, Screen # Must perform this import after instantiating SSD (see other examples)
gc.collect() # Precaution before instantiating framebuf
# Create and export a Display instance
# Define control buttons
nxt = Pin(8, Pin.IN, Pin.PULL_UP) # Move to next control
sel = Pin(33, Pin.IN, Pin.PULL_UP) # Operate current control
prev = Pin(9, Pin.IN, Pin.PULL_UP) # Move to previous control
increase = Pin(38, Pin.IN, Pin.PULL_UP) # Increase control's value
decrease = Pin(1, Pin.IN, Pin.PULL_UP) # Decrease control's value
display = Display(ssd, nxt, sel, prev, increase, decrease, 4)
Screen.do_gc = False