npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

iobroker.innoxel

v2.0.0

Published

Adapter for Innoxel Master 3

Readme

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 >= 22.x
  • ioBroker >= 6.0.11, with admin >= 6.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").

The adapter can be installed straigt from the stable/beta repositories. 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)

Please note: Don't install the adapter directly from Github, this will lead to an error on adapter start ("cannot find start file").

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.

The 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

2.0.0 (2026-05-16)

  • (matthsc) implement adapter checker feedback and create-adapter migrations
  • (copilot) Adapter requires node.js >= 22 now
  • (matthsc & dependabot) dependency updates

1.0.1 (2024-12-09)

  • (matthsc) implement adapter checker feedback
  • (matthsc) cleanup changelog

1.0.0 (2024-11-17)

  • (matthsc) drop support for Node 18
  • (matthsc) switch admin to json config
  • (matthsc) prepare for future controller versions (fix deprecation warnings)
  • (matthsc & dependabot) dependency updates

Older changelogs can be found there

License

MIT License

Copyright (c) 2024-2026 matthsc [email protected]

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.