This repo contains data for using DHT and Pressure sensors in esp8266 running uPython
Access http://micropython.org/ to download firmware and follow install guide.
REPL: Use picocom
: $ picocom /dev/ttyUSB0 -b115200
Send file: Use ampy
: $ ampy --port /dev/ttyUSB0 put filename.py
Remove files (REPL)
>>> import os
>>> os.listdir()
['boot.py', 'port_config.py', 'data.txt']
>>> os.mkdir('dir')
>>> os.remove('data.txt')
TODO:
- Integrate datalogger project;
- Check display driver pcd8544;
DOING:
- Display driver st7735;