Homebridge accessory plugin to control Verano VER-24 WiFi heaters via emodul.pl.
Features:
- Thermostat service (heat/off)
- Current and target temperature
- Periodic polling to keep HomeKit in sync
- Robust login with cookie reuse and auto-reauth
npm install -g homebridge-veranoAdd an accessory block in your Homebridge config UI or JSON. Required fields: username, password.
Optional tuning parameters are shown with defaults.
Notes:
- Only HEAT/OFF modes are supported.
- Temperatures are in Celsius.
npm ci
npm run buildLink locally into a dev Homebridge if desired:
npm linkApache-2.0
{ "accessories": [ { "accessory": "VeranoAccessoryPlugin", "name": "Verano", "username": "[email protected]", "password": "••••••••", // optional "tileId": 58, "setpointIdo": 139, "temperatureDivider": 10, "offThresholdC": 10, "minC": 10, "maxC": 30, "stepC": 0.5, "pollIntervalSec": 30 } ] }