Search found 647 matches

by Damien
Fri Jun 17, 2022 3:09 am
Forum: Announcements and News
Topic: MicroPython version 1.19 released
Replies: 18
Views: 85592

Re: MicroPython version 1.19 released

A bug was found in v1.19 on esp32, the machine.SoftI2C.readfrom_mem() method does not work properly.

A new release v1.19.1 has now been made with a fix for this. Please use v1.19.1 instead of v1.19 (but it only matters for esp32 boards).
by Damien
Thu Jun 16, 2022 6:29 am
Forum: Announcements and News
Topic: MicroPython version 1.19 released
Replies: 18
Views: 85592

MicroPython version 1.19 released

Dear community, After a bit of a delay, we are pleased to announce the next release of MicroPython, v1.19! There were 617 commits since the last release on 17th January 2022, so there were about 4.1 commits per day since then (it was 2.5 commits per day for the previous release). Source code and fir...
by Damien
Mon Jan 17, 2022 1:05 am
Forum: Announcements and News
Topic: MicroPython version 1.18 released
Replies: 20
Views: 111593

MicroPython version 1.18 released

Dear community, We are pleased to announce the next release of MicroPython, v1.18! There were 335 commits since the last release on 2nd September 2021, so there were about 2.5 commits per day since then. Source code and firmware can be downloaded from https://micropython.org/download/ The full chang...
by Damien
Thu Nov 04, 2021 4:46 am
Forum: Programs, Libraries and Tools
Topic: Can't edit the Wiki
Replies: 8
Views: 5043

Re: Can't edit the Wiki

I've updated the wiki base URL to now go straight to the new MediaWiki installation: https://wiki.micropython.org The previous Gollum-based wiki is now found by inserting "gollum/" in the URL, eg https://wiki.micropython.org/gollum/Home I've also added a link from the new wiki to the old gollum one ...
by Damien
Thu Sep 02, 2021 1:56 am
Forum: Announcements and News
Topic: MicroPython version 1.17 released
Replies: 1
Views: 34310

MicroPython version 1.17 released

Dear community, We are pleased to announce the next release of MicroPython, v1.17! This release aims to follow the schedule of a release every 2 months (or so), and the previous v1.16 was released 18th June 2021. Source code and firmware can be downloaded from https://micropython.org/download/ The f...
by Damien
Thu Apr 29, 2021 7:12 am
Forum: Newsletter archive
Topic: MicroPython Newsletter Issue 11
Replies: 2
Views: 32616

MicroPython Newsletter Issue 11

Dear community, Today is MicroPython's 8th Birthday! The 29th of April marks the date on which the first line of code was written, which is now 8 years ago! It has also been exactly a year since the last newsletter... so here is an update on the main things that have happened since then. In the past...
by Damien
Thu Apr 22, 2021 12:00 am
Forum: General Discussion and Questions
Topic: Build firmware v1.14 with IDF 4.2 problems
Replies: 3
Views: 4350

Re: Build firmware v1.14 with IDF 4.2 problems

I think you need to install cmake version 3.12 or greater. Which version of cmake do you currently have?
by Damien
Tue Feb 09, 2021 7:45 am
Forum: General Discussion and Questions
Topic: Asyncio in uPython 1.14 has not "run"???
Replies: 18
Views: 11267

Re: Asyncio in uPython 1.14 has not "run"???

In the forum we often refer to using uasyncio for programming, I think it is a core module that should be available everywhere. Even more than modules like btree, who are (as far as I can tell) are not widely used. Yep, I agree. Might be a good idea to revisit the esp8266 1M board definition to see...
by Damien
Tue Feb 09, 2021 1:02 am
Forum: General Discussion and Questions
Topic: Asyncio in uPython 1.14 has not "run"???
Replies: 18
Views: 11267

Re: Asyncio in uPython 1.14 has not "run"???

esp8266 builds for 1M modules do not have uasyncio included in them (maybe we can add it to them, not sure if there's enough space left on the 1M builds). The reason you can import uasyncio on your board is because it's been installed via upip and resides in the filesystem. I've now updated upip so ...
by Damien
Sat Feb 06, 2021 1:31 am
Forum: General Discussion and Questions
Topic: MicroPython security process?
Replies: 2
Views: 3236

Re: MicroPython security process?

Hi! The general answer to your questions is that, if you develop an IoT device and security is important to the application, then you should have your own procedures in place to make sure your device and all the code meets the security requirements (or otherwise) of the application. For example, Mic...