Search found 352 matches

by rcolistete
Wed Sep 23, 2020 5:25 pm
Forum: Drivers for External Components
Topic: MAX44009 Ambient Light Sensor
Replies: 3
Views: 4271

Re: MAX44009 Ambient Light Sensor

MAX44009 is an excellent light sensor, very low power, good range, etc.

Here is another MicroPython driver, I've developed with 4 versions : normal, low memory usage, BBC Micro:bit, BBC Micro:bit with low memory usage :
https://github.com/rcolistete/MicroPyth ... 009_driver
by rcolistete
Sun Sep 13, 2020 6:35 pm
Forum: Programs, Libraries and Tools
Topic: mpyaes - utility library around ucryptolib.aes
Replies: 4
Views: 3792

Re: mpyaes - utility library around ucryptolib.aes

Thanks, with your module it is a lot easier to encrypt/decrypt text and files.
by rcolistete
Sun Sep 13, 2020 6:21 am
Forum: Pyboard D-series
Topic: Pyboard D sleep current consumption
Replies: 2
Views: 2795

Re: Pyboard D sleep current consumption

I've asked about a lower power script for Pyboard D in topic "Low power support on Pyboard D : pyb.wfi, pyb.stop, pyb.standby(), etc", but this issue is open.

In topic "Power usage on Pyboard D" there are measurements with USB power. I need to make the tests using battery.
by rcolistete
Sun Sep 13, 2020 12:11 am
Forum: ESP32 boards
Topic: TTGO T-WATCH-2020
Replies: 87
Views: 110289

Re: TTGO T-WATCH-2020

After charging via USB cable, my TTGO T-Watch-2020 works without the microUSB cable, no problems at all.
As I've said in the above post :
Time from battery full to empty, about 40 hours, idle, not connected to USB cable, pressing the button to turn the screen 2-3 times a day.
by rcolistete
Sat Sep 12, 2020 8:45 pm
Forum: General Discussion and Questions
Topic: Some questions about micropython speed
Replies: 9
Views: 5002

Re: Some questions about micropython speed

See this post at topic "ulab, or what you will - numpy on bare metal" citing a FFT benchmark comparing many MicroPython boards . My suggestions to speed up : - share your MicroPython so the community can try to suggest some specific optimizations; - as pointed by @Roberthh, try to use @micropython.n...
by rcolistete
Wed Sep 09, 2020 4:24 pm
Forum: MicroPython pyboard
Topic: Finding version ---- modules of given uPython
Replies: 4
Views: 2778

Re: Finding version ---- modules of given uPython

Code: Select all

>>> help('modules')
lists the MicroPython modules included with the firmware. No need to download them.
by rcolistete
Wed Sep 09, 2020 4:21 pm
Forum: MicroPython pyboard
Topic: Best OS to support development with MicroPython and Pyboard..
Replies: 17
Views: 12599

Re: Best OS to support development with MicroPython and Pyboard..

I assume rshell works with most boards, including ESP32/ESP8266? I'd definitely be interested in checking that out in addition to Thonny/uPyCraft - @dhylands @pythoncoder ? Depending of the firmware installed on ESP8266/ESP32/etc, it can be or not compatible with rshell, mpfshell, ampy, etc. So I r...
by rcolistete
Wed Sep 09, 2020 4:14 pm
Forum: MicroPython pyboard
Topic: Best OS to support development with MicroPython and Pyboard..
Replies: 17
Views: 12599

Re: Best OS to support development with MicroPython and Pyboard..

Once I have Linux up and running, do I still need to install UART drivers for ESP32/8266? No need to install USB serial drivers on Linux. Just needed is user permission to access '/dev/ttyACM0', '/dev/ttyUSB0', etc : - on Debian : $ sudo usermod -a -G dialout $USER - on Manjaro/Arch : $ sudo gpassw...
by rcolistete
Wed Sep 09, 2020 9:06 am
Forum: MicroPython pyboard
Topic: Best OS to support development with MicroPython and Pyboard..
Replies: 17
Views: 12599

Re: Best OS to support development with MicroPython and Pyboard..

Manjaro/Arch is another Linux distribution very practical to use for Python, MicroPython and microcontroller programming. Manjaro is a rolling release distribution, with packages a lot more up to date then other Linux ditributions. Manjaro has AUR packages from the community complementing the large ...
by rcolistete
Wed Sep 09, 2020 8:37 am
Forum: MicroPython pyboard
Topic: Finding version ---- modules of given uPython
Replies: 4
Views: 2778

Re: Finding version ---- modules of given uPython

hitsware wrote:
Wed Sep 09, 2020 1:27 am
Newb ...
I have just got a PyBoard and would like to know what modules are loaded
...
To have a list of available MicroPython modules :

Code: Select all

>>> help('modules')