1
0
Fork 0
ContactPi/README.md

88 lines
1.7 KiB
Markdown
Raw Normal View History

2019-11-01 10:34:57 -04:00
# onsetswitch
Use buttons connected to a Rasberry Pi GPIO to trigger Hog 4 comment macros.
2019-11-03 20:29:06 -05:00
## Prep
2019-11-01 10:34:57 -04:00
2019-11-03 20:29:06 -05:00
* Install Raspbian [the usual way.](https://www.raspberrypi.org/documentation/installation/installing-images/README.md)
* Enable the ssh server. On a mac:
```
touch /Volumes/boot/ssh
```
* Eject the SD card and boot the Raspberry Pi.
* Use SSH to log into the Pi:
```
ssh pi@raspberrypi
```
* Use raspi-config to;
* set locale
* set timezone
* enable ssh server
* enlarge the file-system to fill the SD card
* reboot
```
sudo raspi-config
```
* Update the Apt and install aptitude
```
sudo apt-get update
sudo apt-get install aptitude
```
* Use aptitude to upgrade the Pi.
```
sudo aptitude upgrade
```
* Reboot the Pi.
```
sudo shutdown -r now
```
* Logging back into the Pi, install sane set of software packages.
```
sudo aptitude install git python3-pip python3-gpiozero
sudo pip3 install gpiozero antlr4-python3-runtime python-osc
```
2019-11-01 10:34:57 -04:00
## Installing
```
cd /home/pi
2019-11-03 20:29:06 -05:00
git clone --recurse-submodules https://git.company235.com/kevin/onsetswitch.git
2019-11-01 10:34:57 -04:00
cd onsetswitch
```
2019-11-03 20:29:06 -05:00
RaspberryRaspberry
2019-11-01 10:34:57 -04:00
## Configuring
### Input
Connect one side of the button to ground, the other to a GPIO pin.
![](https://gpiozero.readthedocs.io/en/stable/_images/button_bb.svg)
Configure the buttons:
```
nano buttons.cfg
```
### Output
Configure the Hog4 OSC server:
```
nano server.cfg
```
## Enabling on Boot
Link the onsetswitch service file to systemd:
```
sudo ln -s buttons.service /lib/systemd/system/buttons.service
```
Enable the service at startup:
```
sudo systemctl daemon-reload
sudo systemctl enable buttons.service
```
2019-11-03 20:29:06 -05:00
Reboot the Raspberry Pi:
2019-11-01 10:34:57 -04:00
```
sudo reboot
```