Adapter for Innoxel Master 3 (https://innoxel.ch)
- NodeJS >= 18.x
- ioBroker >= 5.0.19, with admin >= 6.x
- Innoxel Master 3 Smart Home system
Until the adapter is part of the stable repository, you can install the latest version by enabling expert mode in ioBroker and install the adapter from npm. Don't install it directly from Github, this will lead to an error on adapter start ("cannot find start file").
After installation, create a new instance and configure the settings:
- Connection Settings for accessing innoxel master
- ip address
- port
- username
- password
- Polling intervals for different areas
- state changes (i.e. switches, dimmer)
- room climate / thermostats
- weather
- innoxel master device details (requires admin privileges for the user connecting to innoxel master)
A pre-release version of this adapter has been working for more than 2 years with firmware 1.4.1.0 and then 1.5.1.0.
This initially released version has been tested with firmware 1.6.0.0.
The following modules have been tested/are supported:
- Innoxel Master 3
- Switch 8 G1
- Motor 4 x 230 VAC G1
- Dim 4 x 600 VA
- Taster RGB
- Thermo
- Wetterstation P03/3-RS485-CET
If it works for you with different modules, or you have other modules that don't work, please feel free to open an issue.
The adapter supports the messages described in the following sections.
Simulate pressing of a button on a "Taster".
sendTo("innoxel.0", "triggerInModule", "<moduleId>:<channelId>", callback);
// i.e. to trigger button 1 on "Taster" with id/address 20
sendTo("innoxel.0", "triggerInModule", "20:1");
sendTo("innoxel.0", "triggerInModule", "20:1", () => {
// do something after the button press has been executed
});
moduleId
is the id/address of the "Taster"channelId
is the index of the button on the "Taster"callback
(optional) callback function to call when action has been performed
Simulate pressing of a button on a "Taster".
sendTo("innoxel.0", "setDimValue", "<moduleId>:<channelId>:<dimValue>:<dimSpeed>", callback);
// i.e. to set the value of channel 7 on dim module 1 to 80%
sendTo("innoxel.0", "setDimValue", "1:7:80");
sendTo("innoxel.0", "setDimValue", "1:7:80", () => {
// do something after value has been set
});
moduleId
is the id/address of the dimmer modulechannelId
is channel of the dimmer on the moduledimValue
is the value in percent to set (0-100)dimSpeed
(optional) is the dimming speed to use (0-15)callback
(optional) callback function to call when action has been performed
Set heating or cooling temperature.
sendTo("innoxel.0", "setTemperature", "<moduleId>:<temperatureType>:<temperature>", callback);
// i.e. to set setTemperatureHeating to 20° on room climate module 0
sendTo("innoxel.0", "setTemperature", "1:setTemperature:20");
sendTo("innoxel.0", "setTemperature", "1:setTemperature:20", () => {
// do something after the button press has been executed
});
moduleId
is the id/address room climate moduletemperatureType
is the temperature type to set (absenceSetbackTemperatureCooling, absenceSetbackTemperatureHeating, nightSetbackTemperatureCooling, nightSetbackTemperatureHeating, setTemperatureCooling, setTemperatureHeating, )temperature
temperature to set, in 0.5° steps. There's also a min/max value depending on typecallback
(optional) callback function to call when action has been performed
- (matthsc) update iobroker dependencies
- (matthsc & dependabot) dependency updates
- (matthsc & dependabot) dependency updates
- (matthsc) log soap messages in log level silly
- (matthsc) fix another potential error when updating modules
- (matthsc & dependabot) dependency updates
- (matthsc) fix potential error when processing identities
- (matthsc) drop support for Node 16
- (matthsc) change actual value from temperature sensor if it doesn't provide values
- (matthsc & dependabot) dependency updates
- (matthsc) allow to set heating/cooling temperatures
- (matthsc & dependabot) dependency updates
- (matthsc) drop support for Node 12 and js-controller 3
- (matthsc) implement migrations from create-adapter
- (matthsc & dependabot) dependency updates
- (matthsc) don't always terminate adapter on errors while updating identities
- (matthsc) improve error messages
- (matthsc) fix double decryption issues with password in adapter admin
- (matthsc) change input field types in adapter admin
- (matthsc) improve error messages
- (matthsc) catch authentication errors
- (matthsc) fix authentication
- (matthsc) remove build folders from git
- (matthsc) implement adapter review feedback
- (matthsc) initial release
MIT License
Copyright (c) 2024 matthsc matthsc@gmx.net
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.