Added preliminary files

This commit is contained in:
2018-02-27 09:47:00 +02:00
parent 975c8f02de
commit ae8299c4db
7 changed files with 616 additions and 2 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
# Makefile for the board
NAME=esp32-20180222-v1.9.3-347-g6e675c1b.bin
all: flash console
flash:
esptool.py -p /dev/ttyUSB0 -b 921600 erase_flash
esptool.py -p /dev/ttyUSB0 -b 921600 write_flash --flash_mode dio 0x1000 bin/${NAME}
sleep 5
ampy -p /dev/ttyUSB0 put ssd1306.py
console:
echo "Ctrl-A + Ctrl-Q to close Picocom"
picocom -b115200 /dev/ttyUSB0
dep:
sudo apt install python3-pip
sudo pip3 install adafruit-ampy