Hi,
I have come to a dead end trying to communicate with my device here: Wavin-Sentio-mqtt/TM42007-Sentio-Modbus_Warmafloor.pdf at main · nic6911/Wavin-Sentio-mqtt · GitHub
I have made a simple code for a start:
esphome:
name: sentio
platform: ESP8266
board: esp01_1m
project:
name: "home.wavin_sentio_gulvvarme"
version: "1.0.0"
# Enable logging
logger:
baud_rate: 0
# Enable Home Assistant API
api:
ota:
password: "945ac67ddcae11048f6a488672b6aadb"
wifi:
ssid: ${ssid_set}
password: ${password_set}
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Sentio Fallback Hotspot"
password: "12345678"
captive_portal:
uart:
rx_pin: RX
tx_pin: TX
baud_rate: 19200
id: uart_modbus
stop_bits: 1
modbus:
id: modbus_id
uart_id: uart_modbus
modbus_controller:
id: sentio_modbus_controller
address: 1
modbus_id: modbus_id
update_interval: 10s
sensor:
- platform: modbus_controller
modbus_controller_id: sentio_modbus_controller
name: "Room1"
id: temp_room1
unit_of_measurement: °C
accuracy_decimals: 1
register_type: read
address: 0x00104
filters:
- multiply: 0.01
I am using this exact module on other devices where the code is of course different - so I know the hardware works and the setup of modbus etc is also matching the module.
But I simply cannot get through to the Sentio modbus slave… Every second I get the response:
[W][modbus:096]: Modbus CRC Check failed! 3849!=3861
And at my update interval rate I get:
[D][modbus_controller:032]: Modbus command to device=1 register=0x104 countdown=0 no response received - removed from send queue
I am lost here… I have only found 1 having a similar problem, but there was no solution to it or at least it wasn’t posted…
Any help would be greatly appreciated !
Thanks !