Komponent wM-Bus do ESPHome (SzczepanLeon) wersja 2.x - wątek ogólny

Witam, mam problem z przesyłaniem danych z odczytu do mqtt :confused:

Mój kod :

esphome:
  name: esp32
  friendly_name: esp32

esp32:
  board: esp32dev
  framework:
    type: arduino

# Enable logging
logger:

# Enable Home Assistant API
api:
  encryption:
    key: "jWv9Vl0fTSgwnaDPYISIJKF5x/S3hzk4jCPt8MlZMJQ="

ota:
  password: "9e975281527090aec7114ae81c9a3774"

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

  # Enable fallback hotspot (captive portal) in case wifi connection fails
  ap:
    ssid: "Esp32 Fallback Hotspot"
    password: "cx4yp4XckPU3"

# Sekcja dotycząca brokera MQTT
#mqtt:
#  broker: !secret mqtt_ip
#  username: !secret mqtt_username
#  password: !secret mqtt_password
#  # Pamięta wyniki ostatnie w MQTT
#  discovery_retain: true

time:
  - platform: sntp
    id: time_sntp

external_components:
  - source: github://SzczepanLeon/esphome-components@main
    components: [ wmbus ]

wmbus:
  mosi_pin: GPIO23
  clk_pin: GPIO18
  miso_pin: GPIO19
  gdo2_pin: GPIO21
  gdo0_pin: GPIO22
  cs_pin: GPIO5
  led_pin: GPIO2
  led_blink_time: "1s"

  clients:
    - name: "wmbusmeters"
      ip_address: "10.0.0.1"
      port: 7227

text_sensor:
  - platform: wmbus
    name: "Text debug for Apator 16-2"

captive_portal:

sensor:
  - platform: wmbus
    meter_id: 0x000000
    type: apatoreitn
    #key: "00000000000000000000000000000000"
    current_hca:
      name: "ApatorKids_CurrentHCA"
    previous_hca:
      name: "ApatorKids_PreviousHCA"
    temp_room_avg_c:
      name: "ApatorKids_TempAVG"
      unit_of_measurement: "°C"
      icon: "mdi:thermometer-lines"
      device_class: "temperature"
      state_class: "measurement"
      accuracy_decimals: 1
  
  - platform: wmbus
    meter_id: 0x000000
    type: apatoreitn
    #key: "00000000000000000000000000000000"
    current_hca:
      name: "ApatorSypialnia_CurrentHCA"
    previous_hca:
      name: "ApatorSypialnia_PreviousHCA"
    temp_room_avg_c:
      name: "ApatorSypialnia_TempAVG"
      unit_of_measurement: "°C"
      icon: "mdi:thermometer-lines"
      device_class: "temperature"
      state_class: "measurement"
      accuracy_decimals: 1
  
  - platform: wmbus
    meter_id:0x000000
    type: apatoreitn
    #key: "00000000000000000000000000000000"
    current_hca:
      name: "ApatorSalon_CurrentHCA"
    previous_hca:
      name: "ApatorSalon_PreviousHCA"
    temp_room_avg_c:
      name: "ApatorSalon_TempAVG"
      unit_of_measurement: "°C"
      icon: "mdi:thermometer-lines"
      device_class: "temperature"
      state_class: "measurement"
      accuracy_decimals: 1

  - platform: wmbus
    meter_id: 0x000000
    type: apatoreitn
    #key: "00000000000000000000000000000000"
    current_hca:
      name: "ApatorLazienka_CurrentHCA"
      icon: "mdi:heating-coil"
    previous_hca:
      name: "ApatorLazienka_PreviousHCA"
      icon: "mdi:heating-coil"
    temp_room_avg_c:
      name: "ApatorLazienka_TempAVG"
      unit_of_measurement: "°C"
      icon: "mdi:thermometer-lines"
      device_class: "temperature"
      state_class: "measurement"
      accuracy_decimals: 1

  - platform: wmbus
    meter_id: 0x0000000
    type: apator08
    #key: "00000000000000000000000000000000"
    total_water_m3:
      name: "LicznikWody"
      unit_of_measurement: "m³"
      icon: "mdi:water-percent"
      device_class: "water"
      state_class: "measurement"

W przypadku odkomentowanie secji mqtt:

# Sekcja dotycząca brokera MQTT
mqtt:
  broker: !secret mqtt_ip
  username: !secret mqtt_username
  password: !secret mqtt_password
# Pamięta wyniki ostatnie w MQTT
  discovery_retain: true

Instaluje się poprawnie, jednak w logach zatrzymuje sie po zaladowniu kodu, tak jakby nie odczytuje kompletnie nic i nie odbiera sygnałów i wydaje się że nie zastartowało ESP :confused:

U mnie to samo.
Aktualna wersja Esphome 2023.10.6 działa bez zarzutu.
Każda aktualizacja do wersji 2023.11.xx i zaktualizowanie esp.yaml powoduje brak odczytów wodomierzy.
Usunięcie sekcji sensor w kodzie yaml powoduje odbieranie telegramów z moich wodomierzy. Natomiast jak mam wpisane sensory niestety cisza.

Testy prowadziłem w Homeassistant Adoon Esphome.
Sprawdzałem również czy problem występuje i po zainstalowaniu esphome w docker-compose identyczne zachowanie.
testy dla wersji
2023.11.03
2023.11.04
2023.11.05
2023.11.06
Nie sprawdzałem wersji 2023.11.1 i 2023.11.2

Mój kod

esphome:
  name: wodomierz
  #friendly_name: wodomierz

esp32:
  board: nodemcu-32s
  framework:
    type: arduino


time:
  - platform: sntp
    id: time_sntp

external_components:
  - source: github://SzczepanLeon/esphome-components@main
    refresh: 0d
    components: [ wmbus ]


web_server:
  port: 80
  version: 2

logger: 
  level: DEBUG

api:
  encryption:
    key: "/usV//VFUokEn296076onuYnhQ0iWEnPJnGBunYwp04="

ota:
  password: "e34d0c3980ac9492897724849c021acd"

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

  manual_ip:
    static_ip: 10.0.0.45
    gateway: 10.0.0.1
    subnet: 255.255.255.0
    dns1: 8.8.8.8
    dns2: 8.8.4.4

  ap:
    ssid: "Wodomierz Fallback Hotspot"
    password: "cXdl86ZHZzDw"


captive_portal:
wmbus:
  mosi_pin: GPIO32
  clk_pin: GPIO33
  miso_pin: GPIO19
  gdo2_pin: GPIO21
  gdo0_pin: GPIO22
  cs_pin: GPIO23
  clients:
    - name: "wmbusmeters"
      ip_address: "10.0.0.1"
      port: 7227


  - platform: wmbus
    meter_id: 0x00126858
    type: apator162
    key: "00000000000000000000000000000000"
    add_prefix: false 
    lqi:
      name: "LQI glowny"
    rssi:
      name: "RSSI glowny"
    total_water_m3:
      name: "ESP_wodomierz_glowny"
      filters:
        offset: -233.006
      force_update: true


  broker: !secret mqtt_ip
  username: !secret mqtt_username
  password: !secret mqtt_password
 
  discovery_retain: true

Logi :slight_smile:

INFO Waiting for result...
INFO OTA successful
INFO Successfully uploaded program.
INFO Starting log output from 10.0.0.45 using esphome API
INFO Successfully connected to 10.0.0.45 in 7.098s
INFO Successful handshake with 10.0.0.45 in 0.781s
[17:23:09][V][mqtt.idf:109]: Event dispatched from event loop event_id=5
[17:23:09][V][mqtt.idf:137]: MQTT_EVENT_PUBLISHED, msg_id=39310
[17:23:09][I][app:102]: ESPHome version 2023.11.6 compiled on Nov 29 2023, 17:22:40
[17:23:09][C][wifi:559]: WiFi:
[17:23:09][C][wifi:391]:   Local MAC: C8:F0:9E:2E:36:D4
[17:23:09][C][wifi:396]:   SSID: 'SmartDom'[redacted]
[17:23:09][C][wifi:397]:   IP Address: 10.0.0.45
[17:23:09][C][wifi:399]:   BSSID: 7C:10:C9:A8:3E:81[redacted]
[17:23:09][C][wifi:400]:   Hostname: 'wodomierz'
[17:23:09][C][wifi:402]:   Signal strength: -25 dB ▂▄▆█
[17:23:09][V][wifi:404]:   Priority: 0.0
[17:23:09][C][wifi:406]:   Channel: 2
[17:23:09][C][wifi:407]:   Subnet: 255.255.255.0
[17:23:09][C][wifi:408]:   Gateway: 10.0.0.1
[17:23:09][C][wifi:409]:   DNS1: 8.8.8.8
[17:23:09][C][wifi:410]:   DNS2: 8.8.4.4
[17:23:09][C][logger:416]: Logger:
[17:23:09][C][logger:417]:   Level: VERY_VERBOSE
[17:23:09][C][logger:418]:   Log Baud Rate: 115200
[17:23:09][C][logger:420]:   Hardware UART: UART0
[17:23:09][C][captive_portal:088]: Captive Portal:
[17:23:09][C][web_server:168]: Web Server:
[17:23:09][C][web_server:169]:   Address: 10.0.0.45:80
[17:23:09][C][sntp:053]: SNTP Time:
[17:23:09][C][sntp:054]:   Server 1: '0.pool.ntp.org'
[17:23:09][C][sntp:055]:   Server 2: '1.pool.ntp.org'
[17:23:09][C][sntp:056]:   Server 3: '2.pool.ntp.org'
[17:23:09][C][sntp:057]:   Timezone: 'CET-1CEST,M3.5.0,M10.5.0/3'
[17:23:09][C][mdns:115]: mDNS:
[17:23:09][C][mdns:116]:   Hostname: wodomierz
[17:23:09][V][mdns:117]:   Services:
[17:23:09][V][mdns:119]:   - _esphomelib, _tcp, 6053
[17:23:09][V][mdns:121]:     TXT: version = 2023.11.6
[17:23:09][V][mdns:121]:     TXT: mac = c8f09e2e36d4
[17:23:09][V][mdns:121]:     TXT: platform = ESP32
[17:23:09][V][mdns:121]:     TXT: board = nodemcu-32s
[17:23:09][V][mdns:121]:     TXT: network = wifi
[17:23:09][V][mdns:121]:     TXT: api_encryption = Noise_NNpsk0_25519_ChaChaPoly_SHA256
[17:23:09][V][mdns:119]:   - _http, _tcp, 80
[17:23:09][C][ota:097]: Over-The-Air Updates:
[17:23:09][C][ota:098]:   Address: 10.0.0.45:3232
[17:23:09][C][ota:101]:   Using Password.
[17:23:09][C][api:139]: API Server:
[17:23:09][C][api:140]:   Address: 10.0.0.45:6053
[17:23:09][C][api:142]:   Using noise encryption: YES
[17:23:09][C][mqtt:133]: MQTT:
[17:23:09][C][mqtt:135]:   Server Address: 10.0.0.9:1883 (10.0.0.9)
[17:23:09][C][mqtt:136]:   Username: 'haos'[redacted]
[17:23:09][C][mqtt:137]:   Client ID: 'wodomierz-c8f09e2e36d4'[redacted]
[17:23:09][C][mqtt:139]:   Discovery prefix: 'homeassistant'
[17:23:09][C][mqtt:140]:   Discovery retain: YES
[17:23:09][C][mqtt:142]:   Topic Prefix: 'wodomierz'
[17:23:09][C][mqtt:144]:   Log Topic: 'wodomierz/debug'
[17:23:09][C][mqtt:147]:   Availability: 'wodomierz/status'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'LQI glowny':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/lqi_glowny/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'RSSI glowny':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/rssi_glowny/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'ESP_wodomierz_glowny':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/esp_wodomierz_glowny/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'LQI ogrodowy':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/lqi_ogrodowy/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'RSSI ogrodowy':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/rssi_ogrodowy/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'ESP_wodomierz_ogrodowy':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/esp_wodomierz_ogrodowy/state'
[17:23:09][C][wmbus:412]: wM-Bus v2.3.1:
[17:23:09][C][wmbus:414]:   Clients:
[17:23:09][C][wmbus:421]:     wmbusmeters: 10.10.0.1:7227 TCP [rtl-wmbus]
[17:23:09][C][wmbus:429]:   CC1101 SPI bus:
[17:23:09][C][wmbus:430]:     MOSI Pin: GPIO32
[17:23:09][C][wmbus:431]:     MISO Pin: GPIO19
[17:23:09][C][wmbus:432]:     CLK Pin:  GPIO33
[17:23:09][C][wmbus:433]:     CS Pin:   GPIO23
[17:23:09][C][wmbus:434]:     GDO0 Pin: GPIO22
[17:23:09][C][wmbus:435]:     GDO2 Pin: GPIO21
[17:23:09][C][wmbus:442]:   Available drivers:  amiplus, apator08, apator162, apatoreitn, bmeters, c5isf, compact5, dme07, elf, evo868, fhkvdataiii, hydrocalm3, hydrus, iperl, itron, izar, mkradio3, mkradio4, qheat, qwater, sharky774, topaseskr, ultrimis, unismart, vario451
[17:23:09][C][wmbus:460]:   Meter:
[17:23:09][C][wmbus:461]:     ID: 397445 [0x00061085]
[17:23:09][C][wmbus:462]:     Type: apator162
[17:23:09][C][wmbus:463]:     Mode: T1
[17:23:09][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:23:09][C][wmbus:466]:     Sensor 'LQI ogrodowy'
[17:23:09][C][wmbus:466]:       Device Class: 'signal_strength'
[17:23:09][C][wmbus:466]:       State Class: 'measurement'
[17:23:09][C][wmbus:466]:       Unit of Measurement: ''
[17:23:09][C][wmbus:466]:       Accuracy Decimals: 0
[17:23:09][C][wmbus:466]:     Sensor 'RSSI ogrodowy'
[17:23:09][C][wmbus:466]:       Device Class: 'signal_strength'
[17:23:09][C][wmbus:466]:       State Class: 'measurement'
[17:23:09][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:23:09][C][wmbus:466]:       Accuracy Decimals: 0
[17:23:09][C][wmbus:466]:     Sensor 'ESP_wodomierz_ogrodowy'
[17:23:09][C][wmbus:466]:       Device Class: 'water'
[17:23:09][C][wmbus:466]:       State Class: 'total_increasing'
[17:23:09][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:23:09][C][wmbus:466]:       Accuracy Decimals: 3
[17:23:09][C][wmbus:466]:       Icon: 'mdi:water'
[17:23:09][V][wmbus:466]:       Force Update: YES
[17:23:09][C][wmbus:460]:   Meter:
[17:23:09][C][wmbus:461]:     ID: 1206360 [0x00126858]
[17:23:09][C][wmbus:462]:     Type: apator162
[17:23:09][C][wmbus:463]:     Mode: T1
[17:23:09][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:23:09][C][wmbus:466]:     Sensor 'LQI glowny'
[17:23:09][C][wmbus:466]:       Device Class: 'signal_strength'
[17:23:09][C][wmbus:466]:       State Class: 'measurement'
[17:23:09][C][wmbus:466]:       Unit of Measurement: ''
[17:23:10][C][wmbus:466]:       Accuracy Decimals: 0
[17:23:10][C][wmbus:466]:     Sensor 'RSSI glowny'
[17:23:10][C][wmbus:466]:       Device Class: 'signal_strength'
[17:23:10][C][wmbus:466]:       State Class: 'measurement'
[17:23:10][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:23:10][C][wmbus:466]:       Accuracy Decimals: 0
[17:23:10][C][wmbus:466]:     Sensor 'ESP_wodomierz_glowny'
[17:23:10][C][wmbus:466]:       Device Class: 'water'
[17:23:10][C][wmbus:466]:       State Class: 'total_increasing'
[17:23:10][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:23:10][C][wmbus:466]:       Accuracy Decimals: 3
[17:23:10][C][wmbus:466]:       Icon: 'mdi:water'
[17:23:10][V][wmbus:466]:       Force Update: YES
[17:23:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=6132 (now=16133)
[17:23:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=16132 (now=26132)
[17:23:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=26132 (now=36133)
[17:23:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=4294947013 (now=39717)
[17:23:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=36132 (now=46136)
[17:23:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=46132 (now=56132)
[17:24:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=56132 (now=66134)
[17:24:09][VV][api.connection:130]: Sending keepalive PING...
[17:24:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:24:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 92 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 104 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 104 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 124 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 104 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 108 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 124 bytes
[17:24:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=66132 (now=76135)
[17:24:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=76132 (now=86134)
[17:24:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=86132 (now=96133)
[17:24:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=39717 (now=99717)
[17:24:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=96132 (now=106133)
[17:24:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=106132 (now=116133)
[17:25:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=116132 (now=126132)
[17:25:09][VV][api.connection:130]: Sending keepalive PING...
[17:25:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:25:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:25:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=126132 (now=136132)
[17:25:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=136132 (now=146133)
[17:25:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=146132 (now=156133)
[17:25:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=99717 (now=159717)
[17:25:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=156132 (now=166132)
[17:25:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=166132 (now=176132)
[17:26:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=176132 (now=186132)
[17:26:09][VV][api.connection:130]: Sending keepalive PING...
[17:26:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:26:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:26:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=186132 (now=196132)
[17:26:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=196132 (now=206134)
[17:26:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=206132 (now=216136)
[17:26:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=159717 (now=219718)
[17:26:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=216132 (now=226133)
[17:26:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=226132 (now=236134)
[17:27:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=236132 (now=246132)
[17:27:09][VV][api.connection:130]: Sending keepalive PING...
[17:27:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:27:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:27:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=246132 (now=256132)
[17:27:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=256132 (now=266135)
[17:27:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=266132 (now=276133)
[17:27:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=219717 (now=279718)
[17:27:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=276132 (now=286136)
[17:27:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=286132 (now=296132)
[17:28:00][I][ota:117]: Boot seems successful, resetting boot loop counter.
[17:28:00][VV][esp32.preferences:040]: s_pending_save: key: 233825507, len: 4
[17:28:00][D][esp32.preferences:114]: Saving 1 preferences to flash...
[17:28:00][VV][esp32.preferences:123]: Checking if NVS data 233825507 has changed
[17:28:00][V][esp32.preferences:126]: sync: key: 233825507, len: 4
[17:28:01][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[17:28:01][W][component:214]: Component ota took a long time for an operation (0.07 s).
[17:28:01][W][component:215]: Components should block for at most 20-30ms.
[17:28:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=296132 (now=306133)
[17:28:09][VV][api.connection:130]: Sending keepalive PING...
[17:28:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:28:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:28:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=306132 (now=316132)
[17:28:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=316132 (now=326132)
[17:28:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=326132 (now=336133)
[17:28:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=279717 (now=339717)
[17:28:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=336132 (now=346133)
[17:28:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=346132 (now=356134)
[17:29:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=356132 (now=366135)
[17:29:09][VV][api.connection:130]: Sending keepalive PING...
[17:29:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:29:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:29:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=366132 (now=376134)
[17:29:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=376132 (now=386132)
[17:29:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=386132 (now=396132)
[17:29:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=339717 (now=399719)
[17:29:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=396132 (now=406134)
[17:29:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=406132 (now=416132)
[17:30:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=416132 (now=426135)
[17:30:09][VV][api.connection:130]: Sending keepalive PING...
[17:30:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:30:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:30:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=426132 (now=436133)
[17:30:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=436132 (now=446133)
[17:30:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=446132 (now=456133)
[17:30:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=399717 (now=459718)
[17:30:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=456132 (now=466132)
[17:30:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=466132 (now=476133)
[17:31:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=476132 (now=486133)
[17:31:09][VV][api.connection:130]: Sending keepalive PING...
[17:31:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:31:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:31:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=486132 (now=496133)
[17:31:26][VV][scheduler:226]: Running interval 'update' with interval=900000 last_execution=4294573305 (now=506010)
[17:31:26][D][sntp:078]: Synchronized time: 2023-11-29 17:31:26
[17:31:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=496132 (now=506133)
[17:31:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=506132 (now=516132)
[17:31:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=459717 (now=519718)
[17:31:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=516132 (now=526133)
[17:31:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=526132 (now=536135)
[17:32:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=536132 (now=546134)
[17:32:09][VV][api.connection:130]: Sending keepalive PING...
[17:32:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:32:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:32:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=546132 (now=556132)
[17:32:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=556132 (now=566134)
[17:32:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=566132 (now=576132)
[17:32:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=519717 (now=579717)
[17:32:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=576132 (now=586132)
[17:32:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=586132 (now=596133)
[17:33:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=596132 (now=606133)
[17:33:09][VV][api.connection:130]: Sending keepalive PING...
[17:33:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:33:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:33:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=606132 (now=616132)
[17:33:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=616132 (now=626132)
[17:33:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=626132 (now=636134)
[17:33:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=579717 (now=639718)
[17:33:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=636132 (now=646132)
[17:33:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=646132 (now=656132)
[17:34:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=656132 (now=666133)
[17:34:09][VV][api.connection:130]: Sending keepalive PING...
[17:34:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:34:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:34:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=666132 (now=676132)
[17:34:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=676132 (now=686132)
[17:34:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=686132 (now=696132)
[17:34:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=639717 (now=699718)
[17:34:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=696132 (now=706133)
[17:34:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=706132 (now=716134)
[17:35:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=716132 (now=726133)
[17:35:09][VV][api.connection:130]: Sending keepalive PING...
[17:35:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:35:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:35:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=726132 (now=736132)
[17:35:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=736132 (now=746134)
[17:35:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=746132 (now=756133)
[17:35:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=699717 (now=759718)
[17:35:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=756132 (now=766133)
[17:35:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=766132 (now=776134)
[17:36:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=776132 (now=786132)
[17:36:09][VV][api.connection:130]: Sending keepalive PING...
[17:36:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:36:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:36:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=786132 (now=796133)
[17:36:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=796132 (now=806133)
[17:36:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=806132 (now=816133)
[17:36:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=759717 (now=819717)
[17:36:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=816132 (now=826134)
[17:36:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=826132 (now=836133)
[17:37:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=836132 (now=846132)
[17:37:09][VV][api.connection:130]: Sending keepalive PING...
[17:37:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:37:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:37:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=846132 (now=856135)
[17:37:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=856132 (now=866132)
[17:37:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=866132 (now=876133)
[17:37:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=819717 (now=879718)
[17:37:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=876132 (now=886132)
[17:37:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=886132 (now=896132)
[17:38:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=896132 (now=906133)
[17:38:09][VV][api.connection:130]: Sending keepalive PING...
[17:38:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:38:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:38:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=906132 (now=916133)
[17:38:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=916132 (now=926133)
[17:38:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=926132 (now=936132)
[17:38:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=879717 (now=939717)
[17:38:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=936132 (now=946134)
[17:38:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=946132 (now=956135)
[17:39:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=956132 (now=966132)

Jak nikt nie podeśle logów VERY_VERBOSE to nic nie zdziałam.
Czy bez sekcji mqtt działa?

“szewc bez butów chodzi” – tak więc u siebie nie korzystam z sekcji sensor, tylko client :smiley:

Co to znaczy zaktualizowanie yaml??

Czy w 2023.11.1 działa?

jak się zmienia wersja esp to każe zrobić update

Edit:

@_Szczepan

Nie sprawdzałem wersji 2023.11.1 i 2023.11.2

Logi:

INFO Waiting for result...
INFO OTA successful
INFO Successfully uploaded program.
INFO Starting log output from 10.0.0.45 using esphome API
INFO Successfully connected to 10.0.0.45 in 7.098s
INFO Successful handshake with 10.0.0.45 in 0.781s
[17:23:09][V][mqtt.idf:109]: Event dispatched from event loop event_id=5
[17:23:09][V][mqtt.idf:137]: MQTT_EVENT_PUBLISHED, msg_id=39310
[17:23:09][I][app:102]: ESPHome version 2023.11.6 compiled on Nov 29 2023, 17:22:40
[17:23:09][C][wifi:559]: WiFi:
[17:23:09][C][wifi:391]:   Local MAC: C8:F0:9E:2E:36:D4
[17:23:09][C][wifi:396]:   SSID: 'SmartDom'[redacted]
[17:23:09][C][wifi:397]:   IP Address: 10.0.0.45
[17:23:09][C][wifi:399]:   BSSID: 7C:10:C9:A8:3E:81[redacted]
[17:23:09][C][wifi:400]:   Hostname: 'wodomierz'
[17:23:09][C][wifi:402]:   Signal strength: -25 dB ▂▄▆█
[17:23:09][V][wifi:404]:   Priority: 0.0
[17:23:09][C][wifi:406]:   Channel: 2
[17:23:09][C][wifi:407]:   Subnet: 255.255.255.0
[17:23:09][C][wifi:408]:   Gateway: 10.0.0.1
[17:23:09][C][wifi:409]:   DNS1: 8.8.8.8
[17:23:09][C][wifi:410]:   DNS2: 8.8.4.4
[17:23:09][C][logger:416]: Logger:
[17:23:09][C][logger:417]:   Level: VERY_VERBOSE
[17:23:09][C][logger:418]:   Log Baud Rate: 115200
[17:23:09][C][logger:420]:   Hardware UART: UART0
[17:23:09][C][captive_portal:088]: Captive Portal:
[17:23:09][C][web_server:168]: Web Server:
[17:23:09][C][web_server:169]:   Address: 10.0.0.45:80
[17:23:09][C][sntp:053]: SNTP Time:
[17:23:09][C][sntp:054]:   Server 1: '0.pool.ntp.org'
[17:23:09][C][sntp:055]:   Server 2: '1.pool.ntp.org'
[17:23:09][C][sntp:056]:   Server 3: '2.pool.ntp.org'
[17:23:09][C][sntp:057]:   Timezone: 'CET-1CEST,M3.5.0,M10.5.0/3'
[17:23:09][C][mdns:115]: mDNS:
[17:23:09][C][mdns:116]:   Hostname: wodomierz
[17:23:09][V][mdns:117]:   Services:
[17:23:09][V][mdns:119]:   - _esphomelib, _tcp, 6053
[17:23:09][V][mdns:121]:     TXT: version = 2023.11.6
[17:23:09][V][mdns:121]:     TXT: mac = c8f09e2e36d4
[17:23:09][V][mdns:121]:     TXT: platform = ESP32
[17:23:09][V][mdns:121]:     TXT: board = nodemcu-32s
[17:23:09][V][mdns:121]:     TXT: network = wifi
[17:23:09][V][mdns:121]:     TXT: api_encryption = Noise_NNpsk0_25519_ChaChaPoly_SHA256
[17:23:09][V][mdns:119]:   - _http, _tcp, 80
[17:23:09][C][ota:097]: Over-The-Air Updates:
[17:23:09][C][ota:098]:   Address: 10.0.0.45:3232
[17:23:09][C][ota:101]:   Using Password.
[17:23:09][C][api:139]: API Server:
[17:23:09][C][api:140]:   Address: 10.0.0.45:6053
[17:23:09][C][api:142]:   Using noise encryption: YES
[17:23:09][C][mqtt:133]: MQTT:
[17:23:09][C][mqtt:135]:   Server Address: 10.0.0.9:1883 (10.0.0.9)
[17:23:09][C][mqtt:136]:   Username: 'haos'[redacted]
[17:23:09][C][mqtt:137]:   Client ID: 'wodomierz-c8f09e2e36d4'[redacted]
[17:23:09][C][mqtt:139]:   Discovery prefix: 'homeassistant'
[17:23:09][C][mqtt:140]:   Discovery retain: YES
[17:23:09][C][mqtt:142]:   Topic Prefix: 'wodomierz'
[17:23:09][C][mqtt:144]:   Log Topic: 'wodomierz/debug'
[17:23:09][C][mqtt:147]:   Availability: 'wodomierz/status'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'LQI glowny':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/lqi_glowny/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'RSSI glowny':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/rssi_glowny/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'ESP_wodomierz_glowny':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/esp_wodomierz_glowny/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'LQI ogrodowy':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/lqi_ogrodowy/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'RSSI ogrodowy':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/rssi_ogrodowy/state'
[17:23:09][C][mqtt.sensor:028]: MQTT Sensor 'ESP_wodomierz_ogrodowy':
[17:23:09][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/esp_wodomierz_ogrodowy/state'
[17:23:09][C][wmbus:412]: wM-Bus v2.3.1:
[17:23:09][C][wmbus:414]:   Clients:
[17:23:09][C][wmbus:421]:     wmbusmeters: 10.10.0.1:7227 TCP [rtl-wmbus]
[17:23:09][C][wmbus:429]:   CC1101 SPI bus:
[17:23:09][C][wmbus:430]:     MOSI Pin: GPIO32
[17:23:09][C][wmbus:431]:     MISO Pin: GPIO19
[17:23:09][C][wmbus:432]:     CLK Pin:  GPIO33
[17:23:09][C][wmbus:433]:     CS Pin:   GPIO23
[17:23:09][C][wmbus:434]:     GDO0 Pin: GPIO22
[17:23:09][C][wmbus:435]:     GDO2 Pin: GPIO21
[17:23:09][C][wmbus:442]:   Available drivers:  amiplus, apator08, apator162, apatoreitn, bmeters, c5isf, compact5, dme07, elf, evo868, fhkvdataiii, hydrocalm3, hydrus, iperl, itron, izar, mkradio3, mkradio4, qheat, qwater, sharky774, topaseskr, ultrimis, unismart, vario451
[17:23:09][C][wmbus:460]:   Meter:
[17:23:09][C][wmbus:461]:     ID: 397445 [0x00061085]
[17:23:09][C][wmbus:462]:     Type: apator162
[17:23:09][C][wmbus:463]:     Mode: T1
[17:23:09][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:23:09][C][wmbus:466]:     Sensor 'LQI ogrodowy'
[17:23:09][C][wmbus:466]:       Device Class: 'signal_strength'
[17:23:09][C][wmbus:466]:       State Class: 'measurement'
[17:23:09][C][wmbus:466]:       Unit of Measurement: ''
[17:23:09][C][wmbus:466]:       Accuracy Decimals: 0
[17:23:09][C][wmbus:466]:     Sensor 'RSSI ogrodowy'
[17:23:09][C][wmbus:466]:       Device Class: 'signal_strength'
[17:23:09][C][wmbus:466]:       State Class: 'measurement'
[17:23:09][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:23:09][C][wmbus:466]:       Accuracy Decimals: 0
[17:23:09][C][wmbus:466]:     Sensor 'ESP_wodomierz_ogrodowy'
[17:23:09][C][wmbus:466]:       Device Class: 'water'
[17:23:09][C][wmbus:466]:       State Class: 'total_increasing'
[17:23:09][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:23:09][C][wmbus:466]:       Accuracy Decimals: 3
[17:23:09][C][wmbus:466]:       Icon: 'mdi:water'
[17:23:09][V][wmbus:466]:       Force Update: YES
[17:23:09][C][wmbus:460]:   Meter:
[17:23:09][C][wmbus:461]:     ID: 1206360 [0x00126858]
[17:23:09][C][wmbus:462]:     Type: apator162
[17:23:09][C][wmbus:463]:     Mode: T1
[17:23:09][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:23:09][C][wmbus:466]:     Sensor 'LQI glowny'
[17:23:09][C][wmbus:466]:       Device Class: 'signal_strength'
[17:23:09][C][wmbus:466]:       State Class: 'measurement'
[17:23:09][C][wmbus:466]:       Unit of Measurement: ''
[17:23:10][C][wmbus:466]:       Accuracy Decimals: 0
[17:23:10][C][wmbus:466]:     Sensor 'RSSI glowny'
[17:23:10][C][wmbus:466]:       Device Class: 'signal_strength'
[17:23:10][C][wmbus:466]:       State Class: 'measurement'
[17:23:10][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:23:10][C][wmbus:466]:       Accuracy Decimals: 0
[17:23:10][C][wmbus:466]:     Sensor 'ESP_wodomierz_glowny'
[17:23:10][C][wmbus:466]:       Device Class: 'water'
[17:23:10][C][wmbus:466]:       State Class: 'total_increasing'
[17:23:10][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:23:10][C][wmbus:466]:       Accuracy Decimals: 3
[17:23:10][C][wmbus:466]:       Icon: 'mdi:water'
[17:23:10][V][wmbus:466]:       Force Update: YES
[17:23:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=6132 (now=16133)
[17:23:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=16132 (now=26132)
[17:23:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=26132 (now=36133)
[17:23:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=4294947013 (now=39717)
[17:23:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=36132 (now=46136)
[17:23:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=46132 (now=56132)
[17:24:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=56132 (now=66134)
[17:24:09][VV][api.connection:130]: Sending keepalive PING...
[17:24:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:24:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 92 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 104 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 104 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 124 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 104 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 108 bytes
[17:24:15][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:24:15][V][json:058]: Size after shrink 124 bytes
[17:24:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=66132 (now=76135)
[17:24:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=76132 (now=86134)
[17:24:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=86132 (now=96133)
[17:24:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=39717 (now=99717)
[17:24:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=96132 (now=106133)
[17:24:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=106132 (now=116133)
[17:25:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=116132 (now=126132)
[17:25:09][VV][api.connection:130]: Sending keepalive PING...
[17:25:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:25:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:25:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=126132 (now=136132)
[17:25:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=136132 (now=146133)
[17:25:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=146132 (now=156133)
[17:25:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=99717 (now=159717)
[17:25:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=156132 (now=166132)
[17:25:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=166132 (now=176132)
[17:26:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=176132 (now=186132)
[17:26:09][VV][api.connection:130]: Sending keepalive PING...
[17:26:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:26:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:26:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=186132 (now=196132)
[17:26:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=196132 (now=206134)
[17:26:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=206132 (now=216136)
[17:26:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=159717 (now=219718)
[17:26:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=216132 (now=226133)
[17:26:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=226132 (now=236134)
[17:27:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=236132 (now=246132)
[17:27:09][VV][api.connection:130]: Sending keepalive PING...
[17:27:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:27:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:27:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=246132 (now=256132)
[17:27:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=256132 (now=266135)
[17:27:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=266132 (now=276133)
[17:27:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=219717 (now=279718)
[17:27:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=276132 (now=286136)
[17:27:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=286132 (now=296132)
[17:28:00][I][ota:117]: Boot seems successful, resetting boot loop counter.
[17:28:00][VV][esp32.preferences:040]: s_pending_save: key: 233825507, len: 4
[17:28:00][D][esp32.preferences:114]: Saving 1 preferences to flash...
[17:28:00][VV][esp32.preferences:123]: Checking if NVS data 233825507 has changed
[17:28:00][V][esp32.preferences:126]: sync: key: 233825507, len: 4
[17:28:01][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[17:28:01][W][component:214]: Component ota took a long time for an operation (0.07 s).
[17:28:01][W][component:215]: Components should block for at most 20-30ms.
[17:28:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=296132 (now=306133)
[17:28:09][VV][api.connection:130]: Sending keepalive PING...
[17:28:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:28:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:28:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=306132 (now=316132)
[17:28:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=316132 (now=326132)
[17:28:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=326132 (now=336133)
[17:28:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=279717 (now=339717)
[17:28:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=336132 (now=346133)
[17:28:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=346132 (now=356134)
[17:29:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=356132 (now=366135)
[17:29:09][VV][api.connection:130]: Sending keepalive PING...
[17:29:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:29:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:29:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=366132 (now=376134)
[17:29:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=376132 (now=386132)
[17:29:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=386132 (now=396132)
[17:29:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=339717 (now=399719)
[17:29:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=396132 (now=406134)
[17:29:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=406132 (now=416132)
[17:30:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=416132 (now=426135)
[17:30:09][VV][api.connection:130]: Sending keepalive PING...
[17:30:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:30:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:30:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=426132 (now=436133)
[17:30:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=436132 (now=446133)
[17:30:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=446132 (now=456133)
[17:30:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=399717 (now=459718)
[17:30:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=456132 (now=466132)
[17:30:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=466132 (now=476133)
[17:31:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=476132 (now=486133)
[17:31:09][VV][api.connection:130]: Sending keepalive PING...
[17:31:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:31:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:31:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=486132 (now=496133)
[17:31:26][VV][scheduler:226]: Running interval 'update' with interval=900000 last_execution=4294573305 (now=506010)
[17:31:26][D][sntp:078]: Synchronized time: 2023-11-29 17:31:26
[17:31:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=496132 (now=506133)
[17:31:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=506132 (now=516132)
[17:31:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=459717 (now=519718)
[17:31:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=516132 (now=526133)
[17:31:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=526132 (now=536135)
[17:32:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=536132 (now=546134)
[17:32:09][VV][api.connection:130]: Sending keepalive PING...
[17:32:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:32:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:32:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=546132 (now=556132)
[17:32:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=556132 (now=566134)
[17:32:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=566132 (now=576132)
[17:32:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=519717 (now=579717)
[17:32:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=576132 (now=586132)
[17:32:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=586132 (now=596133)
[17:33:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=596132 (now=606133)
[17:33:09][VV][api.connection:130]: Sending keepalive PING...
[17:33:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:33:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:33:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=606132 (now=616132)
[17:33:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=616132 (now=626132)
[17:33:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=626132 (now=636134)
[17:33:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=579717 (now=639718)
[17:33:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=636132 (now=646132)
[17:33:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=646132 (now=656132)
[17:34:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=656132 (now=666133)
[17:34:09][VV][api.connection:130]: Sending keepalive PING...
[17:34:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:34:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:34:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=666132 (now=676132)
[17:34:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=676132 (now=686132)
[17:34:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=686132 (now=696132)
[17:34:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=639717 (now=699718)
[17:34:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=696132 (now=706133)
[17:34:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=706132 (now=716134)
[17:35:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=716132 (now=726133)
[17:35:09][VV][api.connection:130]: Sending keepalive PING...
[17:35:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:35:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:35:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=726132 (now=736132)
[17:35:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=736132 (now=746134)
[17:35:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=746132 (now=756133)
[17:35:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=699717 (now=759718)
[17:35:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=756132 (now=766133)
[17:35:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=766132 (now=776134)
[17:36:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=776132 (now=786132)
[17:36:09][VV][api.connection:130]: Sending keepalive PING...
[17:36:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:36:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:36:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=786132 (now=796133)
[17:36:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=796132 (now=806133)
[17:36:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=806132 (now=816133)
[17:36:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=759717 (now=819717)
[17:36:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=816132 (now=826134)
[17:36:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=826132 (now=836133)
[17:37:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=836132 (now=846132)
[17:37:09][VV][api.connection:130]: Sending keepalive PING...
[17:37:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:37:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:37:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=846132 (now=856135)
[17:37:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=856132 (now=866132)
[17:37:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=866132 (now=876133)
[17:37:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=819717 (now=879718)
[17:37:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=876132 (now=886132)
[17:37:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=886132 (now=896132)
[17:38:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=896132 (now=906133)
[17:38:09][VV][api.connection:130]: Sending keepalive PING...
[17:38:09][VV][api.service:037]: send_ping_request: PingRequest {}
[17:38:09][VV][api.service:567]: on_ping_response: PingResponse {}
[17:38:16][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=906132 (now=916133)
[17:38:26][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=916132 (now=926133)
[17:38:36][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=926132 (now=936132)
[17:38:40][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=879717 (now=939717)
[17:38:46][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=936132 (now=946134)
[17:38:56][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=946132 (now=956135)
[17:39:06][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=956132 (now=966132)

Podeślij logi VV z wersji:

  • 2023.11.01 z mqtt
  • 2023.11.01 bez mqtt
  • 2023.10.06 z mqtt

ok
wersja 2023.10.6
natychmiastowy odczyt


INFO ESPHome 2023.10.6
INFO Reading configuration /config/esphome/wodomierz.yaml...
INFO Updating https://github.com/SzczepanLeon/esphome-components.git@2.3.1
INFO Detected timezone 'Europe/Warsaw'
INFO Starting log output from 10.0.0.45 using esphome API
INFO Successfully connected to 10.0.0.45
[17:57:12][I][app:102]: ESPHome version 2023.10.6 compiled on Nov 29 2023, 17:52:34
[17:57:13][C][wifi:546]: WiFi:
[17:57:13][C][wifi:382]:   Local MAC: C8:F0:9E:2E:36:D4
[17:57:13][C][wifi:383]:   SSID: [redacted]
[17:57:13][C][wifi:384]:   IP Address: 10.0.0.45
[17:57:13][C][wifi:386]:   BSSID: [redacted]
[17:57:13][C][wifi:387]:   Hostname: 'wodomierz'
[17:57:13][C][wifi:389]:   Signal strength: -28 dB ▂▄▆█
[17:57:13][V][wifi:391]:   Priority: 0.0
[17:57:13][C][wifi:393]:   Channel: 2
[17:57:13][C][wifi:394]:   Subnet: 255.255.255.0
[17:57:13][C][wifi:395]:   Gateway: 10.0.0.1
[17:57:13][C][wifi:396]:   DNS1: 8.8.8.8
[17:57:13][C][wifi:397]:   DNS2: 8.8.4.4
[17:57:13][C][logger:416]: Logger:
[17:57:13][C][logger:417]:   Level: VERY_VERBOSE
[17:57:13][C][logger:418]:   Log Baud Rate: 115200
[17:57:13][C][logger:420]:   Hardware UART: UART0
[17:57:13][C][captive_portal:088]: Captive Portal:
[17:57:13][C][web_server:161]: Web Server:
[17:57:13][C][web_server:162]:   Address: 10.0.0.45:80
[17:57:13][C][sntp:053]: SNTP Time:
[17:57:13][C][sntp:054]:   Server 1: '0.pool.ntp.org'
[17:57:13][C][sntp:055]:   Server 2: '1.pool.ntp.org'
[17:57:13][C][sntp:056]:   Server 3: '2.pool.ntp.org'
[17:57:13][C][sntp:057]:   Timezone: 'CET-1CEST,M3.5.0,M10.5.0/3'
[17:57:13][C][mdns:115]: mDNS:
[17:57:13][C][mdns:116]:   Hostname: wodomierz
[17:57:13][V][mdns:117]:   Services:
[17:57:13][V][mdns:119]:   - _esphomelib, _tcp, 6053
[17:57:13][V][mdns:121]:     TXT: version = 2023.10.6
[17:57:13][V][mdns:121]:     TXT: mac = c8f09e2e36d4
[17:57:13][V][mdns:121]:     TXT: platform = ESP32
[17:57:13][V][mdns:121]:     TXT: board = nodemcu-32s
[17:57:13][V][mdns:121]:     TXT: network = wifi
[17:57:13][V][mdns:121]:     TXT: api_encryption = Noise_NNpsk0_25519_ChaChaPoly_SHA256
[17:57:13][V][mdns:119]:   - _http, _tcp, 80
[17:57:13][C][ota:097]: Over-The-Air Updates:
[17:57:13][C][ota:098]:   Address: 10.0.0.45:3232
[17:57:13][C][ota:101]:   Using Password.
[17:57:13][C][api:139]: API Server:
[17:57:13][C][api:140]:   Address: 10.0.0.45:6053
[17:57:13][C][api:142]:   Using noise encryption: YES
[17:57:13][C][mqtt:133]: MQTT:
[17:57:13][C][mqtt:135]:   Server Address: 10.0.0.9:1883 (10.0.0.9)
[17:57:13][C][mqtt:136]:   Username: [redacted]
[17:57:13][C][mqtt:137]:   Client ID: [redacted]
[17:57:13][C][mqtt:139]:   Discovery prefix: 'homeassistant'
[17:57:13][C][mqtt:140]:   Discovery retain: YES
[17:57:13][C][mqtt:142]:   Topic Prefix: 'wodomierz'
[17:57:13][C][mqtt:144]:   Log Topic: 'wodomierz/debug'
[17:57:13][C][mqtt:147]:   Availability: 'wodomierz/status'
[17:57:13][C][mqtt.sensor:028]: MQTT Sensor 'LQI glowny':
[17:57:13][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/lqi_glowny/state'
[17:57:13][C][mqtt.sensor:028]: MQTT Sensor 'RSSI glowny':
[17:57:13][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/rssi_glowny/state'
[17:57:13][C][mqtt.sensor:028]: MQTT Sensor 'ESP_wodomierz_glowny':
[17:57:13][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/esp_wodomierz_glowny/state'
[17:57:13][C][mqtt.sensor:028]: MQTT Sensor 'LQI ogrodowy':
[17:57:13][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/lqi_ogrodowy/state'
[17:57:13][C][mqtt.sensor:028]: MQTT Sensor 'RSSI ogrodowy':
[17:57:13][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/rssi_ogrodowy/state'
[17:57:13][C][mqtt.sensor:028]: MQTT Sensor 'ESP_wodomierz_ogrodowy':
[17:57:13][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/esp_wodomierz_ogrodowy/state'
[17:57:13][C][wmbus:412]: wM-Bus v2.3.1:
[17:57:13][C][wmbus:414]:   Clients:
[17:57:13][C][wmbus:421]:     wmbusmeters: 10.0.0.222:7227 TCP [rtl-wmbus]
[17:57:13][C][wmbus:429]:   CC1101 SPI bus:
[17:57:13][C][wmbus:430]:     MOSI Pin: GPIO32
[17:57:13][C][wmbus:431]:     MISO Pin: GPIO19
[17:57:13][C][wmbus:432]:     CLK Pin:  GPIO33
[17:57:13][C][wmbus:433]:     CS Pin:   GPIO23
[17:57:13][C][wmbus:434]:     GDO0 Pin: GPIO22
[17:57:13][C][wmbus:435]:     GDO2 Pin: GPIO21
[17:57:13][C][wmbus:442]:   Available drivers:  amiplus, apator08, apator162, apatoreitn, bmeters, c5isf, compact5, dme07, elf, evo868, fhkvdataiii, hydrocalm3, hydrus, iperl, itron, izar, mkradio3, mkradio4, qheat, qwater, sharky774, topaseskr, ultrimis, unismart, vario451
[17:57:13][C][wmbus:460]:   Meter:
[17:57:13][C][wmbus:461]:     ID: 397445 [0x00061085]
[17:57:13][C][wmbus:462]:     Type: apator162
[17:57:13][C][wmbus:463]:     Mode: T1
[17:57:13][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:57:13][C][wmbus:466]:     Sensor 'LQI ogrodowy'
[17:57:14][C][wmbus:466]:       Device Class: 'signal_strength'
[17:57:14][C][wmbus:466]:       State Class: 'measurement'
[17:57:14][C][wmbus:466]:       Unit of Measurement: ''
[17:57:14][C][wmbus:466]:       Accuracy Decimals: 0
[17:57:14][C][wmbus:466]:     Sensor 'RSSI ogrodowy'
[17:57:14][C][wmbus:466]:       Device Class: 'signal_strength'
[17:57:14][C][wmbus:466]:       State Class: 'measurement'
[17:57:14][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:57:14][C][wmbus:466]:       Accuracy Decimals: 0
[17:57:14][C][wmbus:466]:     Sensor 'ESP_wodomierz_ogrodowy'
[17:57:14][C][wmbus:466]:       Device Class: 'water'
[17:57:14][C][wmbus:466]:       State Class: 'total_increasing'
[17:57:14][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:57:14][C][wmbus:466]:       Accuracy Decimals: 3
[17:57:14][C][wmbus:466]:       Icon: 'mdi:water'
[17:57:14][V][wmbus:466]:       Force Update: YES
[17:57:14][C][wmbus:460]:   Meter:
[17:57:14][C][wmbus:461]:     ID: 1206360 [0x00126858]
[17:57:14][C][wmbus:462]:     Type: apator162
[17:57:14][C][wmbus:463]:     Mode: T1
[17:57:14][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:57:14][C][wmbus:466]:     Sensor 'LQI glowny'
[17:57:14][C][wmbus:466]:       Device Class: 'signal_strength'
[17:57:14][C][wmbus:466]:       State Class: 'measurement'
[17:57:14][C][wmbus:466]:       Unit of Measurement: ''
[17:57:14][C][wmbus:466]:       Accuracy Decimals: 0
[17:57:14][C][wmbus:466]:     Sensor 'RSSI glowny'
[17:57:14][C][wmbus:466]:       Device Class: 'signal_strength'
[17:57:14][C][wmbus:466]:       State Class: 'measurement'
[17:57:14][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:57:14][C][wmbus:466]:       Accuracy Decimals: 0
[17:57:14][C][wmbus:466]:     Sensor 'ESP_wodomierz_glowny'
[17:57:14][C][wmbus:466]:       Device Class: 'water'
[17:57:14][C][wmbus:466]:       State Class: 'total_increasing'
[17:57:14][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:57:14][C][wmbus:466]:       Accuracy Decimals: 3
[17:57:14][C][wmbus:466]:       Icon: 'mdi:water'
[17:57:14][V][wmbus:466]:       Force Update: YES
[17:57:15][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=253219 (now=263219)
[17:57:21][I][wmbus:084]: Using driver 'apator162' for ID [0x00126858] RSSI: -47 dBm LQI: 128 Mode: T1 T: 6E4401065868120005077A15006085380092B0F042EE7145724D79516C485A51888C60F93DD1B55FE63ACDB220981604D4F4CBEE8414DD8CCCBC6C08489ABC59ECE237D2524C311B98E834082476EF5113AC3EA655261414B5968A53D5E6ADA6BABE31D4B967BAA420892347F9FC7E (111)
[17:57:21][VV][wmbus:086]: Key defined, trying to decrypt telegram ...
[17:57:21][VV][wmbus:286]: Decrypting: tpl-ci '7A' tpl-cfg '8560' offset '15
[17:57:21][VV][wmbus:334]: 2F2f check after decrypting - OK
[17:57:21][D][wmbus:091]: Decrypted T : 6E4401065868120005077A150060852F2F0F259D6B979E000043340D842882149647EB1340000010D4CC06007B01BE8206000434060095D60500B46B05006F59ECE237D2524C311B98E834082476EF5113AC3EA655261414B5968A53D5E6ADA6BABE31D4B967BAA420892347F9FC7E (111)
[17:57:21][VV][wmbus-drivers:035]: Value added to map
[17:57:21][V][sensor:043]: 'LQI glowny': Received new state 128.000000
[17:57:21][D][sensor:094]: 'LQI glowny': Sending state 128.00000  with 0 decimals of accuracy
[17:57:21][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:57:21][V][json:058]: Size after shrink 72 bytes
[17:57:21][V][mqtt:474]: Publish(topic='wodomierz/sensor/lqi_glowny/state' payload='128' retain=1)
[17:57:21][V][sensor:043]: 'RSSI glowny': Received new state -47.000000
[17:57:21][D][sensor:094]: 'RSSI glowny': Sending state -47.00000 dBm with 0 decimals of accuracy
[17:57:21][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:57:21][V][json:058]: Size after shrink 76 bytes
[17:57:21][V][mqtt:474]: Publish(topic='wodomierz/sensor/rssi_glowny/state' payload='-47' retain=1)
[17:57:21][VV][wmbus:122]: Publishing 'total_water_m3' = 445.6520
[17:57:21][V][sensor:043]: 'ESP_wodomierz_glowny': Received new state 445.652008
[17:57:21][VV][sensor.filter:014]: Filter(0x3ffb3a60)::input(445.652008)
[17:57:21][VV][sensor.filter:021]: Filter(0x3ffb3a60)::output(212.646011) -> SENSOR
[17:57:21][D][sensor:094]: 'ESP_wodomierz_glowny': Sending state 212.64601 m³ with 3 decimals of accuracy
[17:57:21][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:57:21][V][json:058]: Size after shrink 88 bytes
[17:57:21][V][mqtt:474]: Publish(topic='wodomierz/sensor/esp_wodomierz_glowny/state' payload='212.646' retain=1)
[17:57:21][VV][wmbus:227]: Will send RTLWMBUS telegram to 10.0.0.222:7227 via TCP
[17:57:21][W][component:214]: Component wmbus took a long time for an operation (0.39 s).
[17:57:21][W][component:215]: Components should block for at most 20-30ms.
[17:57:25][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=263219 (now=273219)
[17:57:26][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=214918 (now=274918)
[17:57:32][VV][api.service:540]: on_ping_request: PingRequest {}
[17:57:32][VV][api.service:043]: send_ping_response: PingResponse {}
[17:57:35][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=273219 (now=283219)
[17:57:45][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=283219 (now=293220)
[17:57:52][I][ota:117]: Boot seems successful, resetting boot loop counter.
[17:57:52][VV][esp32.preferences:040]: s_pending_save: key: 233825507, len: 4
[17:57:52][D][esp32.preferences:114]: Saving 1 preferences to flash...
[17:57:52][VV][esp32.preferences:123]: Checking if NVS data 233825507 has changed
[17:57:52][V][esp32.preferences:126]: sync: key: 233825507, len: 4
[17:57:52][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[17:57:52][W][component:214]: Component ota took a long time for an operation (0.08 s).
[17:57:52][W][component:215]: Components should block for at most 20-30ms.
[17:57:53][VV][api.service:540]: on_ping_request: PingRequest {}
[17:57:53][VV][api.service:043]: send_ping_response: PingResponse {}
[17:57:55][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=293219 (now=303219)
[17:58:05][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=303219 (now=313220)
[17:58:13][VV][api.service:540]: on_ping_request: PingRequest {}
[17:58:13][VV][api.service:043]: send_ping_response: PingResponse {}
[17:58:15][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=313219 (now=323220)

a jak użyć
clients:
- name: “wmbusmeters”
ip_address: “10.0.0.1”
port: 7227

To jest pytanie?
Widzę że masz to już w konfigu. Szczegółowa instrukcja jest na githubie.

tak to jest pytanie
wkleiłem dzisiaj ale nie szukałem jak użyć ponieważ mój router ma takie IP

Edit:

logi wersja 2023.11.1
nie odczytuje

INFO ESPHome 2023.11.1
INFO Reading configuration /config/wodomierz.yaml...
INFO Updating https://github.com/SzczepanLeon/esphome-components.git@2.3.1
INFO Detected timezone 'Etc/UTC'
INFO Starting log output from 10.0.0.45 using esphome API
INFO Successfully connected to 10.0.0.45 in 0.094s
INFO Successful handshake with 10.0.0.45 in 0.154s
[17:05:01][I][app:102]: ESPHome version 2023.11.1 compiled on Nov 29 2023, 17:03:27
[17:05:01][C][wifi:559]: WiFi:
[17:05:01][C][wifi:391]:   Local MAC: C8:F0:9E:2E:36:D4
[17:05:01][C][wifi:396]:   SSID: [redacted]
[17:05:01][C][wifi:397]:   IP Address: 10.0.0.45
[17:05:01][C][wifi:399]:   BSSID: [redacted]
[17:05:01][C][wifi:400]:   Hostname: 'wodomierz'
[17:05:01][C][wifi:402]:   Signal strength: -29 dB ▂▄▆█
[17:05:01][V][wifi:404]:   Priority: 0.0
[17:05:01][C][wifi:406]:   Channel: 2
[17:05:01][C][wifi:407]:   Subnet: 255.255.255.0
[17:05:01][C][wifi:408]:   Gateway: 10.0.0.1
[17:05:01][C][wifi:409]:   DNS1: 8.8.8.8
[17:05:01][C][wifi:410]:   DNS2: 8.8.4.4
[17:05:01][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=38184 (now=48240)
[17:05:01][C][logger:416]: Logger:
[17:05:01][C][logger:417]:   Level: VERY_VERBOSE
[17:05:01][C][logger:418]:   Log Baud Rate: 115200
[17:05:01][C][logger:420]:   Hardware UART: UART0
[17:05:01][C][captive_portal:088]: Captive Portal:
[17:05:01][C][web_server:168]: Web Server:
[17:05:01][C][web_server:169]:   Address: 10.0.0.45:80
[17:05:01][C][sntp:053]: SNTP Time:
[17:05:01][C][sntp:054]:   Server 1: '0.pool.ntp.org'
[17:05:01][C][sntp:055]:   Server 2: '1.pool.ntp.org'
[17:05:01][C][sntp:056]:   Server 3: '2.pool.ntp.org'
[17:05:01][C][sntp:057]:   Timezone: 'UTC0'
[17:05:01][C][mdns:115]: mDNS:
[17:05:01][C][mdns:116]:   Hostname: wodomierz
[17:05:01][V][mdns:117]:   Services:
[17:05:01][V][mdns:119]:   - _esphomelib, _tcp, 6053
[17:05:01][V][mdns:121]:     TXT: version = 2023.11.1
[17:05:01][V][mdns:121]:     TXT: mac = c8f09e2e36d4
[17:05:01][V][mdns:121]:     TXT: platform = ESP32
[17:05:01][V][mdns:121]:     TXT: board = nodemcu-32s
[17:05:01][V][mdns:121]:     TXT: network = wifi
[17:05:01][V][mdns:121]:     TXT: api_encryption = Noise_NNpsk0_25519_ChaChaPoly_SHA256
[17:05:01][V][mdns:119]:   - _http, _tcp, 80
[17:05:01][C][ota:097]: Over-The-Air Updates:
[17:05:01][C][ota:098]:   Address: 10.0.0.45:3232
[17:05:01][C][ota:101]:   Using Password.
[17:05:01][C][api:139]: API Server:
[17:05:01][C][api:140]:   Address: 10.0.0.45:6053
[17:05:01][C][api:142]:   Using noise encryption: YES
[17:05:01][C][mqtt:133]: MQTT:
[17:05:01][C][mqtt:135]:   Server Address: 10.0.0.9:1883 (10.0.0.9)
[17:05:01][C][mqtt:136]:   Username: [redacted]
[17:05:01][C][mqtt:137]:   Client ID: [redacted]
[17:05:01][C][mqtt:139]:   Discovery prefix: 'homeassistant'
[17:05:01][C][mqtt:140]:   Discovery retain: YES
[17:05:01][C][mqtt:142]:   Topic Prefix: 'wodomierz'
[17:05:01][C][mqtt:144]:   Log Topic: 'wodomierz/debug'
[17:05:01][C][mqtt:147]:   Availability: 'wodomierz/status'
[17:05:01][C][mqtt.sensor:028]: MQTT Sensor 'LQI glowny':
[17:05:01][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/lqi_glowny/state'
[17:05:01][C][mqtt.sensor:028]: MQTT Sensor 'RSSI glowny':
[17:05:01][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/rssi_glowny/state'
[17:05:01][C][mqtt.sensor:028]: MQTT Sensor 'ESP_wodomierz_glowny':
[17:05:01][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/esp_wodomierz_glowny/state'
[17:05:01][C][mqtt.sensor:028]: MQTT Sensor 'LQI ogrodowy':
[17:05:01][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/lqi_ogrodowy/state'
[17:05:01][C][mqtt.sensor:028]: MQTT Sensor 'RSSI ogrodowy':
[17:05:01][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/rssi_ogrodowy/state'
[17:05:01][C][mqtt.sensor:028]: MQTT Sensor 'ESP_wodomierz_ogrodowy':
[17:05:01][C][mqtt.sensor:032]:   State Topic: 'wodomierz/sensor/esp_wodomierz_ogrodowy/state'
[17:05:01][C][wmbus:412]: wM-Bus v2.3.1:
[17:05:01][C][wmbus:414]:   Clients:
[17:05:01][C][wmbus:421]:     wmbusmeters: 10.0.0.222:7227 TCP [rtl-wmbus]
[17:05:01][C][wmbus:429]:   CC1101 SPI bus:
[17:05:01][C][wmbus:430]:     MOSI Pin: GPIO32
[17:05:01][C][wmbus:431]:     MISO Pin: GPIO19
[17:05:01][C][wmbus:432]:     CLK Pin:  GPIO33
[17:05:01][C][wmbus:433]:     CS Pin:   GPIO23
[17:05:01][C][wmbus:434]:     GDO0 Pin: GPIO22
[17:05:01][C][wmbus:435]:     GDO2 Pin: GPIO21
[17:05:01][C][wmbus:442]:   Available drivers:  amiplus, apator08, apator162, apatoreitn, bmeters, c5isf, compact5, dme07, elf, evo868, fhkvdataiii, hydrocalm3, hydrus, iperl, itron, izar, mkradio3, mkradio4, qheat, qwater, sharky774, topaseskr, ultrimis, unismart, vario451
[17:05:01][C][wmbus:460]:   Meter:
[17:05:01][C][wmbus:461]:     ID: 397445 [0x00061085]
[17:05:01][C][wmbus:462]:     Type: apator162
[17:05:01][C][wmbus:463]:     Mode: T1
[17:05:01][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:05:01][C][wmbus:466]:     Sensor 'LQI ogrodowy'
[17:05:02][C][wmbus:466]:       Device Class: 'signal_strength'
[17:05:02][C][wmbus:466]:       State Class: 'measurement'
[17:05:02][C][wmbus:466]:       Unit of Measurement: ''
[17:05:02][C][wmbus:466]:       Accuracy Decimals: 0
[17:05:02][C][wmbus:466]:     Sensor 'RSSI ogrodowy'
[17:05:02][C][wmbus:466]:       Device Class: 'signal_strength'
[17:05:02][C][wmbus:466]:       State Class: 'measurement'
[17:05:02][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:05:02][C][wmbus:466]:       Accuracy Decimals: 0
[17:05:02][C][wmbus:466]:     Sensor 'ESP_wodomierz_ogrodowy'
[17:05:02][C][wmbus:466]:       Device Class: 'water'
[17:05:02][C][wmbus:466]:       State Class: 'total_increasing'
[17:05:02][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:05:02][C][wmbus:466]:       Accuracy Decimals: 3
[17:05:02][C][wmbus:466]:       Icon: 'mdi:water'
[17:05:02][V][wmbus:466]:       Force Update: YES
[17:05:02][C][wmbus:460]:   Meter:
[17:05:02][C][wmbus:461]:     ID: 1206360 [0x00126858]
[17:05:02][C][wmbus:462]:     Type: apator162
[17:05:02][C][wmbus:463]:     Mode: T1
[17:05:02][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:05:02][C][wmbus:466]:     Sensor 'LQI glowny'
[17:05:02][C][wmbus:466]:       Device Class: 'signal_strength'
[17:05:02][C][wmbus:466]:       State Class: 'measurement'
[17:05:02][C][wmbus:466]:       Unit of Measurement: ''
[17:05:02][C][wmbus:466]:       Accuracy Decimals: 0
[17:05:02][C][wmbus:466]:     Sensor 'RSSI glowny'
[17:05:02][C][wmbus:466]:       Device Class: 'signal_strength'
[17:05:02][C][wmbus:466]:       State Class: 'measurement'
[17:05:02][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:05:02][C][wmbus:466]:       Accuracy Decimals: 0
[17:05:02][C][wmbus:466]:     Sensor 'ESP_wodomierz_glowny'
[17:05:02][C][wmbus:466]:       Device Class: 'water'
[17:05:02][C][wmbus:466]:       State Class: 'total_increasing'
[17:05:02][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:05:02][C][wmbus:466]:       Accuracy Decimals: 3
[17:05:02][C][wmbus:466]:       Icon: 'mdi:water'
[17:05:02][V][wmbus:466]:       Force Update: YES
[17:05:11][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=48184 (now=58184)
[17:05:21][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=58184 (now=68187)
[17:05:27][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:05:27][V][json:058]: Size after shrink 92 bytes
[17:05:27][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:05:27][V][json:058]: Size after shrink 104 bytes
[17:05:27][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:05:27][V][json:058]: Size after shrink 104 bytes
[17:05:27][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:05:27][V][json:058]: Size after shrink 124 bytes
[17:05:28][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:05:28][V][json:058]: Size after shrink 104 bytes
[17:05:28][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:05:28][V][json:058]: Size after shrink 108 bytes
[17:05:28][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:05:28][V][json:058]: Size after shrink 124 bytes
[17:05:31][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=68184 (now=78184)
[17:05:41][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=78184 (now=88185)
[17:05:44][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=31378 (now=91380)
[17:05:51][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=88184 (now=98184)
[17:06:01][VV][api.connection:130]: Sending keepalive PING...
[17:06:01][VV][api.service:037]: send_ping_request: PingRequest {}
[17:06:01][VV][api.service:567]: on_ping_response: PingResponse {}
[17:06:01][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=98184 (now=108185)
[17:06:11][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=108184 (now=118185)
[17:06:21][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=118184 (now=128186)
[17:06:31][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=128184 (now=138187)
[17:06:41][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=138184 (now=148185)
[17:06:44][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=91378 (now=151378)
[17:06:51][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=148184 (now=158185)
[17:07:01][VV][api.connection:130]: Sending keepalive PING...
[17:07:01][VV][api.service:037]: send_ping_request: PingRequest {}
[17:07:01][VV][api.service:567]: on_ping_response: PingResponse {}
[17:07:01][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=158184 (now=168185)
[17:07:11][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=168184 (now=178184)
[17:07:21][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=178184 (now=188185)
[17:07:31][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=188184 (now=198184)
[17:07:41][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=198184 (now=208185)
[17:07:44][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=151378 (now=211379)
[17:07:51][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=208184 (now=218185)
[17:08:01][VV][api.connection:130]: Sending keepalive PING...
[17:08:01][VV][api.service:037]: send_ping_request: PingRequest {}
[17:08:01][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=218184 (now=228200)
[17:08:01][VV][api.service:567]: on_ping_response: PingResponse {}
[17:08:11][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=228184 (now=238188)
[17:08:21][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=238184 (now=248187)
[17:08:31][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=248184 (now=258185)
[17:08:41][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=258184 (now=268186)
[17:08:44][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=211378 (now=271379)
[17:08:51][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=268184 (now=278185)
[17:09:01][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=278184 (now=288185)
[17:09:01][VV][api.connection:130]: Sending keepalive PING...
[17:09:01][VV][api.service:037]: send_ping_request: PingRequest {}
[17:09:01][VV][api.service:567]: on_ping_response: PingResponse {}
[17:09:11][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=288184 (now=298186)
[17:09:13][I][ota:117]: Boot seems successful, resetting boot loop counter.
[17:09:13][VV][esp32.preferences:040]: s_pending_save: key: 233825507, len: 4
[17:09:13][D][esp32.preferences:114]: Saving 1 preferences to flash...
[17:09:13][VV][esp32.preferences:123]: Checking if NVS data 233825507 has changed
[17:09:13][V][esp32.preferences:126]: sync: key: 233825507, len: 4
[17:09:13][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[17:09:13][W][component:214]: Component ota took a long time for an operation (0.08 s).
[17:09:13][W][component:215]: Components should block for at most 20-30ms.
[17:09:21][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=298184 (now=308184)
[17:09:31][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=308184 (now=318184)
[17:09:41][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=318184 (now=328184)
[17:09:44][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=271378 (now=331378)
[17:09:51][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=328184 (now=338186)
[17:10:01][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=338184 (now=348184)
[17:10:01][VV][api.connection:130]: Sending keepalive PING...
[17:10:01][VV][api.service:037]: send_ping_request: PingRequest {}
[17:10:01][VV][api.service:567]: on_ping_response: PingResponse {}
[17:10:11][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=348184 (now=358184)
[17:10:21][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=358184 (now=368184)
[17:10:31][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=368184 (now=378184)
[17:10:41][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=378184 (now=388185)
[17:10:44][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=331378 (now=391378)
[17:10:51][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=388184 (now=398186)

A bez MQTT, coś się zmieniło?

bez zmian w wersji 2023.11.1

INFO Waiting for result...
INFO OTA successful
INFO Successfully uploaded program.
INFO Starting log output from 10.0.0.45 using esphome API
INFO Successfully connected to 10.0.0.45 in 7.368s
INFO Successful handshake with 10.0.0.45 in 0.367s
[17:17:33][I][app:102]: ESPHome version 2023.11.1 compiled on Nov 29 2023, 17:16:44
[17:17:33][C][wifi:559]: WiFi:
[17:17:33][C][wifi:391]:   Local MAC: C8:F0:9E:2E:36:D4
[17:17:33][C][wifi:396]:   SSID: [redacted]
[17:17:33][C][wifi:397]:   IP Address: 10.0.0.45
[17:17:33][C][wifi:399]:   BSSID: [redacted]
[17:17:33][C][wifi:400]:   Hostname: 'wodomierz'
[17:17:33][C][wifi:402]:   Signal strength: -33 dB ▂▄▆█
[17:17:33][V][wifi:404]:   Priority: 0.0
[17:17:33][C][wifi:406]:   Channel: 2
[17:17:33][C][wifi:407]:   Subnet: 255.255.255.0
[17:17:33][C][wifi:408]:   Gateway: 10.0.0.1
[17:17:33][C][wifi:409]:   DNS1: 8.8.8.8
[17:17:33][C][wifi:410]:   DNS2: 8.8.4.4
[17:17:33][C][logger:416]: Logger:
[17:17:33][C][logger:417]:   Level: VERY_VERBOSE
[17:17:33][C][logger:418]:   Log Baud Rate: 115200
[17:17:33][C][logger:420]:   Hardware UART: UART0
[17:17:33][C][captive_portal:088]: Captive Portal:
[17:17:33][C][web_server:168]: Web Server:
[17:17:33][C][web_server:169]:   Address: 10.0.0.45:80
[17:17:33][C][sntp:053]: SNTP Time:
[17:17:33][C][sntp:054]:   Server 1: '0.pool.ntp.org'
[17:17:33][C][sntp:055]:   Server 2: '1.pool.ntp.org'
[17:17:33][C][sntp:056]:   Server 3: '2.pool.ntp.org'
[17:17:33][C][sntp:057]:   Timezone: 'UTC0'
[17:17:33][C][mdns:115]: mDNS:
[17:17:33][C][mdns:116]:   Hostname: wodomierz
[17:17:33][V][mdns:117]:   Services:
[17:17:33][V][mdns:119]:   - _esphomelib, _tcp, 6053
[17:17:33][V][mdns:121]:     TXT: version = 2023.11.1
[17:17:33][V][mdns:121]:     TXT: mac = c8f09e2e36d4
[17:17:33][V][mdns:121]:     TXT: platform = ESP32
[17:17:33][V][mdns:121]:     TXT: board = nodemcu-32s
[17:17:33][V][mdns:121]:     TXT: network = wifi
[17:17:33][V][mdns:121]:     TXT: api_encryption = Noise_NNpsk0_25519_ChaChaPoly_SHA256
[17:17:33][V][mdns:119]:   - _http, _tcp, 80
[17:17:33][C][ota:097]: Over-The-Air Updates:
[17:17:33][C][ota:098]:   Address: 10.0.0.45:3232
[17:17:33][C][ota:101]:   Using Password.
[17:17:33][C][api:139]: API Server:
[17:17:33][C][api:140]:   Address: 10.0.0.45:6053
[17:17:33][C][api:142]:   Using noise encryption: YES
[17:17:33][C][wmbus:412]: wM-Bus v2.3.1:
[17:17:33][C][wmbus:429]:   CC1101 SPI bus:
[17:17:33][C][wmbus:430]:     MOSI Pin: GPIO32
[17:17:33][C][wmbus:431]:     MISO Pin: GPIO19
[17:17:33][C][wmbus:432]:     CLK Pin:  GPIO33
[17:17:33][C][wmbus:433]:     CS Pin:   GPIO23
[17:17:33][C][wmbus:434]:     GDO0 Pin: GPIO22
[17:17:33][C][wmbus:435]:     GDO2 Pin: GPIO21
[17:17:33][C][wmbus:442]:   Available drivers:  amiplus, apator08, apator162, apatoreitn, bmeters, c5isf, compact5, dme07, elf, evo868, fhkvdataiii, hydrocalm3, hydrus, iperl, itron, izar, mkradio3, mkradio4, qheat, qwater, sharky774, topaseskr, ultrimis, unismart, vario451
[17:17:33][C][wmbus:460]:   Meter:
[17:17:33][C][wmbus:461]:     ID: 397445 [0x00061085]
[17:17:34][C][wmbus:462]:     Type: apator162
[17:17:34][C][wmbus:463]:     Mode: T1
[17:17:34][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:17:34][C][wmbus:466]:     Sensor 'LQI ogrodowy'
[17:17:34][C][wmbus:466]:       Device Class: 'signal_strength'
[17:17:34][C][wmbus:466]:       State Class: 'measurement'
[17:17:34][C][wmbus:466]:       Unit of Measurement: ''
[17:17:34][C][wmbus:466]:       Accuracy Decimals: 0
[17:17:34][C][wmbus:466]:     Sensor 'RSSI ogrodowy'
[17:17:34][C][wmbus:466]:       Device Class: 'signal_strength'
[17:17:34][C][wmbus:466]:       State Class: 'measurement'
[17:17:34][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:17:34][C][wmbus:466]:       Accuracy Decimals: 0
[17:17:34][C][wmbus:466]:     Sensor 'ESP_wodomierz_ogrodowy'
[17:17:34][C][wmbus:466]:       Device Class: 'water'
[17:17:34][C][wmbus:466]:       State Class: 'total_increasing'
[17:17:34][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:17:34][C][wmbus:466]:       Accuracy Decimals: 3
[17:17:34][C][wmbus:466]:       Icon: 'mdi:water'
[17:17:34][V][wmbus:466]:       Force Update: YES
[17:17:34][C][wmbus:460]:   Meter:
[17:17:34][C][wmbus:461]:     ID: 1206360 [0x00126858]
[17:17:34][C][wmbus:462]:     Type: apator162
[17:17:34][C][wmbus:463]:     Mode: T1
[17:17:34][C][wmbus:464]:     Key: '00000000000000000000000000000000'
[17:17:34][C][wmbus:466]:     Sensor 'LQI glowny'
[17:17:34][C][wmbus:466]:       Device Class: 'signal_strength'
[17:17:34][C][wmbus:466]:       State Class: 'measurement'
[17:17:34][C][wmbus:466]:       Unit of Measurement: ''
[17:17:34][C][wmbus:466]:       Accuracy Decimals: 0
[17:17:34][C][wmbus:466]:     Sensor 'RSSI glowny'
[17:17:34][C][wmbus:466]:       Device Class: 'signal_strength'
[17:17:34][C][wmbus:466]:       State Class: 'measurement'
[17:17:34][C][wmbus:466]:       Unit of Measurement: 'dBm'
[17:17:34][C][wmbus:466]:       Accuracy Decimals: 0
[17:17:34][C][wmbus:466]:     Sensor 'ESP_wodomierz_glowny'
[17:17:34][C][wmbus:466]:       Device Class: 'water'
[17:17:34][C][wmbus:466]:       State Class: 'total_increasing'
[17:17:34][C][wmbus:466]:       Unit of Measurement: 'm³'
[17:17:34][C][wmbus:466]:       Accuracy Decimals: 3
[17:17:34][C][wmbus:466]:       Icon: 'mdi:water'
[17:17:34][V][wmbus:466]:       Force Update: YES
[17:17:42][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=7172 (now=17172)
[17:17:52][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=17172 (now=27173)
[17:18:02][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=27172 (now=37172)
[17:18:06][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:18:06][V][json:058]: Size after shrink 92 bytes
[17:18:06][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:18:06][V][json:058]: Size after shrink 104 bytes
[17:18:06][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:18:06][V][json:058]: Size after shrink 104 bytes
[17:18:06][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:18:06][V][json:058]: Size after shrink 124 bytes
[17:18:06][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:18:06][V][json:058]: Size after shrink 104 bytes
[17:18:06][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:18:06][V][json:058]: Size after shrink 108 bytes
[17:18:06][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:18:06][V][json:058]: Size after shrink 124 bytes
[17:18:12][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=37172 (now=47173)
[17:18:22][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=4294964321 (now=57025)
[17:18:22][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=47172 (now=57172)
[17:18:32][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=57172 (now=67172)
[17:18:33][VV][api.connection:130]: Sending keepalive PING...
[17:18:33][VV][api.service:037]: send_ping_request: PingRequest {}
[17:18:33][VV][api.service:567]: on_ping_response: PingResponse {}
[17:18:42][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=67172 (now=77173)
[17:18:52][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=77172 (now=87176)
[17:19:02][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=87172 (now=97176)
[17:19:12][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=97172 (now=107176)
[17:19:22][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=57025 (now=117026)
[17:19:22][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=107172 (now=117172)
[17:19:32][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=117172 (now=127173)
[17:19:33][VV][api.connection:130]: Sending keepalive PING...
[17:19:33][VV][api.service:037]: send_ping_request: PingRequest {}
[17:19:33][VV][api.service:567]: on_ping_response: PingResponse {}
[17:19:42][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=127172 (now=137172)
[17:19:52][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=137172 (now=147172)
[17:20:02][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=147172 (now=157172)
[17:20:02][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:20:02][V][json:058]: Size after shrink 92 bytes
[17:20:02][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:20:02][V][json:058]: Size after shrink 104 bytes
[17:20:02][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:20:02][V][json:058]: Size after shrink 104 bytes
[17:20:02][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:20:02][V][json:058]: Size after shrink 124 bytes
[17:20:02][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:20:02][V][json:058]: Size after shrink 104 bytes
[17:20:02][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:20:02][V][json:058]: Size after shrink 108 bytes
[17:20:02][V][json:038]: Attempting to allocate 512 bytes for JSON serialization
[17:20:02][V][json:058]: Size after shrink 124 bytes
[17:20:12][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=157172 (now=167174)
[17:20:22][VV][scheduler:226]: Running interval '' with interval=60000 last_execution=117025 (now=177025)
[17:20:22][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=167172 (now=177172)
[17:20:32][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=177172 (now=187173)
[17:20:33][VV][api.connection:130]: Sending keepalive PING...
[17:20:33][VV][api.service:037]: send_ping_request: PingRequest {}
[17:20:33][VV][api.service:567]: on_ping_response: PingResponse {}
[17:20:42][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=187172 (now=197172)
[17:20:52][VV][scheduler:226]: Running interval '' with interval=10000 last_execution=197172 (now=207172)

No to kopiemy głębiej.
Możesz wyzbierać logi “po kablu”?
Tylko z 2023.11.1 z pełnym YAMLem.

dodaj tylko jeszcze jednego klienta (IP dowolne):

  clients:
    - name: "wmbusmeters"
      ip_address: "10.0.0.1"
      port: 7227
      transport: UDP

Oraz dodatkowy log z 2023.11.1 bez sekcji sensors.

Możesz też podzielić się kodem C++ jaki został wygenerowany dla 2023.10 i 2023.11

2023.11.6 bez MQTT działa( Nie używam).

A jak dołożysz MQTT to przestanie działać?

Hej, pół dnia wczoraj straciłem na testy. To chyba zbieg okoliczności, że przestał być widoczny po aktualizacji. Obecnie również na wersji 11.4 nie działa. Z VERY_VERBOSE w logu nic nie ma. Ramki dla apator08 latają, a unismart jakby przepadł. Próbowałem bez sekcji sensors, z klientem i bez. Ten unismart jest na zewnątrz. Czy to możliwe, żeby z powodu mrozu skrócił się zasięg? Ktoś tu sprzedawał moduł z dodatkową zewnętrzną antenką, chyba zamówię. Najpierw jeszcze z laptopem przy skrzynce z licznikiem spróbuję.

To nie Ty straciłeś, tylko ja.

To w końcu jak to jest? Raz piszesz że nic nie działa potem że jednak tylko unismart.

Tak, wystarczy że napięcie w baterii spadło itp.

1 polubienie

Nic w kontekście unismarta, nakładki na liczniki zawsze działały. Dariusz ma podobny problem i wniósł kilka informacji, które mnie nie dotyczą. Jemu nie działają nakładki apator162. Cecha wspólna z moim uinsmartem, a czym różnią się od działającego apator08, to szyfrowanie. Dla apator08 nie podajemy klucza. Ale to prawdopodobnie fałszywy trop skoro u mnie problem może być z zasięgiem (ok 9m przez ocieploną ścianę).
Generalnie podczas testów napotkałem się na dziwne problemy z samym ESPHome. Raz zresetował mi HA. Wyskoczyło mi w logu “cośtam diconecting cośctam” i w tym samy momencie HA zaczął się na nowo uruchamiać. W logach czysto. Inny problem, który wydarzył się dwukrotnie, to samoczynna aktualizacja ESPHome w nocy (pierwszy raz ok 4:30, za drugim ok 2:30) kiedy smacznie spałem. Wcześniej robiłem downgrade do wersji 11.4 bo liczyłem, że odzyskam odczyty z unismarta. Znam godziny bo przy upgrade zrobiły się backup’y.

Tak to jest z komórki odpisywać - pomyliłem osoby :frowning:

Tak czy inaczej to najlepiej wyzbierać logi po kablu (powinno być więcej informacji z libki odbierającej dane z CC1101 oraz:

  1. Czy wmBus-lib coś odbiera?
  2. Czy sekcja sensor ma znaczenie? Dlatego polecam dodać client z UDP aby coś komponent robił z odebranym telegramem, chociaż i tak w ostateczności powinien być log o nieznanym mierniku.
  3. Czy inne dodatki mają znaczenie? Np MQTT.

Na “teraz” wydaj mi się że coś jest źle w okolicach “schedulowania” tego komponentu.
Dlatego ważne jest potwierdzenie w logach że istnieje taka kombinacja YAMLa przy której telegramy są odbierane (nawet bez sekcji sensor).

Dlaczego tak się dzieje? Nie mam pojęcia co tam w ESPHome pozmieniali. Pamiętajcie że to jest nieoficjalny komponent.

Możliwe też że po przeniesieniu na inne piny zadziała (zgaduje).

Śledziłem wątek Dariusza i z sekcją client z UDP też próbowałem. Dane z apator08 były wysyłane. Pojawiał się dodatkowy pojedynczy wpis w logu, że poleciało.

Nigdy nie instalowałem MQTT. Raczej unikam tego dodatku, po tym jak widziałem te opuchnięte bazy danych u innych. U mnie backupy nie przekraczają 200MB od kilku lat. Dzięki temu moje RPI4 śmiga na karcie jak szalone z obciążeniem procka 4%.

Z tym schedule’m jest coś na rzeczy. Dane z apator08 też przychodzą jakoś nieregularnie. A jak patrzę na wykres unismarta jak działał, to widzę przerwy, jakby się przytykał. Czyli widać zbyt duże skoki.

Edit:

Zrobię to jak tylko wrócę do domu. Czy muszę coś dodatkowo zrobić/skonfigurować aby ściągać logi “po kablu”?

Wróżę ze szklanej kuli, ale ta sytuacja wygląda na taką w której pomyliłeś przyczynę i skutek - prawdopodobnie połączenia zostały zamknięte z powodu restartu HA

Za aktualizacje Dodatków odpowiada bezpośrednio Supervisor (a nie HA) oraz ustawienia samego Dodatku (autoaktualizacje mają być wyłączone aby nie było takich niespodzianek).

A czytałeś instrukcję obsługi tej kuli :upside_down_face: Kto wtedy zresetował HA?
Ja nie… miałem na tapecie ESPHome

Mało rozsądne jest włączanie automatycznej aktualizacji. Wolę zapoznać się z “breaking changes” zanim cokolwiek zaktualizuję. A w szczególności ESPHome, którym odczytuję temperatury w pokojach do sterowania ogrzewaniem.

Pokaż gdzie napisałem, że HA zaktualizowało mi ESPHome.
Rozumiem, że szukałeś okazji, aby podzielić się swoją rozległą wiedzą, ale nie traktuj ludzi jakby urodzili się wczoraj.