Search found 3 matches

by murilopolese
Fri Nov 16, 2018 8:38 pm
Forum: ESP32 boards
Topic: Integrate filesystem into image
Replies: 3
Views: 2970

Re: Integrate filesystem into image

$ dd if=/dev/zero of=test.img bs=1m count=2 $ mkfs.fat -S 4096 -f 1 -s 1 test.img mount the image, copy files... $ esptool.py (...) write_flash 0x200000 test.img The offset is hardcoded in modesp.c, esp.user_flash_start(). Thank you! This worked like a charm! Do you know how can I merge this genera...
by murilopolese
Tue Oct 23, 2018 7:08 pm
Forum: Programs, Libraries and Tools
Topic: WebREPL Javascript Library
Replies: 0
Views: 1556

WebREPL Javascript Library

Hello! I believe WebREPL is one of the most fantastic things that happened in my life as a hobbyist, educator and professional involved with hardware development*. Recently I've been attempting to create a standalone javascript library with what I understood from the WebREPL protocol and I'm looking...
by murilopolese
Wed Oct 03, 2018 10:36 am
Forum: Programs, Libraries and Tools
Topic: MicroPython IDE
Replies: 13
Views: 37953

Re: MicroPython IDE

I use Mu Editor as my main MicroPython IDE. It's really great for small to medium projects. It works with the BBC:micro-bit and Adafruit boards but also with a few ESP8266 and ESP32. The only catch for the "non supported" boards is that you must run Mu Editor from the source code after poking a few ...