Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bmedicke/aruna
โจ๐งต Raspberry Pi based LED strip control (with individual LEDs)
https://github.com/bmedicke/aruna
create-react-app docker docker-compose eslint led-control plpgsql postgresql psycopg3 raspberry-pi react react-three-fiber threejs
Last synced: 5 days ago
JSON representation
โจ๐งต Raspberry Pi based LED strip control (with individual LEDs)
- Host: GitHub
- URL: https://github.com/bmedicke/aruna
- Owner: bmedicke
- Created: 2021-06-17T09:08:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-10T08:49:45.000Z (over 2 years ago)
- Last Synced: 2024-10-17T12:58:42.476Z (22 days ago)
- Topics: create-react-app, docker, docker-compose, eslint, led-control, plpgsql, postgresql, psycopg3, raspberry-pi, react, react-three-fiber, threejs
- Language: JavaScript
- Homepage:
- Size: 1.29 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
see https://github.com/bmedicke/smart-mirror for another React project
# Aruna
**Raspberry Pi based LED strip control (with individual LEDs)**
* [front-to-back.py](#front-to-backpy)
* [back-to-hardware.py](#back-to-hardwarepy)
* [setup](#setup)
* [running it](#running-it)
* [supplemental](#supplemental)
* [Power Circuit Diagramm](#power-circuit-diagramm)
* [Pin Layout](#pin-layout)
* [terminology](#terminology)
* [useful links](#useful-links)
* [useful repos](#useful-repos)## front-to-back.py
* connects Home Assistant via MQTT to the database
## back-to-hardware.py
* translates database changes to the physical world
# setup
```sh
# install docker:
curl -fsSL https://get.docker.com -o get-docker.sh
sh ./get-docker.sh
rm get-docker.sh# install docker-compose and postgres:
apt install docker-compose postgresql -y# we only need it for the cli tools:
systemctl disable --now postgresql# create and activate virtual environment:
python3 -m venv env
source env/bin/activate# on rpi4 you might get an error about multiple
# definitions while installing rpi.gpio,
# to avoid them use the flag:
export CFLAGS=-fcommon# upgrade/install libs:
pip install --upgrade adafruit-blinka
pip install --upgrade adafruit-circuitpython-neopixel
pip install --upgrade black# [binary] version not yet supported for ARM.
pip install --upgrade 'psycopg[pool]'
```# running it
```sh
# start db and adminer:
docker-compose up -d
```# supplemental
## Power Circuit Diagramm
## Pin Layout
![image](https://user-images.githubusercontent.com/173962/143683906-a541242c-3bcc-4d4a-ab91-dc928b944fee.png)
## terminology
* **entity**
* sensors, automations, switches, scenes
* **device**
* physical objects (that might have multiple entities)## useful links
* [Device Registry](https://developers.home-assistant.io/docs/device_registry_index/)
* [HA MQTT Light Schemas](https://www.home-assistant.io/integrations/light.mqtt/)
* template: the one tasmota uses
* default: no flashing, transitions
* **[json](https://www.home-assistant.io/integrations/light.mqtt/#json-schema)**: all features
* [demo usage](https://community.home-assistant.io/t/mqtt-add-on-works-but-no-discovery/241680)
* [async-notifications with psycopg](https://www.psycopg.org/docs/advanced.html#asynchronous-notifications)
* get notified of db-updates
* [empty queries and performance impact](https://stackoverflow.com/questions/21117431/how-to-receive-automatic-notifications-about-changes-in-tables)
* [psycopg writeup](https://github.com/bmedicke/python-notes/blob/main/markdown/psycopg.md)## useful repos
* https://github.com/bokub/rgb-light-card (Lovelace custom card for RGB lights)