Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/raynigon/frame-light

Simple Webserver which provides an api and ui to switch on lights connected to a raspberry pi
https://github.com/raynigon/frame-light

golang gpio raspberry-pi

Last synced: about 1 month ago
JSON representation

Simple Webserver which provides an api and ui to switch on lights connected to a raspberry pi

Awesome Lists containing this project

README

        

# frame-light
Simple Webserver which provides an api and ui to switch on lights connected to a raspberry pi

## Installation

Execute the following script to install the application
```bash
DOWNLOAD_URL=$(curl -s https://api.github.com/repos/raynigon/frame-light/releases/latest | \
python3 -c "import sys, json; print(list(filter(lambda x: '$(arch)'[:-1] in x['name'], json.load(sys.stdin)['assets']))[0]['url'])")
wget "--header=Accept: application/octet-stream" -O frame-light.zip $DOWNLOAD_URL
unzip frame-light.zip
```