Controlling Sonos devices from a Feather HUZZAH (ESP8266) using MicroPython. 📻
With Python 3.5+ installed, run:
make cpython-tests
... or the hard way:
virtualenv venv
. venv/bin/activate
pip install -r requirements-cpython.txt
python -m unittest discover
With MicroPython 1.8.4+ installed, run:
make micropython-test
... or the hard way:
export MICROPYPATH=lib/
micropython -m upip install -r requirements-micropython.txt
for f in $(ls test_*); do micropython $f; done
MIT