add KinCony energy meter to home assistant by Raspberry Pi CM4 RS485 - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=1) +--- Forum: KC868-Server Raspberry Pi4 local server (https://www.kincony.com/forum/forumdisplay.php?fid=17) +--- Thread: add KinCony energy meter to home assistant by Raspberry Pi CM4 RS485 (/showthread.php?tid=2769) |
add KinCony energy meter to home assistant by Raspberry Pi CM4 RS485 - admin - 04-10-2023 KinCony-energy-meter-rs485-modbus-protocol.pdf (Size: 120.39 KB / Downloads: 241) modbus: - name: hub1 type: serial baudrate: 9600 bytesize: 8 method: rtu parity: N port: /dev/ttyS0 stopbits: 1 sensors: - name: meter-voltage slave: 1 address: 100 input_type: holding data_type: float32 count: 2 precision: 2 unit_of_measurement: V device_class: voltage - name: meter-current slave: 1 address: 106 input_type: holding data_type: float32 count: 2 precision: 2 unit_of_measurement: A device_class: current - name: meter-power slave: 1 address: 118 input_type: holding data_type: float32 count: 2 precision: 2 unit_of_measurement: kW device_class: power - name: meter-factor slave: 1 address: 142 input_type: holding data_type: float32 count: 2 precision: 2 # unit_of_measurement: device_class: power_factor - name: meter-frequency slave: 1 address: 144 input_type: holding data_type: float32 count: 2 precision: 2 unit_of_measurement: Hz device_class: frequency - name: meter-consumption slave: 1 address: 0 input_type: holding data_type: float32 count: 2 precision: 2 unit_of_measurement: kWh device_class: energy_storage |