DomiStyle / esphome-dlms-meter

ESPHome component to read out DLMS smart meters via M-Bus
MIT License
94 stars 23 forks source link

Tinetz Honeywell funktioniert -> Achtung Anzahl der Stellen #37

Open ert666 opened 5 months ago

ert666 commented 5 months ago

Hallo, Tinetz Honeywell for customers with PV works after some try & error with UART. There is a 16 digit key so don´t forget to expand the uint8_key and set the key to 16

  uint8_t key[] = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0x00, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16};
  dlms_meter->set_key(key, **16**); // Pass your decryption key and key length here

THX!

ert666 commented 5 months ago

I get about 10+ bad values per day that are way too high. There are different threads about that and the Log says:

[20:35:26][E][espdm:200]: OBIS: Unsupported OBIS header length

I added filters to all platform templates so the bad values don´t reach HASSIO

i.e.

  - platform: template
    id: meter01_active_power_plus
    name: meter01_active_power_plus
    unit_of_measurement: W
    accuracy_decimals: 0
    device_class: "power"
    state_class: "measurement"
    filters:
      - median:
          window_size: 7
          send_every: 4
Screenshot 2024-02-08 203941