homebridge-tasmota-sonoff-thermostat
Version:
Homebridge plugin to make a tasmota sonoff work as a termostat
41 lines (34 loc) • 1.3 kB
Markdown
Homebridge plugin that turns a Tasmota Sonoff with an attached temperature module into a HomeKit thermostat.
* [Installation](
* [Configuration](
* [Release Notes](
Follow the instructions in [homebridge](https://www.npmjs.com/package/homebridge) for the homebridge server installation.
This plugin is published through [NPM](https://www.npmjs.com/package/homebridge-tasmota-sonoff-thermostat) and should be installed "globally" by typing:
npm install -g homebridge-tasmota-sonoff-thermostat
An example configuration is below:
```javascript
{
"accessory": "tasmota-thermostat",
"name": "Sonoff Radiator",
"start_temperature": 10,
"temperature_unit": "C", // "C" For CELSIUS "F" for FAHRENHEIT
"mqtt": {
"url": "mqtt://192.168.1.2:1883",
"clientid": "clinetid",
"username": "username",
"password": "password",
"sensor_name": "AM2301",
"sensor_topic": "tasmota/sensor",
"output_topic": "tasmota/output",
"status_topic": "tasmota/status",
"will_topic": "tasmota/will"
}
```
- Pull humidity data through to HomeKit
- Add abilit for control by Google Home (Maybe by home assistent)
- Write Tests