Real-time EV telemetry dashboard for UC26. Reads live sensor snapshots from shared memory and renders speed + efficiency on a Kivy UI.
minimaldash/
├─ uisensor.py # Main dashboard (live shared-memory data)
├─ uitest.py # Dashboard simulator
└─ README.md
python3 -m venv kivy_venv
source kivy_venv/bin/activate
pip install --upgrade pip
python -m pip install "kivy[full]"This step is usually not necessary as these processes should be running as systemd services.
You can probably check with systemctl status uc26_sensor.service. Otherwise,
cd uc26_sensor_reader
g++ -O2 -std=c++17 write_shm.cpp -lpigpiod_if2 -lrt -pthread -o shm_writer
sudo pigpiod
./shm_writerexport DISPLAY=:0
python uisensor.py