Version 1.8 ERRATA

All ESP8266 boards running MicroPython.
Official boards are the Adafruit Huzzah and Feather boards.
Target audience: MicroPython users with an ESP8266 board.
Post Reply
pfalcon
Posts: 1155
Joined: Fri Feb 28, 2014 2:05 pm

Version 1.8 ERRATA

Post by pfalcon » Thu May 05, 2016 9:02 pm

Unfortunately, beyond the known issues as described in the release notes for 1.8, we have some bugs sneak in. This topic tracks them and known workarounds, as well as status of the other known issues too.
  • Bug with PULL_NONE in onewire.py/neopixel.py drivers. Fixed in master, either rebuild from source, or dowload the latest versions from https://github.com/micropython/micropyt ... 66/scripts , rename to onewire_.py/neopixel_.py, and use as "import onewire_ as onewire".
  • Debug logging from ESP8266 RTOS is not disabled by default. It's actually helpful for starters to confirm/diagnose how the module connects with your access point, etc., but may interfere with production use. To disable it, execute "esp.osdebug(None)". If you want to do that automatically on boot, it should be added in boot.py of the internal filesystem.
Last edited by torwag on Wed May 11, 2016 2:18 pm, edited 1 time in total.
Awesome MicroPython list
Pycopy - A better MicroPython https://github.com/pfalcon/micropython
MicroPython standard library for all ports and forks - https://github.com/pfalcon/micropython-lib
More up to date docs - http://pycopy.readthedocs.io/

Post Reply