esphome / issues

Issue Tracker for ESPHome
https://esphome.io/
290 stars 34 forks source link

rpipicow display/ili9xxx 480*320 displays breaks api (HA cannot connect) #4405

Closed nathanp512 closed 7 months ago

nathanp512 commented 1 year ago

The problem

Home Assistant cannot add esphome RP2040 device when ili9xxx display with 480*320 models ili9481, ili9488 and st7796 enabled.

Which version of ESPHome has the issue?

2023.3.2

What type of installation are you using?

Docker

Which version of Home Assistant has the issue?

2023.4.2

What platform are you using?

RP2040

Board

Raspberry Pi Pico W

Component causing the issue

display/ili9xxx

Example YAML snippet

esphome:
  name: rpidisplaytest

# Enable logging
logger:
  level: VERY_VERBOSE

# Enable Home Assistant API
api:
#  encryption:
#    key: "YcrSvHb/s+OtivspBfJ52v/N0kCytHKRLqlOFExMG8s="

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
  fast_connect: true

rp2040:
  board: rpipicow
  framework:
    # Required until https://github.com/platformio/platform-raspberrypi/pull/36 is merged
    platform_version: https://github.com/maxgerhardt/platform-raspberrypi.git

spi:
  clk_pin: 10
  mosi_pin: 11
  miso_pin: 12

display:
 - platform: ili9xxx
   model: st7796
   cs_pin: 9
   dc_pin: 8
   reset_pin: 15
   rotation: 270°
   lambda: |-
     it.line(240, 160, 480, 0, COLOR_WHITE);

Anything in the logs that might be useful for us?

[VV][scheduler:224]: Running interval 'update' with interval=1000 last_execution=4294966519 (now=8413)
[V][ili9xxx:171]: Start display(xlow:0, ylow:0, xhigh:319, yhigh:479, width:320, heigth:480, start_pos:0)
[V][component:204]: Component ili9xxx.display took a long time for an operation (15.29 s).
[V][component:205]: Components should block for at most 20-30ms.
[I][wifi:518]: WiFi Connected!
[C][wifi:362]:   Local MAC: 28:CD:C1:06:0D:1B
[C][wifi:363]:   SSID: 'xxxxxxxx'[redacted]
[C][wifi:364]:   IP Address: xxx.xxx.xxx.86
[C][wifi:365]:   BSSID: xx:xx:xx:xx:xx:xx[redacted]
[C][wifi:367]:   Hostname: 'rpidisplaytest'
[C][wifi:369]:   Signal strength: -47 dB ▂▄▆█
[C][wifi:373]:   Channel: 11
[C][wifi:374]:   Subnet: 255.255.255.0
[C][wifi:375]:   Gateway: xxx.xxx.xxx.1
[C][wifi:376]:   DNS1: xxx.xxx.xxx.59
[C][wifi:377]:   DNS2: xxx.xxx.xxx.42
[C][api:025]: Setting up Home Assistant API server...
[I][app:062]: setup() finished successfully!
[VV][scheduler:224]: Running interval 'update' with interval=1000 last_execution=8223 (now=23712)
[V][ili9xxx:171]: Start display(xlow:0, ylow:0, xhigh:319, yhigh:479, width:320, heigth:480, start_pos:0)
[V][component:204]: Component ili9xxx.display took a long time for an operation (15.29 s).
[V][component:205]: Components should block for at most 20-30ms.
[D][api:102]: Accepted xxx.xxx.xxx.59
[VV][api.service:450]: on_hello_request: HelloRequest {
  client_info: 'aioesphomeapi'
  api_version_major: 1
  api_version_minor: 7
}
[V][api.connection:901]: Hello from client: 'aioesphomeapi (xxx.xxx.xxx.59)' | API Version 1.7
[VV][api.service:013]: send_hello_response: HelloResponse {
  api_version_major: 1
  api_version_minor: 7
  server_info: 'rpidisplaytest (esphome v2023.3.2)'
  name: 'rpidisplaytest'
}
[I][app:102]: ESPHome version 2023.3.2 compiled on Apr 12 2023, 11:26:26
[C][wifi:504]: WiFi:
[C][wifi:362]:   Local MAC: 28:CD:C1:06:0D:1B
[C][wifi:363]:   SSID: 'xxxxxxx'[redacted]
[C][wifi:364]:   IP Address: xxx.xxx.xxx.86
[C][wifi:365]:   BSSID: xx:xx:xx:xx:xx:xx[redacted]
[C][wifi:367]:   Hostname: 'rpidisplaytest'
[C][wifi:369]:   Signal strength: -46 dB ▂▄▆█
[C][wifi:373]:   Channel: 11
[C][wifi:374]:   Subnet: 255.255.255.0
[C][wifi:375]:   Gateway: xxx.xxx.xxx.1
[C][wifi:376]:   DNS1: xxx.xxx.xxx.59
[C][wifi:377]:   DNS2: xxx.xxx.xxx.42
[VV][scheduler:224]: Running interval 'update' with interval=1000 last_execution=23223 (now=39023)
[V][ili9xxx:171]: Start display(xlow:0, ylow:0, xhigh:319, yhigh:479, width:320, heigth:480, start_pos:0)
[V][component:204]: Component ili9xxx.display took a long time for an operation (15.29 s).
[V][component:205]: Components should block for at most 20-30ms.
[VV][api.service:504]: on_device_info_request: DeviceInfoRequest {}
[VV][api.service:049]: send_device_info_response: DeviceInfoResponse {
  uses_password: NO
  name: 'rpidisplaytest'
  mac_address: '28:CD:C1:06:0D:1B'
  esphome_version: '2023.3.2'
  compilation_time: 'Apr 12 2023, 11:26:26'
  model: 'rpipicow'
  has_deep_sleep: NO
  project_name: ''
  project_version: ''
  webserver_port: 0
  bluetooth_proxy_version: 0
  manufacturer: 'Raspberry Pi'
  friendly_name: ''
}
[C][logger:293]: Logger:
[C][logger:294]:   Level: VERY_VERBOSE
[C][logger:295]:   Log Baud Rate: 115200
[C][logger:296]:   Hardware UART: USB_CDC
[VV][scheduler:224]: Running interval 'update' with interval=1000 last_execution=38223 (now=54326)
[V][ili9xxx:171]: Start display(xlow:0, ylow:0, xhigh:319, yhigh:479, width:320, heigth:480, start_pos:0)
[V][component:204]: Component ili9xxx.display took a long time for an operation (15.29 s).
[V][component:205]: Components should block for at most 20-30ms.
[VV][api.socket:809]: aioesphomeapi (xxx.xxx.xxx.59): Socket read failed with errno 104
[W][api.connection:081]: aioesphomeapi (xxx.xxx.xxx.59): Connection reset
[C][spi:101]: SPI bus:
[C][spi:102]:   CLK Pin: GPIO10
[C][spi:103]:   MISO Pin: GPIO12
[C][spi:104]:   MOSI Pin: GPIO11
[C][spi:106]:   Using HW SPI: NO
[VV][scheduler:224]: Running interval 'update' with interval=1000 last_execution=54223 (now=69627)
[V][ili9xxx:171]: Start display(xlow:0, ylow:0, xhigh:319, yhigh:479, width:320, heigth:480, start_pos:0)

Additional information

When I remove/disable the display section (last 9 lines) in YAML HA connects without any issues and it works as expected (except that I cannot display any data).

nielsnl68 commented 1 year ago

Sorry to say, i was not able to test my changes with a Pi Pico. Recently i have ordered one, to see what happens. I will look into it asap.

nathanp512 commented 1 year ago

I would be happy if I can help.

Offtopic: In case someone has the Waveshare Pico-ResTouch-LCD-3.5 I got this 'ili9488' screen working with some modifications of ST7796 (but takes 15 sec for screen build and no api connection) with this piece of code:

ili9xxx_init.h:

static const uint8_t PROGMEM INITCMD_WS35PICO[] = { // This Waveshare Pico-ResTouch-LCD-3.5 initilization routine was copied from ST7796 ILI9XXX_SWRESET, 0x80, // Soft reset, then delay 150 ms ILI9XXX_MADCTL, 1, 0x48, //Memory Access [00] ILI9XXX_PIXFMT, 1, 0x55, //565 --> is18bitdisplay = true; //Must be used in combination with ILI9XXX_PIXFMT, 1, 0x66 in init ILI9XXX_IFMODE, 1, 0x80, //Interface [00] ILI9XXX_DFUNCTR, 2, 0x02, 0x02, // Nomal scan
ILI9XXX_ETMOD, 1, 0xC6, //Entry Mode [06]

ILI9XXX_SLPOUT, 0x80, // Exit Sleep, then delay 150 ms ILI9XXX_DISPON, 0x80, // Main screen turn on, delay 150 ms

0x00 };

ili9xxx_display.cpp:

// 35_TFT display Waveshare Pico-ResTouch-LCD-3.5 void ILI9XXXWS35PICO::initialize() { this->initlcd(INITCMDWS35PICO); if (this->width == 0) { this->width = 320; } if (this->height == 0) { this->height_ = 480; } this->invertdisplay(true); // Inverts color }

nielsnl68 commented 1 year ago

top, do you mind when i add it to the ili9xxx component. Although, that said i like to use the driver name of the display. When you can give me that, then that will be prefert.

nathanp512 commented 1 year ago

Sure you can use the code. According Waveshare docs it uses an Ilitek ili9488 driver. But I was not able to use it as an ili9488 with the 'GFX Library for Arduino' and the TFT_eSPI library needs some file replacements (Waveshare Pico-ResTouch-LCD-3.5 wiki ). The ST7796 model of the ili9xxx component worked best for my display (although colors were inverted and screen content was mirrored). So I think there are different implementations of the ili9488 driver.

nathanp512 commented 1 year ago

When I swap the Pico W for an ESP32 (LILYGO TTGO T-Koala) the API works as expected and the display works fine and fast. Pico W with ssd1306_i2c display also works fine (including API).

I think it might be a hardware issue (Pico W only has 264 kB of SRAM) or component (ili9xxx/api) on rpipicow related.

@nielsnl68 I changed my init for the WaveShare Pico-ResTouch-LCD-3.5 a bit:

github-actions[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

nielsnl68 commented 1 year ago

@nathanp512 could you make a PR for above changes?

nathanp512 commented 11 months ago

Hi @nielsnl68 I am not sure what driver name to use. According to WaveShare docs it is an ILI9488 but the ST7796S code suits better. Anyway, neither the ili9488 or st7796 code works for this display without modifications. I studied some schematics on http://www.lcdwiki.com/ but my WaveShare Pico-ResTouch-LCD-3.5 differs from other displays (it seems to convert SPI to parallel with some 74HC4040 and 74HC4094 IC's).

What driver name do you suggest for this WaveShare Pico-ResTouch-LCD-3.5 display?

nathanp512 commented 7 months ago

Tested again

nathanp512 commented 7 months ago

This issue (HA cannot connect API) seems fixed. Tested successfully with ESPHome 2023.11.6.