Search found 99 matches

by rpr
Fri Jul 30, 2021 1:55 am
Forum: ESP8266 boards
Topic: Which board for deep sleep?
Replies: 13
Views: 5730

Re: Which board for deep sleep?

My bad. Did not see you wanted the esp8266.
by rpr
Fri Jul 30, 2021 12:24 am
Forum: ESP8266 boards
Topic: Which board for deep sleep?
Replies: 13
Views: 5730

Re: Which board for deep sleep?

I too have no recommendations. But, have you seen Andreas Spiess' Youtube videos?

e.g. https://www.youtube.com/watch?v=mnoZYlyebBc

There is a spreadsheet in the video description.

I don't think the tests were done with Micropython.
by rpr
Sat Apr 24, 2021 5:21 pm
Forum: ESP32 boards
Topic: Error running ver 1.15 on ESP32-S2
Replies: 10
Views: 6014

Re: Error running ver 1.15 on ESP32-S2

I don't have any of the ESP32-S2 boards but does micropython work if you build it with the generic board def.

ETA: Looks like support was added 10 days ago. I will order one of these boards to play around.
by rpr
Sat Apr 24, 2021 4:58 pm
Forum: ESP32 boards
Topic: Error running ver 1.15 on ESP32-S2
Replies: 10
Views: 6014

Re: Error running ver 1.15 on ESP32-S2

I don't think micropython has been ported yet to the ESP32-S2.
by rpr
Sat Apr 24, 2021 4:06 am
Forum: Development of MicroPython
Topic: Nucleo F429ZI DAC/ADC
Replies: 2
Views: 3081

Re: Nucleo F429ZI DAC/ADC

I was able to get the DAC to work by adding the following line

#define MICROPY_HW_ENABLE_DAC (1)

to the end of

ports/stm32/boards/NUCLEO_F429ZI/mpconfigboard.h

and recompiling the micropython firmware.
by rpr
Sat Jan 30, 2021 3:33 am
Forum: Programs, Libraries and Tools
Topic: rshell cp command not working on Raspberry Pi Pico with MicroPython installed
Replies: 37
Views: 21420

Re: rshell cp command not working on Raspberry Pi Pico with MicroPython installed

I have a version of rshell that works for me (at least better than the released version). It can be found on the pico branch of https://github.com/dhylands/rshell If you checkout the git repository you can use the ./r.py script to run rshell from your local github tree. The changes I made are here:...
by rpr
Wed Jan 27, 2021 7:09 pm
Forum: MicroPython pyboard
Topic: Why the file I created is not created?
Replies: 15
Views: 7958

Re: Why the file I created is not created?

You are correct. Typo on my part. It should be VCP.
by rpr
Wed Jan 27, 2021 5:27 pm
Forum: MicroPython pyboard
Topic: Why the file I created is not created?
Replies: 15
Views: 7958

Re: Why the file I created is not created?

One note ahead: Managing files both on the device and form the PC using e.g. explorer turned out to be a reliable way to corrupt teh files system on your pyboard. That's wha for instance Adafruit decided to make the access exclusive. If PC file access is enabled, any board-local changes are suppres...
by rpr
Tue Jan 26, 2021 11:51 pm
Forum: Other Boards
Topic: Nucleo stm32 F429ZI MQTT
Replies: 11
Views: 7899

Re: Nucleo stm32 F429ZI MQTT

So it is possible. But small modification of utelnetserver.py is necessary. Last lines need to be changed from WiFi to LAN. From this: for i in (network.AP_IF, network.STA_IF): wlan = network.WLAN(i) if wlan.active(): print("Telnet server started on {}:{}".format(wlan.ifconfig()[0], port)) to this:...
by rpr
Mon Jan 25, 2021 7:25 am
Forum: General Discussion and Questions
Topic: RPi makes ther own Mico controller
Replies: 12
Views: 5968

Re: RPi makes ther own Mico controller

OutoftheBOTS_ wrote:
Mon Jan 25, 2021 6:59 am

Ha Ha Ha. I am certainly finding it hard to resist the urge to buy 1 and have a play with it, as it looks super interesting and RPi is usually very well supported fro beginners.
I succumbed. Placed the order already. Looking forward to playing with it.