forked from LouwHopley/homebridge-olarm-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Configuration
Luke Stephens edited this page Nov 24, 2024
·
2 revisions
To configure the Homebridge WS Olarm Plugin, you need to update your Homebridge config.json
file.
-
platform
: (Required) Must be set to"OlarmWSHomebridgePlugin"
. -
name
: (Required) A name for your Olarm platform. -
userEmailPhone
: (Required) Your Olarm account email or phone number. -
userPass
: (Required) Your Olarm account password.
{
"platforms": [
{
"platform": "OlarmWSHomebridgePlugin",
"name": "My Olarm",
"userEmailPhone": "[email protected]",
"userPass": "your-password"
}
]
}
Open the config.json file:
-
The file is usually located at ~/.homebridge/config.json.
-
Add the Olarm platform configuration: Insert the configuration block within the "platforms" array as shown in the example above.
-
Save the file and restart Homebridge:
sudo systemctl restart homebridge
- Ensure your credentials are correct to avoid authentication issues.
- For advanced configuration options, refer to the Development page.