You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been using this library on the Lilygo T-Deck and it works great. I also created a tft_config.py which I have added below in case it could be added to the repo:
""" LilyGo T-DECK 320x240 ST7789 display """frommachineimportPin, freqimports3lcdBACKLIGHT=Pin(42, Pin.OUT)
TOUCH=Pin(16, Pin.OUT)
KB_PWR=Pin(10, Pin.OUT) # enabling the KB_PWR pin also enables display - "peripheral" powerKB_PWR.off()
KB_PWR.on()
TFA=0BFA=0WIDE=1TALL=0freq(240_000_000)
defconfig(rotation=0, options=0):
"""Configure the display and return an ESPLCD instance."""BACKLIGHT.value(1)
bus=s3lcd.SPI_BUS(
1,
mosi=41,
sck=40,
dc=11,
cs=12,
pclk=80_000_000,
swap_color_bytes=False, # true - blue, false - yellow
)
returns3lcd.ESPLCD(
bus,
240,
320,
inversion_mode=True,
color_space=s3lcd.BGR,
rotation=rotation,
options=options,
)
defdeinit(tft, display_off=False):
"""Take an ESPLCD instance and Deinitialize the display."""tft.deinit()
ifdisplay_off:
BACKLIGHT.value(0)
Unfortunately I have hit a problem while trying to operate the LoRa module at the same time - it causes the TFT display to stop working, and everything I have tried so far has not been able to activate it again. To control the LoRa module, I have used this library: https://github.com/ehong-tl/micropySX126X
To reproduce this issue:
lcd=tft_config.config(1, 0)
lcd.init()
# do anything with the LCD heresx1262=SX1262(spi_bus=2, clk=40, mosi=41, miso=38, cs=9, irq=45, rst=17, gpio=13)
status=self.sx1262.begin(freq=434, bw=125.0, sf=7, syncWord=0x12, power=14,
currentLimit=60, preambleLength=8, implicit=False, implicitLen=0xFF,
crcOn=True, txIq=False, rxIq=False, tcxoVoltage=1.7, useRegulatorLDO=False,
blocking=True)
# at this point the display ceases to show any updates, although it can be deinit and init againlcd.fill(s3lcd.WHITE)
lcd.show() # nothing is displayed on the screen
I have tried controlling the CS pins by setting the LoRa's CS to low and the TFT to high before trying to display anything on the screen, but this does not help. I have also tried using deinit and init to recreate the SPI object, which produces a visual "refresh" but does not allow the screen to be updated.
Any help on trying to fix this problem would be much appreciated - thanks
The text was updated successfully, but these errors were encountered:
Hello,
I have been using this library on the Lilygo T-Deck and it works great. I also created a tft_config.py which I have added below in case it could be added to the repo:
Unfortunately I have hit a problem while trying to operate the LoRa module at the same time - it causes the TFT display to stop working, and everything I have tried so far has not been able to activate it again. To control the LoRa module, I have used this library: https://github.com/ehong-tl/micropySX126X
To reproduce this issue:
I have tried controlling the CS pins by setting the LoRa's CS to low and the TFT to high before trying to display anything on the screen, but this does not help. I have also tried using deinit and init to recreate the SPI object, which produces a visual "refresh" but does not allow the screen to be updated.
Any help on trying to fix this problem would be much appreciated - thanks
The text was updated successfully, but these errors were encountered: