homebridge-laundrify-official
v1.4.0
Published
Expose your laundrify Power Plugs to Apple HomeKit using Homebridge.
Downloads
372
Maintainers
Readme
homebridge-laundrify-official
This plugin exposes your laundrify Power Plugs to Apple HomeKit using Homebridge.
Getting Started
To get started you need to
- Install the Plugin
- Obtain an AuthCode in the laundrify-App
- Configure the Plugin
1) Installation
The Plugin can either be installed using the Homebridge UI or via CLI.
⚠️ Please make sure you are using the correct Plugin (
laundrify-official
) since there is another one (homebridge-laundrify authored by @ttimpe).
Homebridge UI
Open Homebridge UI, navigate to the Plugins
page and search for laundrify-official
. Click on Install
CLI
sudo npm i -g homebridge-laundrify-official
2) Obtain AuthCode
Open the laundrify App and activate the Homebridge integration. Take note of the AuthCode that will be shown after the activation.
3) Configure the Plugin
Add (or extend) the platforms
property in your Homebridge configuration as shown below:
{
"bridge": {...},
"platforms": [
{...},
{
"platform": "laundrify",
"authCode": "xxx-xxx",
"invertStatus": false,
}
]
}
Replace xxx-xxx
with the Auth Code that has been obtained in the previous step.
By default the ContactSensor states are mapped to the laundrify states as follows:
OPEN => Off
CLOSED => On
Since HomeKit will hide closed ContactSensors from the overview, you can invert the status mapping by setting invertStatus
to true
.
Don't forget to restart Homebridge after saving the configuration.
Plugin Development
- Install dependencies using
npm i
- Build and link the Plugin
- using
npm run watch
for automatic builds - or
npm run build && npm link
for a manual build
- using
- Publish Package using
npm publish
(don't forget to update the version number inpackage[-lock].json
)