Search found 13 matches

by mikronauts
Wed Sep 04, 2019 12:41 am
Forum: Programs, Libraries and Tools
Topic: uMail - A lightweight SMTP client for MicroPython
Replies: 33
Views: 31760

Re: uMail - A lightweight SMTP client for MicroPython

I tried to use this great looking library today, unfortunately it had an array index issue on line 30 of umail.py

I submitted an issue on the github

https://github.com/shawwwn/uMail/issues/4

I am using an esp32 (devkitc), latest micropython, upycraft ide.

I would appreciate any suggestions.
by mikronauts
Thu Nov 03, 2016 11:52 pm
Forum: ESP8266 boards
Topic: Using the tx/rx pins not for UART
Replies: 42
Views: 48454

Re: Using the tx/rx pins not for UART

I also need to decouple the hardware uart from REPL Perhaps something like the following in boot.py import repl with one of: repl.telnet(port) repl.web(port) repl.serial(bps) with say port/bps=0 stopping it? Not really important for me, I just want to choose the repl interface in boot.py Now of cour...
by mikronauts
Thu Nov 03, 2016 11:20 pm
Forum: ESP8266 boards
Topic: RFC: Not enabling WebREPL by default on boot in 1.8.6
Replies: 21
Views: 20928

Re: RFC: Not enabling WebREPL by default on boot

Great idea! (just joined, I have only been playing with microPython for about a week) How about something like: - default boot.py has something like: import SerialREPL SerialREPL.enable(True) Which enables the standard serial REPL (which can then later be removed) and as you suggest import WebREPL W...