search
[last updated: 2025-11-11]
-----
ADS1115
so after much googling, it seems the recommended procedure is to create a "vitrual environment":
python -m venv my-venv (this worked...)
my-venv/bin/pip install [some-python-library]
so the procedure I'm following from the tutorials is trying to install: adafruit-circuitpython-ads1x15
so I executed:
my-venv/bin/pip install adafruit-circuitpython-ads1x15
trying a different apaproach: googled "i2c on rpi without using adafruit library". Following their recommentdaions...
pip install smbus2 - failed for managed environment. crap.
using previous procedure for installing in virtual environment:
sudo apt install pipx && pipx install "meshtastic[cli]"
If using pipx it may be necessary to update $PATH by running:
pipx ensurepath
.
.
.
eof