Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidborzek/homebridge-dummy-thermostat
A plugin for homebridge to create a fake thermostat accessory
https://github.com/davidborzek/homebridge-dummy-thermostat
apple homebridge homebridge-dummy-thermostat homebridge-plugin homekit js node siri smart-home
Last synced: 3 months ago
JSON representation
A plugin for homebridge to create a fake thermostat accessory
- Host: GitHub
- URL: https://github.com/davidborzek/homebridge-dummy-thermostat
- Owner: davidborzek
- License: unlicense
- Created: 2019-05-09T17:08:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T12:35:16.000Z (almost 2 years ago)
- Last Synced: 2024-10-19T12:14:30.852Z (3 months ago)
- Topics: apple, homebridge, homebridge-dummy-thermostat, homebridge-plugin, homekit, js, node, siri, smart-home
- Language: TypeScript
- Homepage:
- Size: 253 KB
- Stars: 7
- Watchers: 0
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![npm Version](https://badgen.net/npm/v/homebridge-dummy-thermostat)](https://www.npmjs.com/package/homebridge-dummy-thermostat)
# homebridge-dummy-thermostat
Plugin for homebridge to create a fake thermostat accessory
## Installation1. Install [homebridge](https://github.com/nfarina/homebridge#installation-details)
2. Install this plugin: `npm install -g homebridge-dummy-thermostat`
3. Edit your `config.json` file (See below).## Configuration example
```json
"accessories": [
{
"accessory": "Thermostat",
"name": "Thermostat"
}
]
```### Structure
| Key | Description |
| --- | --- |
| `accessory` | Must be `Thermostat` |
| `name` | Name to appear in the Home app |
| `temperatureDisplayUnits` _(optional)_ | Whether you want °C (`0`) or °F (`1`) as your units (`0` is default) |
| `model` _(optional)_ | Appears under "Model" for your accessory in the Home app |
| `manufacturer` _(optional)_ | Appears under "Manufacturer" for your accessory in the Home app |