Search found 22 matches

by flywire
Mon May 13, 2019 12:19 pm
Forum: Announcements and News
Topic: MicroPython version 1.10 released
Replies: 15
Views: 106457

Re: MicroPython version 1.10 released

https://github.com/espressif/esptool/releases/tag/v2.6 Version 2.6 Features: New write_flash --erase-all ... option to erase all flash before writing (single command). v1.10: Vast improvements to native emitter, new nrf port, unified documentation http://docs.micropython.org/en/latest/esp8266/tutor...
by flywire
Sat Mar 02, 2019 8:45 am
Forum: ESP8266 boards
Topic: Lolin board erase everything from flash
Replies: 6
Views: 4619

Re: Lolin board erase everything from flash

mcauser wrote:
Thu Jan 24, 2019 3:01 am
...esptool.py erase_flash will completely wipe the broken filesystem, which is restored when you run the next deploy / write_flash.
I've corrupted a few filesystems by just using poor quality old usb cables. Easily fixed.
esptool.py erase all flash before writing (single command)
by flywire
Wed Jan 09, 2019 9:37 am
Forum: General Discussion and Questions
Topic: MicroPython Documentation Discussion
Replies: 6
Views: 4820

esptool.py erase all flash before writing (single command)

wrote:
Wed Jan 09, 2019 7:46 am
https://github.com/espressif/esptool/releases/tag/v2.6
Version 2.6 Features:
New write_flash --erase-all ... option to erase all flash before writing (single command).
by flywire
Wed Jan 09, 2019 7:46 am
Forum: ESP8266 boards
Topic: howto: Flash MicroPython with nodemcu flasher and connect with putty on Windows
Replies: 12
Views: 25085

esptool.py erase all flash before writing (single command)

https://github.com/espressif/esptool/releases/tag/v2.6
Version 2.6 Features
New write_flash --erase-all ... option to erase all flash before writing (single command).
Done. The hard part will be getting MicroPython documentation updated for esptool.py.
by flywire
Mon Jan 07, 2019 11:08 am
Forum: General Discussion and Questions
Topic: MicroPython Documentation Discussion
Replies: 6
Views: 4820

Re: MicroPython Documentation Discussion

tannewt wrote:
Mon Jan 07, 2019 5:31 am
The source ... [is]: https://github.com/micropython/micropyt ... ickref.rst
Thank you, easy to edit with the pencil icon. :D

172 pull requests - hard to implement. :(
by flywire
Mon Jan 07, 2019 10:35 am
Forum: ESP8266 boards
Topic: An ESP8266 Can't Monitor Serial Connection
Replies: 7
Views: 7208

Re: Can Anyone Direct Me to I/O Serial Monitoring Example

* So essentailly, you want to replace the RPi by an ESP running micropython? Yes * The usb uart is not required as soon as your code is working right? User feedback could be disabled. :( The led on the relay is probably enough feedback. * It will be an autark system ... Automatic system I assume. * ...
by flywire
Mon Jan 07, 2019 8:51 am
Forum: ESP8266 boards
Topic: An ESP8266 Can't Monitor Serial Connection
Replies: 7
Views: 7208

Re: Can Anyone Direct Me to I/O Serial Monitoring Example

@torwag I assume photo at the end of the first sentence in this topic is not clear so to elaborate on first sentence in second paragraph: power --> relay <-> esp modem <-- power esp modem esp <-> Terminal (REPL) modem <-----------> esp <-> Terminal * Power is supplied to a KY-019 5V Relay Module (re...
by flywire
Sat Jan 05, 2019 12:08 pm
Forum: ESP8266 boards
Topic: uPyLoader Will Not Connect with USB and Serial Connection
Replies: 2
Views: 2621

uPyLoader Will Not Connect with USB and Serial Connection

uPyLoader fails to connect on a LoLin NodeMCU board by wifi or usb cable to PC if RXDO (GPIO3) is attached to modem TX, regardless of modem on/off. [TXD0 (GPIO1) and GND are attached to modem RX and GND respectively.] uPyLoader connects without problems by usb or wifi if RXD2 (GPIO13), TXD2 (GPIO15)...
by flywire
Sat Jan 05, 2019 6:39 am
Forum: Programs, Libraries and Tools
Topic: WebREPL Parameters
Replies: 5
Views: 4124

Re: WebREPL Parameters

Roberthh wrote:
Fri Jan 04, 2019 8:28 am
Clear screen ... try at REPL:

Code: Select all

print("\x1b[2J\x1b[H")
Hmm - http://ascii-table.com/ansi-escape-sequences.php, clear screen and position cursor to 0,0.

Forward to the past - adopted by Windows 10, finally!
by flywire
Fri Jan 04, 2019 10:44 am
Forum: ESP8266 boards
Topic: accessing uart0 on nodemcu board
Replies: 23
Views: 16114

Re: accessing uart0 on nodemcu board

If you write: uos.dupterm(None, 1) you disable the terminal output to UART so of course you dont see anything. Use the webrepl. Note known conflict between os.dupterm and WebREPL: https://forum.micropython.org/viewtopic.php?f=2&t=5446&hilit=WebREPL+Disconnected and maybe https://forum.micropython.o...