Search found 165 matches

by bitninja
Tue May 11, 2021 7:51 pm
Forum: Programs, Libraries and Tools
Topic: Windows Application Based on PYBOARD.PY
Replies: 1
Views: 2299

Windows Application Based on PYBOARD.PY

New Program Announcement Pyboard File Manager https://github.com/joewez/PyboardFileManager https://raw.githubusercontent.com/joewez/PyboardFileManager/85abeb39655431e32a8d3af4357bd93777fc4c9c/pybfm.jpg It's very similar to my previous app based on AMPY, but is actually faster and more capable. Fast...
by bitninja
Sun Jan 03, 2021 3:35 pm
Forum: General Discussion and Questions
Topic: ESP8266 WiFi client
Replies: 12
Views: 5875

Re: ESP8266 WiFi client

Ah, I see what you mean.

Yes, that would a problem if enzo is not expecting the disconnect/connects.
by bitninja
Sat Jan 02, 2021 7:19 am
Forum: General Discussion and Questions
Topic: ESP8266 WiFi client
Replies: 12
Views: 5875

Re: ESP8266 WiFi client

Yes, but the fact that they are spontaneously being emitted suggests that something untoward is happening. I don't believe so. I have always seen these messages when working with the ESP8266. By default the latest image (esp8266-20200911-v1.13.bin) seems to be setup to have the Access Point enabled...
by bitninja
Thu Dec 31, 2020 7:32 pm
Forum: General Discussion and Questions
Topic: ESP8266 WiFi client
Replies: 12
Views: 5875

Re: ESP8266 WiFi client

Those are normal ESP debug messages. Add...

Code: Select all

import esp
esp.osdebug(None)
And the messages will be suppressed.
by bitninja
Fri Jun 12, 2020 2:44 pm
Forum: ESP8266 boards
Topic: Get large log files from sd card over wifi?
Replies: 3
Views: 2492

Re: Get large log files from sd card over wifi?

I use...

https://github.com/robert-hh/FTP-Server ... 2-and-PYBD

and am able to transfer files from the file system AND the sdcard much larger than 20MB.
by bitninja
Mon May 18, 2020 4:50 pm
Forum: General Discussion and Questions
Topic: searchig for a file in sd
Replies: 4
Views: 2976

Re: searchig for a file in sd

Manually is all I know about... import os def merge(*args): r = '' slash = '/' for part in args: r += (slash + part) r = r.replace(3 * slash, slash) r = r.replace(2 * slash, slash) if r != slash and r[-1] == slash: r = r[:-1] return r def find(target_file, path='/', recurse=False): # create list of ...
by bitninja
Thu Apr 30, 2020 10:21 pm
Forum: Newsletter archive
Topic: MicroPython Newsletter Issue 10
Replies: 2
Views: 38006

Re: MicroPython Newsletter Issue 10

Congratulations Damien on 7 years of success! And I wish you many, many more years of growth and prosperity.

MicroPython is an amazing achievement, and I enjoy using it every day.

Thanks for taking those first few steps so many years ago!

J.G. Wezensky
by bitninja
Thu Apr 30, 2020 10:12 pm
Forum: ESP8266 boards
Topic: What makes WiFi config persistent?
Replies: 6
Views: 6484

Re: What makes WiFi config persistent?

If you edit your boot.py you can un-comment the

Code: Select all

import esp
esp.osdebug(None)
lines and that will remove most of the messages. I still get one message when I connect but otherwise it stays quiet.
by bitninja
Thu Apr 30, 2020 10:03 pm
Forum: ESP8266 boards
Topic: How much memory should a ESP8266 D1 Mini have available?
Replies: 5
Views: 26691

Re: How much memory should a ESP8266 D1 Mini have available?

There is a difference between Flash memory and the memory you have available for your programs (RAM). The 33K available is memory you have for variables and running MicroPython. The 4MB of flash memory is split between storing Micropython itself and the rest is used as the file system for storing yo...
by bitninja
Sun Apr 19, 2020 12:01 am
Forum: ESP8266 boards
Topic: Problem on building ESP8266 port's firmware
Replies: 11
Views: 6535

Re: Problem on building ESP8266 port's firmware

Hi, You should be seeing the exact same thing when you load your own .bin, so there must be something going awry there. They have updated the build process somewhat since the first video was made... (I should know... I'm the one who made it! :o) Yes, you no longer have to build AXTLS separately. I w...