Issue with SGP30 in IKEA Air Sensor Hack

Hi,
I hacked IKEA Air sensor with this tutorial https://www.youtube.com/watch?v=YmqtMTO5NVc, but I’m using SHT3xD and SGP30. Everything is working properly besides SGP30. I’ve got [W][sgp30:247]: Unknown setup error! error.

I tried:

  • different power supplies,
  • 1 i2c bus, 2 separate i2c buses for both sensors,
  • changing SGP30 sensor to another piece.
    Nothing works.

My current config with 2 i2c buses:

esphome:
  name: czujnik-powietrza-biuro
  friendly_name: Czujnik powietrza Biuro

esp8266:
  board: d1_mini

# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "="

ota:
  password: ""

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

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Czujnik-Powietrza-Biuro"
    password: ""

captive_portal:
    
# Serial Port for the IKEA Sensor
uart:
  - rx_pin: D7
    # tx_pin: D8
    baud_rate: 9600

i2c:
  - id: bus_a
    sda: D1
    scl: D2
    scan: true
  - id: bus_b
    sda: D3
    scl: D4
    scan: true
    frequency: 100kHz

binary_sensor:
  ## Use the on-board LED to show "Fan Running"
  - platform: gpio
    name: Wentylator
    id: fan
    pin:
      number: D5
      inverted: true

  ## Brightness Sensor for HA Automations
  - platform: template
    name: Światło
    id: bright

sensor:
  ## IKEA PMS 2.5um Sensor
  - platform: pm1006
    id: aq_sensor
    pm_2_5:
      name: PM 2.5

  ## The IKEA Light Level Sensor
  - platform: adc
    id: light_sensor
    pin: A0
    update_interval: 5s
    ## Check the value and turn On/Off our Binary Sensor
    on_value:
      - lambda: !lambda |
          if (x > 0.01) {
            id(bright).publish_state(true);
            } else {
              id(bright).publish_state(false);
              }
      # - logger.log:
      #     format: "Light Level %.6f"
      #     args: id(light_sensor).state

  ## Temp / Hum
  - platform: sht3xd
    temperature:
      name: "Temperatura powietrza"
      id: temperature
    humidity:
      name: "Wilgotność powietrza"
      id: humidity
    address: 0x44
    update_interval: 60s
    i2c_id: bus_a

  ## eCO2 / TVOC
  - platform: sgp30
    eco2:
      name: "eCO2"
      accuracy_decimals: 1
    tvoc:
      name: "TVOC"
      accuracy_decimals: 1
    # compensation:
      # temperature_source: temperature
      # humidity_source: humidity
    store_baseline: yes
    address: 0x58
    update_interval: 1s
    i2c_id: bus_b

Logs:

INFO ESPHome 2024.3.2
INFO Reading configuration /config/esphome/czujnik-powietrza-biuro.yaml...
INFO Starting log output from 192.168.0.7 using esphome API
INFO Successfully connected to czujnik-powietrza-biuro @ 192.168.0.7 in 0.005s
INFO Successful handshake with czujnik-powietrza-biuro @ 192.168.0.7 in 2.632s
[15:23:12][I][app:102]: ESPHome version 2024.3.2 compiled on Apr 15 2024, 14:23:31
[15:23:12][C][wifi:580]: WiFi:
[15:23:12][C][wifi:408]:   Local MAC: 
[15:23:12][C][wifi:413]:   SSID: [redacted]
[15:23:12][C][wifi:416]:   IP Address: 
[15:23:12][C][wifi:419]:   BSSID: [redacted]
[15:23:12][C][wifi:421]:   Hostname: 'czujnik-powietrza-biuro'
[15:23:12][C][wifi:423]:   Signal strength: -62 dB ▂▄▆█
[15:23:12][C][wifi:427]:   Channel: 4
[15:23:12][C][wifi:428]:   Subnet: 255.255.255.0
[15:23:12][C][wifi:429]:   Gateway: 192.168.0.1
[15:23:12][C][wifi:430]:   DNS1: 192.168.0.1
[15:23:12][C][wifi:431]:   DNS2: 0.0.0.0
[15:23:12][C][logger:166]: Logger:
[15:23:12][C][logger:167]:   Level: DEBUG
[15:23:12][C][logger:169]:   Log Baud Rate: 115200
[15:23:12][C][logger:170]:   Hardware UART: UART0
[15:23:12][C][i2c.arduino:059]: I2C Bus:
[15:23:12][C][i2c.arduino:060]:   SDA Pin: GPIO5
[15:23:12][C][i2c.arduino:061]:   SCL Pin: GPIO4
[15:23:12][C][i2c.arduino:062]:   Frequency: 50000 Hz
[15:23:12][C][i2c.arduino:065]:   Recovery: bus successfully recovered
[15:23:12][I][i2c.arduino:075]: Results from i2c bus scan:
[15:23:12][I][i2c.arduino:081]: Found i2c device at address 0x44
[15:23:12][C][i2c.arduino:059]: I2C Bus:
[15:23:12][C][i2c.arduino:060]:   SDA Pin: GPIO0
[15:23:12][C][i2c.arduino:061]:   SCL Pin: GPIO2
[15:23:12][C][i2c.arduino:062]:   Frequency: 100000 Hz
[15:23:12][C][i2c.arduino:065]:   Recovery: bus successfully recovered
[15:23:12][I][i2c.arduino:075]: Results from i2c bus scan:
[15:23:12][I][i2c.arduino:081]: Found i2c device at address 0x58
[15:23:12][C][uart.arduino_esp8266:118]: UART Bus:
[15:23:12][C][uart.arduino_esp8266:120]:   RX Pin: GPIO13
[15:23:12][C][uart.arduino_esp8266:122]:   RX Buffer Size: 256
[15:23:12][C][uart.arduino_esp8266:124]:   Baud Rate: 9600 baud
[15:23:12][C][uart.arduino_esp8266:125]:   Data Bits: 8
[15:23:12][C][uart.arduino_esp8266:126]:   Parity: NONE
[15:23:12][C][uart.arduino_esp8266:127]:   Stop bits: 1
[15:23:12][C][uart.arduino_esp8266:131]:   Using software serial
[15:23:12][C][gpio.binary_sensor:015]: GPIO Binary Sensor 'Wentylator'
[15:23:12][C][gpio.binary_sensor:016]:   Pin: GPIO14
[15:23:12][C][template.binary_sensor:028]: Template Binary Sensor 'Światło'
[15:23:12][C][pm1006:017]: PM1006:
[15:23:12][C][pm1006:018]:   PM2.5 'PM 2.5'
[15:23:12][C][pm1006:018]:     Device Class: 'pm25'
[15:23:12][C][pm1006:018]:     State Class: 'measurement'
[15:23:12][C][pm1006:018]:     Unit of Measurement: 'µg/m³'
[15:23:12][C][pm1006:018]:     Accuracy Decimals: 0
[15:23:12][C][pm1006:018]:     Icon: 'mdi:blur'
[15:23:12][C][pm1006:019]:   Update Interval: never
[15:23:12][C][adc:097]: ADC Sensor 'light_sensor'
[15:23:12][C][adc:097]:   Device Class: 'voltage'
[15:23:12][C][adc:097]:   State Class: 'measurement'
[15:23:12][C][adc:097]:   Unit of Measurement: 'V'
[15:23:12][C][adc:097]:   Accuracy Decimals: 2
[15:23:12][C][adc:102]:   Pin: GPIO17
[15:23:12][C][adc:142]:   Update Interval: 5.0s
[15:23:12][C][sht3xd:033]: SHT3xD:
[15:23:12][C][sht3xd:034]:   Address: 0x44
[15:23:12][C][sht3xd:038]:   Update Interval: 60.0s
[15:23:12][C][sht3xd:040]:   Temperature 'Temperatura powietrza'
[15:23:12][C][sht3xd:040]:     Device Class: 'temperature'
[15:23:12][C][sht3xd:040]:     State Class: 'measurement'
[15:23:12][C][sht3xd:040]:     Unit of Measurement: '°C'
[15:23:12][C][sht3xd:040]:     Accuracy Decimals: 1
[15:23:12][C][sht3xd:041]:   Humidity 'Wilgotność powietrza'
[15:23:12][C][sht3xd:041]:     Device Class: 'humidity'
[15:23:12][C][sht3xd:041]:     State Class: 'measurement'
[15:23:12][C][sht3xd:041]:     Unit of Measurement: '%'
[15:23:12][C][sht3xd:041]:     Accuracy Decimals: 1
[15:23:12][C][sgp30:230]: SGP30:
[15:23:12][C][sgp30:231]:   Address: 0x58
[15:23:12][W][sgp30:247]: Unknown setup error!
[15:23:12][C][sgp30:261]:   Update Interval: 1.0s
[15:23:12][C][sgp30:262]:   eCO2 sensor 'eCO2'
[15:23:12][C][sgp30:262]:     Device Class: 'carbon_dioxide'
[15:23:12][C][sgp30:262]:     State Class: 'measurement'
[15:23:12][C][sgp30:262]:     Unit of Measurement: 'ppm'
[15:23:12][C][sgp30:262]:     Accuracy Decimals: 1
[15:23:12][C][sgp30:262]:     Icon: 'mdi:molecule-co2'
[15:23:12][C][sgp30:263]:   TVOC sensor 'TVOC'
[15:23:12][C][sgp30:263]:     Device Class: 'volatile_organic_compounds_parts'
[15:23:12][C][sgp30:263]:     State Class: 'measurement'
[15:23:12][C][sgp30:263]:     Unit of Measurement: 'ppb'
[15:23:12][C][sgp30:263]:     Accuracy Decimals: 1
[15:23:12][C][sgp30:263]:     Icon: 'mdi:radiator'
[15:23:12][C][sgp30:266]: Store baseline: YES
[15:23:12][C][sgp30:272]:   Compensation: No source configured
[15:23:13][C][captive_portal:088]: Captive Portal:
[15:23:13][C][mdns:115]: mDNS:
[15:23:13][C][mdns:116]:   Hostname: czujnik-powietrza-biuro
[15:23:13][C][ota:096]: Over-The-Air Updates:
[15:23:13][C][ota:097]:   Address: czujnik-powietrza-biuro.local:8266
[15:23:13][C][ota:100]:   Using Password.
[15:23:13][C][ota:103]:   OTA version: 2.
[15:23:13][C][api:139]: API Server:
[15:23:13][C][api:140]:   Address: czujnik-powietrza-biuro.local:6053
[15:23:13][C][api:142]:   Using noise encryption: YES
[15:23:14][D][sensor:093]: 'light_sensor': Sending state 0.35254 V with 2 decimals of accuracy
[15:23:18][D][binary_sensor:036]: 'Wentylator': Sending state ON
[15:23:19][D][sensor:093]: 'light_sensor': Sending state 0.13281 V with 2 decimals of accuracy
[15:23:24][D][sensor:093]: 'light_sensor': Sending state 0.32324 V with 2 decimals of accuracy
[15:23:27][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:23:27][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:23:28][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:23:28][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:23:29][D][sensor:093]: 'light_sensor': Sending state 0.27930 V with 2 decimals of accuracy
[15:23:30][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:23:30][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:23:32][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:23:32][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:23:34][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:23:34][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:23:34][D][sensor:093]: 'light_sensor': Sending state 0.23730 V with 2 decimals of accuracy
[15:23:36][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:23:36][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:23:38][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:23:38][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:23:39][D][binary_sensor:036]: 'Wentylator': Sending state OFF
[15:23:39][D][sensor:093]: 'light_sensor': Sending state 0.31934 V with 2 decimals of accuracy
[15:23:44][D][sensor:093]: 'light_sensor': Sending state 0.32129 V with 2 decimals of accuracy
[15:23:46][D][sht3xd:064]: Got temperature=29.10°C humidity=34.32%
[15:23:46][D][sensor:093]: 'Temperatura powietrza': Sending state 29.10162 °C with 1 decimals of accuracy
[15:23:46][D][sensor:093]: 'Wilgotność powietrza': Sending state 34.31601 % with 1 decimals of accuracy
[15:23:48][D][binary_sensor:036]: 'Wentylator': Sending state ON
[15:23:49][D][sensor:093]: 'light_sensor': Sending state 0.26562 V with 2 decimals of accuracy
[15:23:54][D][sensor:093]: 'light_sensor': Sending state 0.26562 V with 2 decimals of accuracy
[15:23:57][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:23:57][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:23:58][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:23:58][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:23:59][D][sensor:093]: 'light_sensor': Sending state 0.26562 V with 2 decimals of accuracy
[15:24:00][D][pm1006:091]: Got PM2.5 Concentration: 14 µg/m³
[15:24:00][D][sensor:093]: 'PM 2.5': Sending state 14.00000 µg/m³ with 0 decimals of accuracy
[15:24:02][D][pm1006:091]: Got PM2.5 Concentration: 14 µg/m³
[15:24:02][D][sensor:093]: 'PM 2.5': Sending state 14.00000 µg/m³ with 0 decimals of accuracy
[15:24:04][D][pm1006:091]: Got PM2.5 Concentration: 14 µg/m³
[15:24:04][D][sensor:093]: 'PM 2.5': Sending state 14.00000 µg/m³ with 0 decimals of accuracy
[15:24:04][D][sensor:093]: 'light_sensor': Sending state 0.26172 V with 2 decimals of accuracy
[15:24:06][D][pm1006:091]: Got PM2.5 Concentration: 14 µg/m³
[15:24:06][D][sensor:093]: 'PM 2.5': Sending state 14.00000 µg/m³ with 0 decimals of accuracy
[15:24:08][D][pm1006:091]: Got PM2.5 Concentration: 14 µg/m³
[15:24:08][D][sensor:093]: 'PM 2.5': Sending state 14.00000 µg/m³ with 0 decimals of accuracy
[15:24:09][D][binary_sensor:036]: 'Wentylator': Sending state OFF
[15:24:09][D][sensor:093]: 'light_sensor': Sending state 0.26074 V with 2 decimals of accuracy
[15:24:14][D][sensor:093]: 'light_sensor': Sending state 0.26172 V with 2 decimals of accuracy
[15:24:18][D][binary_sensor:036]: 'Wentylator': Sending state ON
[15:24:19][D][sensor:093]: 'light_sensor': Sending state 0.25879 V with 2 decimals of accuracy
[15:24:24][D][sensor:093]: 'light_sensor': Sending state 0.25586 V with 2 decimals of accuracy
[15:24:27][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:24:27][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:24:28][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:24:28][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:24:29][D][sensor:093]: 'light_sensor': Sending state 0.25977 V with 2 decimals of accuracy
[15:24:30][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:24:30][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:24:32][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:24:32][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:24:34][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:24:34][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:24:34][D][sensor:093]: 'light_sensor': Sending state 0.25293 V with 2 decimals of accuracy
[15:24:36][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:24:36][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:24:38][D][pm1006:091]: Got PM2.5 Concentration: 13 µg/m³
[15:24:38][D][sensor:093]: 'PM 2.5': Sending state 13.00000 µg/m³ with 0 decimals of accuracy
[15:24:39][D][binary_sensor:036]: 'Wentylator': Sending state OFF
[15:24:39][D][sensor:093]: 'light_sensor': Sending state 0.25195 V with 2 decimals of accuracy
[15:24:44][D][sensor:093]: 'light_sensor': Sending state 0.24902 V with 2 decimals of accuracy
[15:24:46][D][sht3xd:064]: Got temperature=29.07°C humidity=33.35%
[15:24:46][D][sensor:093]: 'Temperatura powietrza': Sending state 29.07225 °C with 1 decimals of accuracy
[15:24:46][D][sensor:093]: 'Wilgotność powietrza': Sending state 33.35469 % with 1 decimals of accuracy
[15:24:48][D][binary_sensor:036]: 'Wentylator': Sending state ON
[15:24:49][D][sensor:093]: 'light_sensor': Sending state 0.24707 V with 2 decimals of accuracy
[15:24:54][D][sensor:093]: 'light_sensor': Sending state 0.24316 V with 2 decimals of accuracy
[15:24:57][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:24:57][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:24:58][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:24:58][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:24:59][D][sensor:093]: 'light_sensor': Sending state 0.25586 V with 2 decimals of accuracy
[15:25:00][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:25:00][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:25:02][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:25:02][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:25:04][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:25:04][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:25:04][D][sensor:093]: 'light_sensor': Sending state 0.24121 V with 2 decimals of accuracy
[15:25:06][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:25:06][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:25:08][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:25:08][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:25:09][D][binary_sensor:036]: 'Wentylator': Sending state OFF
[15:25:09][D][sensor:093]: 'light_sensor': Sending state 0.22266 V with 2 decimals of accuracy
[15:25:14][D][sensor:093]: 'light_sensor': Sending state 0.27344 V with 2 decimals of accuracy
[15:25:18][D][binary_sensor:036]: 'Wentylator': Sending state ON
[15:25:19][D][sensor:093]: 'light_sensor': Sending state 0.20508 V with 2 decimals of accuracy
[15:25:24][D][sensor:093]: 'light_sensor': Sending state 0.17090 V with 2 decimals of accuracy
[15:25:27][D][pm1006:091]: Got PM2.5 Concentration: 45 µg/m³
[15:25:27][D][sensor:093]: 'PM 2.5': Sending state 45.00000 µg/m³ with 0 decimals of accuracy
[15:25:29][D][sensor:093]: 'light_sensor': Sending state 0.21094 V with 2 decimals of accuracy
[15:25:30][D][pm1006:091]: Got PM2.5 Concentration: 41 µg/m³
[15:25:30][D][sensor:093]: 'PM 2.5': Sending state 41.00000 µg/m³ with 0 decimals of accuracy
[15:25:32][D][pm1006:091]: Got PM2.5 Concentration: 39 µg/m³
[15:25:32][D][sensor:093]: 'PM 2.5': Sending state 39.00000 µg/m³ with 0 decimals of accuracy
[15:25:34][D][pm1006:091]: Got PM2.5 Concentration: 37 µg/m³
[15:25:34][D][sensor:093]: 'PM 2.5': Sending state 37.00000 µg/m³ with 0 decimals of accuracy
[15:25:34][D][sensor:093]: 'light_sensor': Sending state 0.28125 V with 2 decimals of accuracy
[15:25:36][D][pm1006:091]: Got PM2.5 Concentration: 36 µg/m³
[15:25:36][D][sensor:093]: 'PM 2.5': Sending state 36.00000 µg/m³ with 0 decimals of accuracy
[15:25:38][D][pm1006:091]: Got PM2.5 Concentration: 34 µg/m³
[15:25:38][D][sensor:093]: 'PM 2.5': Sending state 34.00000 µg/m³ with 0 decimals of accuracy
[15:25:39][D][binary_sensor:036]: 'Wentylator': Sending state OFF
[15:25:39][D][sensor:093]: 'light_sensor': Sending state 0.28906 V with 2 decimals of accuracy
[15:25:44][D][sensor:093]: 'light_sensor': Sending state 0.34766 V with 2 decimals of accuracy
[15:25:46][D][sht3xd:064]: Got temperature=29.05°C humidity=34.26%
[15:25:46][D][sensor:093]: 'Temperatura powietrza': Sending state 29.04555 °C with 1 decimals of accuracy
[15:25:46][D][sensor:093]: 'Wilgotność powietrza': Sending state 34.25650 % with 1 decimals of accuracy
[15:25:48][D][binary_sensor:036]: 'Wentylator': Sending state ON
[15:25:49][D][sensor:093]: 'light_sensor': Sending state 0.34570 V with 2 decimals of accuracy
[15:25:54][D][sensor:093]: 'light_sensor': Sending state 0.34180 V with 2 decimals of accuracy
[15:25:57][D][pm1006:091]: Got PM2.5 Concentration: 26 µg/m³
[15:25:57][D][sensor:093]: 'PM 2.5': Sending state 26.00000 µg/m³ with 0 decimals of accuracy
[15:25:59][D][sensor:093]: 'light_sensor': Sending state 0.30957 V with 2 decimals of accuracy
[15:26:00][D][pm1006:091]: Got PM2.5 Concentration: 25 µg/m³
[15:26:00][D][sensor:093]: 'PM 2.5': Sending state 25.00000 µg/m³ with 0 decimals of accuracy
[15:26:02][D][pm1006:091]: Got PM2.5 Concentration: 24 µg/m³
[15:26:02][D][sensor:093]: 'PM 2.5': Sending state 24.00000 µg/m³ with 0 decimals of accuracy
[15:26:04][D][pm1006:091]: Got PM2.5 Concentration: 23 µg/m³
[15:26:04][D][sensor:093]: 'PM 2.5': Sending state 23.00000 µg/m³ with 0 decimals of accuracy
[15:26:04][D][sensor:093]: 'light_sensor': Sending state 0.28906 V with 2 decimals of accuracy
[15:26:06][D][pm1006:091]: Got PM2.5 Concentration: 22 µg/m³
[15:26:06][D][sensor:093]: 'PM 2.5': Sending state 22.00000 µg/m³ with 0 decimals of accuracy
[15:26:08][D][pm1006:091]: Got PM2.5 Concentration: 22 µg/m³
[15:26:08][D][sensor:093]: 'PM 2.5': Sending state 22.00000 µg/m³ with 0 decimals of accuracy
[15:26:09][D][binary_sensor:036]: 'Wentylator': Sending state OFF
[15:26:09][D][sensor:093]: 'light_sensor': Sending state 0.22363 V with 2 decimals of accuracy
[15:26:14][D][sensor:093]: 'light_sensor': Sending state 0.20117 V with 2 decimals of accuracy
[15:26:18][D][binary_sensor:036]: 'Wentylator': Sending state ON
[15:26:19][D][sensor:093]: 'light_sensor': Sending state 0.21875 V with 2 decimals of accuracy
[15:26:24][D][sensor:093]: 'light_sensor': Sending state 0.21973 V with 2 decimals of accuracy
[15:26:27][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:26:27][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:26:28][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:26:28][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:26:29][D][sensor:093]: 'light_sensor': Sending state 0.24121 V with 2 decimals of accuracy
[15:26:30][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:26:30][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:26:32][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:26:32][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:26:34][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:26:34][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:26:34][D][sensor:093]: 'light_sensor': Sending state 0.24121 V with 2 decimals of accuracy
[15:26:36][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:26:36][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:26:38][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:26:38][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:26:39][D][binary_sensor:036]: 'Wentylator': Sending state OFF
[15:26:39][D][sensor:093]: 'light_sensor': Sending state 0.24121 V with 2 decimals of accuracy
[15:26:44][D][sensor:093]: 'light_sensor': Sending state 0.24023 V with 2 decimals of accuracy
[15:26:46][D][sht3xd:064]: Got temperature=29.05°C humidity=33.53%
[15:26:46][D][sensor:093]: 'Temperatura powietrza': Sending state 29.04555 °C with 1 decimals of accuracy
[15:26:46][D][sensor:093]: 'Wilgotność powietrza': Sending state 33.52712 % with 1 decimals of accuracy
[15:26:48][D][binary_sensor:036]: 'Wentylator': Sending state ON
[15:26:49][D][sensor:093]: 'light_sensor': Sending state 0.14746 V with 2 decimals of accuracy
[15:26:54][D][sensor:093]: 'light_sensor': Sending state 0.15918 V with 2 decimals of accuracy
[15:26:57][D][pm1006:091]: Got PM2.5 Concentration: 15 µg/m³
[15:26:57][D][sensor:093]: 'PM 2.5': Sending state 15.00000 µg/m³ with 0 decimals of accuracy
[15:26:58][D][pm1006:091]: Got PM2.5 Concentration: 15 µg/m³
[15:26:58][D][sensor:093]: 'PM 2.5': Sending state 15.00000 µg/m³ with 0 decimals of accuracy
[15:26:59][D][sensor:093]: 'light_sensor': Sending state 0.30078 V with 2 decimals of accuracy
[15:27:00][D][pm1006:091]: Got PM2.5 Concentration: 15 µg/m³
[15:27:00][D][sensor:093]: 'PM 2.5': Sending state 15.00000 µg/m³ with 0 decimals of accuracy
[15:27:02][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:27:02][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:27:04][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:27:04][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:27:04][D][sensor:093]: 'light_sensor': Sending state 0.29590 V with 2 decimals of accuracy
[15:27:06][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:27:06][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:27:08][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:27:08][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:27:09][D][binary_sensor:036]: 'Wentylator': Sending state OFF
[15:27:09][D][sensor:093]: 'light_sensor': Sending state 0.29590 V with 2 decimals of accuracy
[15:27:14][D][sensor:093]: 'light_sensor': Sending state 0.29492 V with 2 decimals of accuracy
[15:27:18][D][binary_sensor:036]: 'Wentylator': Sending state ON
[15:27:19][D][sensor:093]: 'light_sensor': Sending state 0.29590 V with 2 decimals of accuracy
[15:27:24][D][sensor:093]: 'light_sensor': Sending state 0.30176 V with 2 decimals of accuracy
[15:27:27][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:27:27][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:27:28][D][pm1006:091]: Got PM2.5 Concentration: 17 µg/m³
[15:27:28][D][sensor:093]: 'PM 2.5': Sending state 17.00000 µg/m³ with 0 decimals of accuracy
[15:27:29][D][sensor:093]: 'light_sensor': Sending state 0.22461 V with 2 decimals of accuracy
[15:27:30][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:27:30][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy
[15:27:32][D][pm1006:091]: Got PM2.5 Concentration: 16 µg/m³
[15:27:32][D][sensor:093]: 'PM 2.5': Sending state 16.00000 µg/m³ with 0 decimals of accuracy

Can someone help me? :wink: