Mike Cifelli 11f3ed7679 | ||
---|---|---|
.gitignore | ||
.tool-versions | ||
README.md | ||
character_display.py | ||
chutney.py | ||
chutney.sample.cfg | ||
chutney.service | ||
colors.py | ||
garage_display.py | ||
garage_updater.py | ||
install | ||
time_display.py | ||
weather_display.py | ||
weather_updater.py |
README.md
chutney
Dependencies
sudo raspi-config nonint do_spi 0
sudo apt install python3-pip python3-dev python3-spidev
sudo pip3 install unicornhathd
Configuration
cp chutney.sample.cfg chutney.cfg
Installation
sudo ./install
Output
By default output will be in /var/log/syslog
.
A separate log file can be used by creating /etc/rsyslog.d/30-chutney.conf
containing:
if $programname == 'chutney' then /var/log/chutney.log
& stop
and then restart the rsyslog service:
sudo systemctl restart rsyslog
This log file can be rotated by creating /etc/logrotate.d/chutney
containing:
/var/log/chutney.log
{
rotate 14
daily
create
missingok
notifempty
compress
delaycompress
postrotate
/usr/lib/rsyslog/rsyslog-rotate
endscript
}