Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ionutmindrescu/homebridge-dummy-fan
Homebridge plugin with a dummy switch for Fan.
https://github.com/ionutmindrescu/homebridge-dummy-fan
Last synced: 3 months ago
JSON representation
Homebridge plugin with a dummy switch for Fan.
- Host: GitHub
- URL: https://github.com/ionutmindrescu/homebridge-dummy-fan
- Owner: IonutMindrescu
- Created: 2021-01-08T15:29:10.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-24T06:53:22.000Z (over 1 year ago)
- Last Synced: 2024-04-26T17:08:49.901Z (8 months ago)
- Language: JavaScript
- Size: 38.1 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# homebridge-dummy-fan
[Homebridge](https://github.com/nfarina/homebridge) plugin to create a dummy HomeKit Fan accessory. Why? It's simple to create Automations to trigger some custom built accessories like Sonoff switches.# Installation
1. Install [Homebridge](https://github.com/nfarina/homebridge#installation)
2. Install this plugin using `npm install -g homebridge-dummy-fan`
3. Edit your configuration file like the example below and restart Homebridge# Configuration Example
```
{
"accessories": [{
"accessory": "DummyFan",
"name": "Dummy Fan"
}]
}
```# Configuration Parameters
* ```name``` __(required)__ Name of Fan to appear in Home app
* ```autoOffDelay``` Number of seconds after fan will automatically turn off. Exclude parameter to disable.# Credits
This plugin is edited based on the fork of [homebridge-dummy-garage](https://github.com/rasod/homebridge-dummy-garage)