https://github.com/perbu/micropython-talk-2020
Notes and code from my micropython talk in May 2020
https://github.com/perbu/micropython-talk-2020
Last synced: 11 months ago
JSON representation
Notes and code from my micropython talk in May 2020
- Host: GitHub
- URL: https://github.com/perbu/micropython-talk-2020
- Owner: perbu
- Created: 2020-05-14T18:14:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-19T14:09:58.000Z (about 6 years ago)
- Last Synced: 2025-07-08T18:11:18.737Z (about 1 year ago)
- Language: Python
- Size: 6.09 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Code and notes from my Micropython talk
## Installing Micropython on ESP32 and ESP8266
### Flashing the ESP32
```
esptool.py --chip esp32 --port /dev/cu.SLAB_USBtoUART write_flash -z 0x1000 esp32spiram-idf4-20200405-v1.12-337-g312c69949.bin
```
### Flashing the ESP8266
```
esptool.py --port /dev/cu.Repleo-CH341-00004114 --baud 57600 write_flash --flash_size=detect 0 esp8266-20200324-v1.12-270-g38ccb4c64.bin
```
## Tools
You'll need pip or pip3 to work in order to install these.
### esptool
```pip3 install esptool```
### pyboard
```pip3 install pyboard```
### rshell
You can find rshell here: https://github.com/dhylands/rshell