All Projects → ioBroker → ioBroker.hass

ioBroker / ioBroker.hass

Licence: MIT License
Connects Home Assistant to ioBroker

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to ioBroker.hass

ioBroker.ping
Pings configured IPs for ioBroker
Stars: ✭ 18 (+28.57%)
Mutual labels:  smarthome, iobroker
ioBroker.beckhoff
ioBroker Adapter to Communicate with Beckhoff Automation System over ADS
Stars: ✭ 14 (+0%)
Mutual labels:  smarthome, iobroker
ioBroker.knx
connect KNX via eibd
Stars: ✭ 46 (+228.57%)
Mutual labels:  smarthome, iobroker
homeassistant
Home Assistant Config
Stars: ✭ 50 (+257.14%)
Mutual labels:  smarthome, home-assistant
HomeAssistant-Config
Here is my current Home Assistant config. Hope this helps who needs it!!
Stars: ✭ 87 (+521.43%)
Mutual labels:  smarthome, home-assistant
ioBroker.homepilot20
Rademacher Homepilot 2.0 (version >= 5.0.39)
Stars: ✭ 19 (+35.71%)
Mutual labels:  smarthome, iobroker
zigbee
Database of Zigbee devices compatible with third party gateways: ZHA, deCONZ, Zigbee2MQTT, Tasmota, ZiGate, ioBroker,
Stars: ✭ 117 (+735.71%)
Mutual labels:  smarthome, home-assistant
Aquarea2mqtt
Wrapper for Panasonic Aquarea Service Cloud to MQTT for a smart home integration like Home-Assistant (or for some machine learning)
Stars: ✭ 19 (+35.71%)
Mutual labels:  smarthome, home-assistant
ioBroker.cloud
Enable access to ioBroker from internet
Stars: ✭ 36 (+157.14%)
Mutual labels:  smarthome, iobroker
ioBroker.jarvis
jarvis - just another remarkable vis
Stars: ✭ 129 (+821.43%)
Mutual labels:  smarthome, iobroker
ioBroker.sonoff
Control Sonoff-Tasmota devices via ioBroker
Stars: ✭ 34 (+142.86%)
Mutual labels:  smarthome, iobroker
ioBroker.modbus
Modbus adapter for ioBroker
Stars: ✭ 31 (+121.43%)
Mutual labels:  smarthome, iobroker
home-assistant-opentherm-thermostat
Home Assistant OpenTherm Thermostat
Stars: ✭ 26 (+85.71%)
Mutual labels:  smarthome, home-assistant
ioBroker.ecovacs-deebot
Control your Ecovacs Deebot vacuum cleaner with ioBroker
Stars: ✭ 36 (+157.14%)
Mutual labels:  smarthome, iobroker
ESPHome-OpenTherm
Example of how to control an opentherm boiler with esphome
Stars: ✭ 54 (+285.71%)
Mutual labels:  smarthome, home-assistant
ioBroker.lovelace
Visualization with Lovelace-UI
Stars: ✭ 41 (+192.86%)
Mutual labels:  home-assistant, iobroker
ioBroker.scenes
Group states to scenes and control them.
Stars: ✭ 26 (+85.71%)
Mutual labels:  smarthome, iobroker
ioBroker.vis-inventwo
Individualisierbare VIS Widgets für den ioBroker
Stars: ✭ 38 (+171.43%)
Mutual labels:  smarthome, iobroker
ad-alexatalkingclock
Alexa (or other Smart Speakers) tell you the time without asking every hour. Please ⭐️if you like my app :)
Stars: ✭ 30 (+114.29%)
Mutual labels:  smarthome, home-assistant
ioBroker.octoprint
ioBroker adapter to manage your 3D printer over ioBroker
Stars: ✭ 31 (+121.43%)
Mutual labels:  smarthome, iobroker

Logo

ioBroker.hass

Number of Installations Number of Installations NPM version

Test and Release Translation status Downloads

This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers. For more details and for information how to disable the error reporting see Sentry-Plugin Documentation! Sentry reporting is used starting with js-controller 3.0.

This adapter allows the connecting of Home Assistant to ioBroker.

Usage

Create a long term token in HASS and use it as PW (copy it also in the repeat field).

Then it should read out all attributes for all devices. Services might be controllable (e.g. "turn_on"). To control services you have two options:

  • Set the state with an ack=false value which is not a string (e.g. Boolean true) then it will be triggered also in HASS without additional service data
  • Set the state with an ack=false String value which is a stringified JSON object to call the service and use the JSON object as service data

For the last option on a light.turn_off with e.g. {"transition":10,"flash":"short"} these two service data details are sent with the call to HASS. The available fields with their data definition can be seen in the JSON definition of the ioBroker object in the native.fields section and would look like the following in the above example:

... native: { "fields": { "transition": { "name": "Transition", "description": "Duration it takes to get to next state.", "selector": { "number": { "min": 0, "max": 300, "unit_of_measurement": "seconds" } } }, "flash": { "name": "Flash", "description": "If the light should flash.", "advanced": true, "selector": { "select": { "options": [ "long", "short" ] } } } }, "entity_id": "light.mi_control_hub_light", "attr": "turn_off", "type": "light" } ...

For some services like set_speed it is required to call with a JSON object like {speed: "high"} in general to provide required values. In this case the field definition look e.g. like:

...
    native: {
        "fields": {
            "speed": {
                "name": "Speed",
                "description": "Speed setting.",
                "required": true,
                "example": "low",
                "selector": {
                    "text": null
                }
            }
        }
        ...
    }
...

Configuration

There is a good article about connection.

Please check it https://www.smarthomejetzt.de/mit-iobroker-auf-eine-home-assistant-hass-io-installation-und-die-geraete-zugreifen/

Unfortunately only in german, but the google translate works rather good

Changelog

1.1.1 (2022-03-25)

  • (Apollon77) Show password fields masked again in config

1.1.0 (2022-03-24)

  • IMPORTANT: You need to re-enter the password once after installing this version!
  • (Apollon77) Implement Service triggers to use any value to trigger or stringified JSON to call with fields
  • (Apollon77) Optimize unload handling
  • (Apollon7) Add Sentry for crash reporting

1.0.1 (2021-09-04)

  • IMPORTANT: js-controller 2.0 is needed st least!
  • (Apollon77) Fix start issue
  • (Apollon77/Garfonso) Fix issue where value could not be set in hass

1.0.0 (2020-12-13)

  • (bluefox) added the support of compact mode

0.1.0

  • (bluefox) initial release

License

The MIT License (MIT)

Copyright (c) 2018-2022 bluefox [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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].