No description
Find a file
2026-01-31 04:43:43 +00:00
LoRaRF Initial Prototype 2026-01-30 22:14:18 +00:00
.gitignore Initial Prototype 2026-01-30 22:14:18 +00:00
config.toml Use different Atem library 2026-01-31 00:38:06 +00:00
main.py Fix global variable access 2026-01-31 04:43:02 +00:00
README.md Add Systemd Unit Enable 2026-01-31 04:43:43 +00:00
requirements.txt Use different Atem library 2026-01-31 00:38:06 +00:00

Atem Lora Tally

Lora Tally driven by Atem Events

Setup

enable spi in raspi-config reboot

apt install git python3-dev swig liblgpio-dev
cd /opt
git clone https://git.soontm.de/speatzle/atem-lora-tally.git
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cat <<EOT >> /etc/systemd/system/atem-lora-tally.service
[Unit]
Description=atem-lora-tally
ConditionPathExists=/opt/atem-lora-tally
After=network.target

[Service]
Type=simple
WorkingDirectory=/opt/atem-lora-tally
ExecStart=/opt/atem-lora-tally/main.py
Restart=on-failure
RestartSec=10

[Install]
WantedBy=multi-user.target
EOT

systemctl enable --now atem-lora-tally.service

Notes

Lora Based on https://www.waveshare.com/wiki/SX1262_XXXM_LoRaWAN/GNSS_HAT