Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goobaroo/homebridge-mythtv
https://github.com/goobaroo/homebridge-mythtv
homebridge homebridge-plugin javascript mythtv
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/goobaroo/homebridge-mythtv
- Owner: Goobaroo
- License: mit
- Created: 2018-03-20T14:03:56.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2022-11-29T19:20:34.000Z (about 2 years ago)
- Last Synced: 2024-11-30T17:25:44.866Z (2 months ago)
- Topics: homebridge, homebridge-plugin, javascript, mythtv
- Language: JavaScript
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# MythTV Plugin for Homebridge
Use the status of your Myth Frontend as a sensor in Hombridge. Use to enable lighting while watching a video and then resume normal lighting when stopped.
The plugin uses the MythTV API - [API documentation](https://www.mythtv.org/wiki/Services_API)
## Installation
Requires Homebridge, see the [project documetation](https://github.com/nfarina/homebridge) for more information.
```bash
npm install -g homebridge-mythtv
```## Configuration
The plugin supports the following config:
Required | Variable | Description
-------- | -------- | -----------
Yes | `accessory` | Must be MythTV
Yes | `name` | Description of the frontend.
Yes | `frontend` | The IP Address of your frontend, will default to localhost if excluded
Optional | `port` | The port that your frontend API is listening on, defaults to 6547 - Unless you changed the port you shouldn't need it.Config example:
```json
{
"accessories":[
{
"accessory": "MythTV",
"name": "Theatre",
"frontend": "192.168.1.1"
}
]
}
```