Digital nametag with endless posibilities. Pure python microcontroller programming using an ESP8266 with an OLED display and MicroPython. After device setup use a web browser to code offline.
Open Hardware & Open Software
- Install git
https://git-scm.com/downloads
- Install Python 3.6 or greater and python3-venv
https://www.python.org/downloads/
apt install -y git python3 python3-venv
brew install python3 git
choco install python3 git
git clone https://github.com/sdaves/micronametag
cd examples/nametag
python3 -m venv ../../venv
source ../../venv/bin/activate
pip install py-make
pymake setup # or make setup
Copy the .envtemplate
file to a new file called .env
and edit the following application security settings:
WEBREPL_PASSWORD=WEBREPL_PASSWORD_
WIFI_SSID=net
WIFI_PSK=password
source ../../venv/bin/activate
pymake upload # or make upload
source ../../venv/bin/activate
pymake serial # or make serial