This commit is contained in:
KenwoodFox
2026-06-15 10:32:37 -04:00
parent c7accf6ec6
commit f49ff99b6b
15 changed files with 353 additions and 191 deletions

View File

@@ -3,16 +3,24 @@
I wrote this to control the "hardware" on KW1FOX-1 tower.
its.. not really intended for use anywhere else but, if anything inspires you go ahead and grab it!
Just some simple python.
# Install
## Install
```shell
sudo git clone https://git.kitsunehosting.net/Kenwood/towerd.git /opt/towerd
cd /opt/towerd
sudo python3 -m venv venv
sudo venv/bin/pip install -r requirements.txt
cargo build --release
sudo cp systemd/towerd.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now towerd
```
```
## Usage
```shell
./target/release/towerd --verbose
# systemd
sudo systemctl status towerd
sudo journalctl -u towerd -f
```