Display the current Bitcoin price on a Raspberry Pi Zero with Micro dot pHAT
- Raspberry Pi Zero W or Wifi dongle
- Micro dot pHAT
- Install the Micro dot pHAT on the pi
curl -sS https://get.pimoroni.com/microdotphat | bash
- clone this repo into the pi home dir
cd ~
git clone https://github.com/robertclarkson/RaspberryPiBitcoinTicker.git
sudo pip install requests
cd RaspberryPiBitcoinTicker
chmod 777 bitcoin-ticker.py
./bitcoin-ticker.py
- setup crontab (root)
sudo crontab -e
@reboot sleep 60 && /home/pi/RaspberryPiBitcoinTicker/bitcoin-ticker.py >> /home/pi/RaspberryPiBitcoinTicker/bitcoin-scroll.log 2>&1