https://github.com/zocker-160/pi-btc-ticker
https://github.com/zocker-160/pi-btc-ticker
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zocker-160/pi-btc-ticker
- Owner: zocker-160
- License: gpl-3.0
- Created: 2021-03-10T23:23:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-23T18:31:20.000Z (about 5 years ago)
- Last Synced: 2025-06-20T12:10:49.126Z (12 months ago)
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BTC ticker for Raspberry Pi LCD (16x2) screen
## Showcase
Thanks to [Computer Tipps](https://www.youtube.com/channel/UCcV-vxvyXHRmcQ990y4Rshw/videos) for the the [video demonstration](https://youtu.be/EGstr4VIqdQ)!
## How to install
### Requirements
- Raspberry Pi (Zero/1/2/3/4)
- LCD screen (16x2)
- Python3
- Binance API key; [create one here](https://www.binance.com/userCenter/createApi.html)
### Installation
```bash
# clone repository
git clone https://github.com/zocker-160/pi-btc-ticker.git
cd pi-btc-ticker
# install requirements
sudo -H pip3 install -r requirements.txt
# set your own Binance KEY and SECRET
nano src/main.py
# paste your key into the API_KEY and API_SECRET variables
# run
python3 src/main.py
# (optional) add to autostart
crontab -e
# add
@reboot python3 /path/to/repo/src/main.py
```
## Credits
Thanks to Felix [in this article](https://tutorials-raspberrypi.de/raspberry-pi-lcd-display-16x2-hd44780/) for the nice template for the lcd script (up to commit [427514822c039ffb7c0a27f742430b5def5ee37d](https://github.com/zocker-160/pi-btc-ticker/tree/427514822c039ffb7c0a27f742430b5def5ee37d))