esphome / issues

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

SSD1306 OLED Display only showing complete white #4593

Closed Sn00kiT closed 1 year ago

Sn00kiT commented 1 year ago

The problem

20230622_123729 20230622_123720 OLED Display only showing complete white after update to 2023.06

Which version of ESPHome has the issue?

2023.6.0

What type of installation are you using?

Home Assistant Add-on

Which version of Home Assistant has the issue?

2023.6.2

What platform are you using?

ESP32

Board

Devkit

Component causing the issue

SSD1306 128x64 and also 128x32

Example YAML snippet

font:
  - file: 'arial.ttf'
    id: font1
    size: 20  

display:
  - platform: ssd1306_i2c
    model: "SSD1306 128x64"
    address: 0x3C
    lambda: |-
      it.printf(0, 0, id(font1),  "%.1f   °C   Int", id(Temperature).state);
      it.printf(0, 21, id(font1),  "%.1f    %%   Int", id(Humidity).state);
      it.printf(0, 42, id(font1),  "%.1f   °C   Ext", id(TemperatureExternal).state);

Anything in the logs that might be useful for us?

Also happening on a ESP8266

Additional information

No response

randybb commented 1 year ago

Duplicate of #4587