Rick Sorensen

Results 17 comments of Rick Sorensen

This returns status_code==400 on my ESP32C3 , here is REPL : ``` >>> r = requests.get('https://aa.usno.navy.mil/api/rstt/oneday?date=2023-11-21 &coords=48.441832,9.890139 &tz=2') >>> r.json() Traceback (most recent call last): File "", line 1, in...

If I remove the space between date and `&coords` and remove the space abetween coordinates and `&tz` it works: ``` >>> r=requests.get('https://aa.usno.navy.mil/api/rstt/oneday?date=2023-11-21&coords=48.441832,9.890139&tz=2') >>> r.json() {'apiversion': '4.0.1', 'properties': {'data': {'year': 2023,...

Do all implementations now have floating point enabled? (#define MICROPY_FLOAT_IMPL MICROPY_FLOAT_IMPL_FLOAT )

I am not sure how to check. Look for a type exception maybe?. As `micropython has` matured, more boards now have at least software floating point which can be optionally...

I ran into the same problem with trying to install for secondary user on my system (Ubuntu 22.04). That user had the default "Ubuntu" desktop which I believe is Wayland...

Just a FYI on my experience compiling the latest version ... I got a good compile and running executable, but I had to go through some odd steps to get...

Maybe check to see which version of `st7789_mpy` you are using. There was a fix around mid-March for switch to `static` from the local define, and in mid November to...