Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lawrencebensaid/homebridge-pi-sensehat
A Homebridge plugin for the Sense HAT module for Raspberry Pi
https://github.com/lawrencebensaid/homebridge-pi-sensehat
accessory homebridge homebridge-plugin homekit raspberry-pi sense-hat
Last synced: 16 days ago
JSON representation
A Homebridge plugin for the Sense HAT module for Raspberry Pi
- Host: GitHub
- URL: https://github.com/lawrencebensaid/homebridge-pi-sensehat
- Owner: lawrencebensaid
- Created: 2021-05-24T08:30:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-25T12:49:43.000Z (over 3 years ago)
- Last Synced: 2024-08-31T22:48:40.540Z (4 months ago)
- Topics: accessory, homebridge, homebridge-plugin, homekit, raspberry-pi, sense-hat
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# homebridge-pi-sensehat
A Homebridge plugin for the Sense HAT module for Raspberry Pi.
## Pre-requisites
- Homebridge
- Python
- Python `sense_hat` module## Setup
`$ npm install homebridge-pi-sensehat`
## Configuration
Parameters:
name|description
---|---
accessory|Options are `SenseHatLight`, `SenseHatThermometer` or `SenseHatSensors`. ****Required***
name|A name for the accessory. **Not required*
blinker|Set to `true` to add a Switch accessory to enable or disable blinking. **Not required*Configuration example:
```json
"accessories": [
{
"accessory": "SenseHatLight",
"name": "Sense Hat LED Panel"
},
{
"accessory": "SenseHatThermometer",
"name": "Sense Hat Thermometer"
},
{
"accessory": "SenseHatSensors",
"name": "Sense Hat Sensor"
}
]
```