Error Using Python Adafruit_bbio Gpio And Adc And Beaglebone Black In Ubuntu 14.04
I'm trying to use python and import Adafruit_BBIO.GPIO and import Adafruit_BBIO.ADC to read from some pins while I write to others. But I keep getting this error: Traceback (most r
Solution 1:
A similar issue has been solved in a later version of ADC. See: issue 90
Try uninstalling Adafruit_BBIO, and then installing from the git repository:
pip uninstall Adafruit_BBIO
git clone https://github.com/adafruit/adafruit-beaglebone-io-python/
cd adafruit-beaglebone-io-python
python setup.py install
Post a Comment for "Error Using Python Adafruit_bbio Gpio And Adc And Beaglebone Black In Ubuntu 14.04"