Search found 2754 matches

by jimmo
Tue Aug 30, 2022 2:25 pm
Forum: Pyboard D-series
Topic: os.statvfs() returns negative numbers in tuple
Replies: 9
Views: 98517

Re: os.statvfs() returns negative numbers in tuple

The device is a pyboard d, the micropython version is 1.15. Sorry I tried to replicate this but I wasn't sure exactly how your application works. In particular I was a bit confused by your boot.py example which appears to always unconditionally format both partitions. Is there any chance you can ma...
by jimmo
Tue Aug 30, 2022 2:23 pm
Forum: General Discussion and Questions
Topic: Migration Away from MicroPython.org to GitHub?
Replies: 7
Views: 30299

Re: Migration Away from MicroPython.org to GitHub?

I had tried the "triple backtick" before posting my question. The problem I saw, was it merged all instructions on a single line with only a space in between. Then, when I added a CRLF it put an empty line between each instruction. Is that normal? For example: https://github.com/orgs/micropython/di...
by jimmo
Mon Aug 29, 2022 1:38 pm
Forum: Raspberry Pi microcontroller boards
Topic: Pico W server stops after a while loop
Replies: 6
Views: 29025

Re: Pico W server stops after a while loop

Thanks Jimmo for the response. I saw this very late:(. By the frame you mean at the end of the loop that I want it to continue until I say not to do so? I remember I have tried that but not sure 100%. Will try that and post an update. I think I would need to see your code... can you post it here? B...
by jimmo
Sun Aug 28, 2022 10:14 pm
Forum: Raspberry Pi microcontroller boards
Topic: API for Microsoft OneDrive
Replies: 3
Views: 22253

Re: API for Microsoft OneDrive

There's a REST API - https://docs.microsoft.com/en-us/onedri ... aph-online

You should likely be able to access this using urequests and json.

This is for php but will give you a bit of an overview: https://onlinecode.org/onedrive-rest-api-using-php/
by jimmo
Sun Aug 28, 2022 10:10 pm
Forum: General Discussion and Questions
Topic: esptool.py version / installation
Replies: 1
Views: 18799

Re: esptool.py version / installation

Hi,

Could you please post some screenshots or copy in the exact commands you ran?

I'm not quite sure if there is a problem though, v4.2.1 is the latest version.
by jimmo
Sun Aug 28, 2022 11:24 am
Forum: Other Boards
Topic: [teensy41] help getting started
Replies: 8
Views: 27548

Re: [teensy41] help getting started

We should definitely improve the port-autodetection on macOS. (Someone with a Mac, please send a PR if possible! :) ) We definitely need to improve the documentation about the way the command chaining works. The other option is to add an alias to the mpremote config file (e.g. ~/.config/mpremote/con...
by jimmo
Sun Aug 28, 2022 11:21 am
Forum: Announcements and News
Topic: Migration to GitHub Discussions
Replies: 20
Views: 157998

Re: Migration to GitHub Discussions

I think that must be it, I was viewing the normal desktop version on my ipad. I got the the github from the link in the forum, and that link came up in the ipads safari browser. I've now found a github app, but sad to say it will not install as it informs me that I need IOS 14.0 or later. My ipad a...
by jimmo
Sun Aug 28, 2022 11:17 am
Forum: Pyboard D-series
Topic: os.statvfs() returns negative numbers in tuple
Replies: 9
Views: 98517

Re: os.statvfs() returns negative numbers in tuple

MicroRichard wrote:
Tue Aug 23, 2022 2:41 pm
The device is a pyboard d, the micropython version is 1.15.
It would be interesting to know if this still happens on 1.19.1. There's been a bit of work done in this area since 1.15 I think.

I will try and replicate this and raise a bug if possible.
by jimmo
Sat Aug 27, 2022 10:16 pm
Forum: Announcements and News
Topic: Migration to GitHub Discussions
Replies: 20
Views: 157998

Re: Migration to GitHub Discussions

I just had a look at the GitHub Discussions. Probably OK on a PC with a large screen, but the postings bit is on the a panel in the middle of the screen, with equal screen estate being given to a left panel showing the topic sections and a right panel showing some voting stuff. Only a third of the ...
by jimmo
Sat Aug 27, 2022 11:15 am
Forum: Development of MicroPython
Topic: Implementing network support for the RP2040 and an ESP8266
Replies: 4
Views: 25946

Re: Implementing network support for the RP2040 and an ESP8266

The ESP8266 has a "AT firmware" available from Espressif that provides a socket-like API over the UART. I used this to add WiFi to projects back before I got involved in MicroPython. At this stage, it's not worth the effort to build this into MicroPython (i.e. integrate it with the built-in socket m...