* Initial support for modbus * Complete test coverage of config flow * Bump to 1.1.0 with corrected numbers * Handle missing mapping for reset-alarm * Fixup type checks after library bump * Adjust coil number * Move word_swap to nibegw * Adjust to 1.1.2 with fixes * Add series property * Add S series models * Correct test for invalid host * Apply suggestions from code review Co-authored-by: J. Nick Koston <nick@koston.org> * Move some things into library * Adjust strings somewhat * Correct black * Correct test after validation change Co-authored-by: J. Nick Koston <nick@koston.org>
15 lines
473 B
Python
15 lines
473 B
Python
"""Constants for the Nibe Heat Pump integration."""
|
|
import logging
|
|
|
|
DOMAIN = "nibe_heatpump"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
CONF_LISTENING_PORT = "listening_port"
|
|
CONF_REMOTE_READ_PORT = "remote_read_port"
|
|
CONF_REMOTE_WRITE_PORT = "remote_write_port"
|
|
CONF_WORD_SWAP = "word_swap"
|
|
CONF_CONNECTION_TYPE = "connection_type"
|
|
CONF_CONNECTION_TYPE_NIBEGW = "nibegw"
|
|
CONF_CONNECTION_TYPE_MODBUS = "modbus"
|
|
CONF_MODBUS_URL = "modbus_url"
|
|
CONF_MODBUS_UNIT = "modbus_unit"
|