blinky/README.md

72 lines
1.9 KiB
Markdown
Raw Normal View History

2021-04-06 16:41:49 +02:00
# blinky
2021-04-06 16:46:56 +02:00
control your blinkstick via http requests
2021-04-06 16:41:49 +02:00
## requirements
2022-02-21 11:56:49 +01:00
- nodejs
2021-04-07 12:06:32 +02:00
- yarn / npm
2022-02-21 11:56:49 +01:00
- [nvm](https://github.com/nvm-sh/nvm)
**the node-hid module is a bit picky about node.js's version - use node.js 8.x or 15.x**
2022-02-24 23:25:20 +01:00
## setup (as root)
- install nvm
- to load nvm restart your terminal or `source ~/.nvm/nvm.sh`
2022-02-21 11:56:49 +01:00
2022-02-21 12:08:26 +01:00
- clone the project (to '/opt/blinky')
`git clone https://git.velvettear.de/velvettear/blinky.git /opt/blinky`
2022-02-21 11:56:49 +01:00
- enter the cloned directory
`cd /opt/blinky`
2022-02-21 11:56:49 +01:00
- install and switch to a supported node.js version (automatically done via .nvmrc file)
`nvm install`
- install the required modules
`npm install`
- switch back to your system's default node.js version
`nvm deactivate`
- execute blinky
2022-02-21 11:56:49 +01:00
`nvm run 15 blinky.js`
2021-04-06 16:46:56 +02:00
2022-02-24 23:25:20 +01:00
- if you get this error message on linux:
`Error: cannot open device with path /dev/hidraw0`
run:
`echo "KERNEL==\"hidraw*\", SUBSYSTEM==\"hidraw\", ATTRS{idVendor}==\"20a0\", ATTRS{idProduct}==\"41e5\", MODE=\"0666\"" | sudo tee /etc/udev/rules.d/85-blinkstick-hid.rules`
and reboot your system
## systemd
**for security reasons it is highly recommended to not run blinky with root permissions!**
- create a new system user
2022-02-24 23:25:20 +01:00
`useradd -U -r -s /usr/bin/nologin node`
- make your install of nvm available to the new user
`cp -R ~/.nvm /opt/nvm`
`chown -R node /opt/nvm`
2022-02-24 23:25:20 +01:00
- symlink the provided systemd-service file
`ln -s /opt/blinky/blinky.service /etc/systemd/system/blinky.service`
- reload systemd-services
`systemctl daemon-reload`
- enable and start blinky as a systemd-service
`systemctl enable --now blinky`
2022-02-24 23:25:20 +01:00
- if you don't use nvm otherwise remove it and remove it from your shell-profile
`rm -rf ~/.nvm`
`vim ~/.zshrc`
2021-04-06 16:46:56 +02:00
### scripts
- blinky-feed.sh
- gathers various system information (currently temperature only) then converts it to color values and sends it to blinky
- requirements: bash, bc