Pimatic Intergas Incomfort plugin
Plugin to control an Intergas central heating boiler through Incomfort Lan2RF gateway
Configuration
You can load the plugin by editing your config.json
to include it:
{
"plugin": "intergasincomfort"
}
Thermostats and temperature sensors can be defined by adding them to the devices
section in the config file.
For all configuration options see device-config-schema
Set the class
attribute to IntergasIncomfortHeatingThermostat
. For example:
{
"id": "thermostat",
"name": "Thermostat",
"class": "IntergasIncomfortHeatingThermostat",
"connection": {
"host": "192.168.1.11",
},
"comfyTemp": 21,
"ecoTemp": 17
}
For the temperature sensors add this config:
{
"id": "roomTemperature",
"name": "Current room temperature",
"class": "IntergasIncomfortTemperatureSensor",
"connection": {
"host": "192.168.1.11",
}
}
Plugin Config Options
intergasinfcomfort-thermostat config
Device Config Options
intergasincomfort-thermostat device config schemas
IntergasIncomfortHeatingThermostat
IntergasIncomfortHeatingThermostat config options
Option | Description | Default |
---|
connection object | All Lan2RF connection settings | |
PropertiesOption | Description | Default |
---|
host string | The IP address of the Lan2RF Gateway | | updateInterval integer | The amount of ms between each update pull from the Lan2RF Gateway | 60000 | heaterId integer | The ID of the boiler connected to the Lan2RF gateway | 0 | roomId integer | The room ID of the thermostat, may be 0 or 1 | 0 | debug boolean | Output update message from Lan2RF and additional infos | false |
|
comfyTemp number | The defined comfy temperature | |
ecoTemp number | The defined eco mode temperature | |
guiShowModeControl boolean | Show the mode buttons in the gui | true |
guiShowPresetControl boolean | Show the preset temperatures in the gui | true |
guiShowTemperatureInput boolean | Show the temperature input spinbox in the gui | true |
guiShowValvePosition boolean | Show the valve position in the gui | true |
IntergasIncomfortTemperatureSensor
IntergasIncomfortTemperatureSensor config options
Option | Description | Default |
---|
connection object | All Lan2RF connection settings | |
PropertiesOption | Description | Default |
---|
host string | The IP address of the Lan2RF Gateway | | updateInterval integer | The amount of ms between each update pull from the Lan2RF Gateway | 60000 | heaterId integer | The ID of the boiler connected to the Lan2RF gateway | 0 | roomId integer | The room ID of the temperature sensor, may be 0 or 1 | 0 | debug boolean | Output update message from Lan2RF and additional infos | false |
|