From ed288003eacaa89a69f1531abe26c1e525eca3f6 Mon Sep 17 00:00:00 2001 From: Milan Toman Date: Thu, 4 Aug 2022 13:51:27 +0200 Subject: [PATCH] Measurement done --- Micropython_install.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Micropython_install.md b/Micropython_install.md index 76197c4..cbe7707 100644 --- a/Micropython_install.md +++ b/Micropython_install.md @@ -7,7 +7,14 @@ We need to dowload the latest MP binary. At the time of writing: wget https://micropython.org/resources/firmware/esp8266-1m-20220618-v1.19.1.bin Then, we need to flash the software to the microcontroller. A script that helps -us with this task is called esptool.py which can be downloaded from [https://github.com/espressif/esptool]: +us with this task is called esptool.py which can be downloaded from [HERE](https://github.com/espressif/esptool): esptool.py --port /dev/ttyUSB0 erase_flash esptool.py --port /dev/ttyUSB0 --baud 460800 write_flash --flash_size=detect -fm dout 0 esp8266-1m-20220618-v1.19.1.bin + +We need urequests as well. This is no longer the stnadard in the mikropython +default package: + + https://raw.githubusercontent.com/micropython/micropython-lib/master/python-ecosys/urequests/urequests.py + +Hopefully. Done.