HBARPi is a Python based tracking tool for Hedera Hashgraph, aimed to be run on a Raspberry Pi with GPIO displays. It connects to gate.io and pulls your HBAR balance from mainnet.
This project was built using a Waveshare OLED Display which uses the SSD1306 drivers in Python. It is possible to run on other OLED displays (eg Adafruit), but you will need to locate and integrate the device specific drivers manually.
- Almost any RaspberryPi (with GPIO support):
- A SPI/I2C GPIO display (Using the SSD1306 Device Driver):
- SD Card 8GB or higher -- image it with Raspberry Pi OS Lite
- Power Cable & Charger/Battery Bank
- Burn the OS in SD Card with Raspberry Pi Imager
- Connect the display to Pi GPIO Pins
- Plug in Power
- Install OS
- Enable SPI in Raspi Config
- sudo raspi-config
- select Interface Options > SPI > Yes
- Reboot the Pi
- sudo reboot now
- Get your HBAR Wallet Address
- Install Python3, Git, and SPI
- sudo apt-get update
- sudo apt-get install python3-pip
- sudo apt-get install python3-pil
- sudo apt-get install python3-numpy
- sudo pip3 install RPi.GPIO
- sudo pip3 install spidev
- sudo pip3 install ccxt
- sudo pip3 install schedule
- sudo apt-get install git
- clone this project to RaspberryPi
- git clone https://github.com/D-Pyro/HBARPi
- Edit config.py in nano or other text editor and add your wallet
- nano HBARPi/config.py
- or open with text editor
- Then fill in the HBAR Wallet Address
- Change to project folder
- cd HBARPi
- Run it with Python3
- sudo python3 main.py