I just got the newer (newest) rev of the T5 E-Paper S3… which is the T5 E-Paper S3 Pro.
Lora SX1262
Touch GT911 (0x5D)
Driver IC ED047TC1 (4.7 inches, 960x540 , 16 gray)
Battery Capacity 1500mAh
Battery Chip BQ25896 (0x6B), BQ27220 (0x55)
RTC PCF85063 (0x51)
I have the RTC, touch, home, and a few small things working, but not the display. I have been trying all the random display components for older models out there, but nothing works.
A component for the touch of these doesn’t work, isn’t documented, and, from what I can tell, has not been used on GitHub. I wish whoever is accepting PR’s for this project would demand documentation…
Anyhow…
Regular boilerplate and this is working…so I thought I would chuck out a thread.
If I have the energy, I might start hacking at the older components to see if I can get one updated with the newer library.
I would like thoughts and comments on what these two battery controllers are doing. I am digging through the code now and am unsure why I care about them (because I am guessing they help me go into low power, which is the idea here, making a wireless home controller with wireless charging!)
i2c:
sda: GPIO06
scl: GPIO05
scan: true
time:
- platform: pcf85063
update_interval: never
address: 0x51
- platform: homeassistant
on_time_sync:
then:
pcf85063.write_time:
touchscreen:
- platform: gt911
id: lilygo_touchscreen
interrupt_pin: GPIO15
address: 0x5D
#setup_priority: -100
on_touch:
- lambda: |-
ESP_LOGI("cal", "x=%d, y=%d, x_raw=%d, y_raw=%0d",
touch.x,
touch.y,
touch.x_raw,
touch.y_raw
);