Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/foxfirecodes/homebridge-hermes-player
Using Homebridge to control the Hermes client for Pandora
https://github.com/foxfirecodes/homebridge-hermes-player
Last synced: 5 days ago
JSON representation
Using Homebridge to control the Hermes client for Pandora
- Host: GitHub
- URL: https://github.com/foxfirecodes/homebridge-hermes-player
- Owner: foxfirecodes
- Created: 2017-05-02T18:29:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-22T01:27:44.000Z (about 1 year ago)
- Last Synced: 2024-12-25T05:21:09.096Z (12 days ago)
- Language: JavaScript
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Homebridge Hermes Player
This is a [Homebridge](https://github.com/nfarina/homebridge) plugin to control the [Hermes](https://github.com/HermesApp/Hermes) client for [Pandora](http://pandora.com). It allows you to play/pause and control the volume of Hermes.
## Installation
Obviously you need to install [Hermes](https://github.com/HermesApp/Hermes) first. This is a macOS-only Pandora client, and this node module is macOS-only as well since it uses `node-osascript` to control Hermes.
1. `yarn global add homebridge-hermes-player`
2. Add the following to `~/.homebridge/config.json`:
```javascript
{
// ...
"accessories": [
// ...
{
"accessory": "HermesPlayer",
"name": "Hermes"
}
]
}
```The `name` can be whatever you want, but the `accessory` must be `"HermesPlayer"`.