gordona23
gordona23
Has anyone had success running Python OBD on a microcontroller that supports Circuit Python. In other words, without an OS ?
I made the assumption that Python-OBD would work with both Bluetooth and BLE code readers. I'm having trouble with a BLE reader. Is BLE supported ? Thx
Trying to run Python-OBD on Raspberry Pi Zero 2W. Here's the code: import sys sys.path.insert(0, '/home/gordona/my-venv/lib/python3.11/site-packages') import obd obd.logger.setLevel(obd.logging.DEBUG) ports = obd.scan_serial() print (ports) connection = obd.OBD() fast=False timeout=30 cmd...