[modbus_controller] add missing skip_updates (#3063)

This commit is contained in:
Martin
2022-01-17 21:05:13 +01:00
committed by Jesse Hills
parent 348f880e15
commit 7b03e07908
2 changed files with 4 additions and 2 deletions
@@ -18,6 +18,7 @@ from ..const import (
CONF_FORCE_NEW_RANGE,
CONF_MODBUS_CONTROLLER_ID,
CONF_REGISTER_TYPE,
CONF_SKIP_UPDATES,
CONF_USE_WRITE_MULTIPLE,
CONF_WRITE_LAMBDA,
)
@@ -53,6 +54,7 @@ async def to_code(config):
config[CONF_ADDRESS],
byte_offset,
config[CONF_BITMASK],
config[CONF_SKIP_UPDATES],
config[CONF_FORCE_NEW_RANGE],
)
await cg.register_component(var, config)