Track tides and weather at local beach
For the full story and build, visit https://www.hackster.io/ssbaker/e-ink-tide-and-weather-tracker-21447b
sudo raspi-config
Navigate to Interface-->SPI and enable SPI, then reboot
sudo apt-get install libatlas-base-dev python3-pip libxslt-dev libopenjp2-7 libtiff5
pip3 install -r requirements.txt
Create the file at /etc/systemd/system/tidetracker.service
with the following contents
[Unit]
Description=tidetracker.service
After=network.target
[Service]
WorkingDirectory=/home/pi/TideTracker/
User=pi
ExecStart=/usr/bin/python3 /home/pi/TideTracker/TideTracker.py
Restart=always
[Install]
WantedBy=multi-user.target
sudo systemctl enable tidetracker.service