0.4.1 • Published 2 months ago

iobroker.innoxel v0.4.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Logo

ioBroker.innoxel

Adapter for Innoxel Master 3 (https://innoxel.ch)

node NPM version Downloads license

Number of Installations Current version in stable repository Dependency Status

Test and Release

NPM

Requirements

  • NodeJS >= 18.x
  • ioBroker >= 4.x, with admin >= 5.x
  • Innoxel Master 3 Smart Home system

Installation

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)

Supported Modules and Firmware

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.

Messages

The adapter supports the messages described in the following sections.

triggerInModule

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

setDimValue

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 module
  • channelId is channel of the dimmer on the module
  • dimValue 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

setTemperature

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 module
  • temperatureType 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 type
  • callback (optional) callback function to call when action has been performed

Changelog

0.4.1 (2024-03-23)

  • (matthsc) log soap messages in log level silly
  • (matthsc) fix another potential error when updating modules
  • (matthsc & dependabot) dependency updates

0.4.0 (2024-03-20)

  • (matthsc) fix potential error when processing identities
  • (matthsc) drop support for Node 16

0.3.1 (2023-05-23)

  • (matthsc) change actual value from temperature sensor if it doesn't provide values
  • (matthsc & dependabot) dependency updates

0.3.0 (2023-04-22)

  • (matthsc) allow to set heating/cooling temperatures
  • (matthsc & dependabot) dependency updates

0.2.0 (2022-09-28)

  • (matthsc) drop support for Node 12 and js-controller 3
  • (matthsc) implement migrations from create-adapter
  • (matthsc & dependabot) dependency updates

0.1.5 (2022-02-12)

  • (matthsc) don't always terminate adapter on errors while updating identities
  • (matthsc) improve error messages

0.1.4 (2022-01-25)

  • (matthsc) fix double decryption issues with password in adapter admin
  • (matthsc) change input field types in adapter admin

0.1.3 (2022-01-16)

  • (matthsc) improve error messages

0.1.2 (2022-01-07)

  • (matthsc) catch authentication errors
  • (matthsc) fix authentication
  • (matthsc) remove build folders from git

0.1.1 (2022-01-01)

  • (matthsc) implement adapter review feedback

0.1.0 (2021-12-30)

  • (matthsc) initial release

License

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.

0.4.1

2 months ago

0.4.0

2 months ago

0.3.1

12 months ago

0.3.0

1 year ago

0.2.0

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago