Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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"
}
]
```