Search found 352 matches

by rcolistete
Sun Oct 23, 2016 5:34 am
Forum: WiPy and CC3200 boards
Topic: WiPy 2/ESP32 specs and performance
Replies: 13
Views: 22640

WiPy 2/ESP32 specs and performance

Some WiPy 2 specs and performance that it would be useful to know, theoretically and measured : - free RAM (depends on firmware version); - flash memory available for MicroPython user; - WiFi speed and range in real user cases; - Bluetooth speed and range in real user cases. ESP32 (used by LoPy and ...
by rcolistete
Sun Oct 23, 2016 5:32 am
Forum: ESP32 boards
Topic: LoPy specs and performance
Replies: 3
Views: 8934

LoPy specs and performance

About common features of LoPy with WiPy 2.0 and ESP32, see this topic : http://forum.micropython.org/viewtopic.php?f=11&t=2552 Some LoPy specs and performance that it would be useful to know, theoretically and measured : - flash memory available for MicroPython user; - LoRa speed and range in real u...
by rcolistete
Sun Oct 23, 2016 4:57 am
Forum: Other Boards
Topic: Teensy 3.5 & 3.6 support
Replies: 26
Views: 30190

Re: Teensy 3.5 & 3.6 support

Thanks. Teensy 3.5/3.6 with ADC (13-16 bits, 2 channels, 24/26 ports) and sd card will be a great MCU board por data logging using MicroPython.
by rcolistete
Wed Oct 19, 2016 1:26 pm
Forum: General Discussion and Questions
Topic: Free RAM on MicroPython boards
Replies: 37
Views: 76074

Re: Free RAM on MicroPython boards

bmarkus wrote:On a LoPy v1.0 board with stock firmware

Code: Select all

>>> import gc
>>> gc.collect()
>>> gc.mem_free()
191088
>>>
Thanks. Please state the firmware version.
by rcolistete
Tue Oct 18, 2016 4:36 pm
Forum: ESP32 boards
Topic: My LoPy board arrived
Replies: 22
Views: 22237

Re: My LoPy board arrived

2x for a LoPy section in this forum, like the one for WiPy. Please, measure the free RAM after login (or reset) with : import micropython micropython.mem_info() or : import gc gc.mem_free() and share with us. >>> >>> import micropython >>> micropython.mem_info() stack: 3221402640 GC: total: 192064,...
by rcolistete
Tue Oct 18, 2016 4:25 pm
Forum: ESP32 boards
Topic: My LoPy board arrived
Replies: 22
Views: 22237

Re: My LoPy board arrived

IMHO, it is nonsense to try to hide one of two great MicroPython 2016 announcements (ESP8266 with MicroPython & LoPy in January/February 2016) from the MicroPython community. Then you must have been sitting under the rock, because everyone on this forum knew about that yet in January/February: http...
by rcolistete
Tue Oct 18, 2016 4:06 pm
Forum: General Discussion and Questions
Topic: Free RAM on MicroPython boards
Replies: 37
Views: 76074

Re: Free RAM on MicroPython boards

Updated the 1st post with measured free RAM for LoPy, Espruino Pico and Teensy 3.1.
by rcolistete
Tue Oct 18, 2016 3:38 pm
Forum: ESP32 boards
Topic: My LoPy board arrived
Replies: 22
Views: 22237

Re: My LoPy board arrived

It would be good to have a dedicated subforum for LoPy talks. Pycon created dedicated forum on their site, so I don't think it would be friendly action to create a section here, unless there will be *really* many people who want to talk about LoPy on this forum and not on that. In the meantime, as ...
by rcolistete
Tue Oct 18, 2016 11:47 am
Forum: WiPy and CC3200 boards
Topic: WiPy 2.0 useful links
Replies: 0
Views: 6002

WiPy 2.0 useful links

Some WiPy 2.0 useful links : WiPy 2.0 Getting Started : https://www.pycom.io/gettingstarted/ Official documentation : https://docs.pycom.io/wipy2/ Firmware Updates and other support files : https://www.pycom.io/support/supportdownloads/ More support files (pin out, etc) : [url]ttps://github.com/pyco...
by rcolistete
Tue Oct 18, 2016 11:34 am
Forum: ESP32 boards
Topic: My LoPy board arrived
Replies: 22
Views: 22237

Re: My LoPy board arrived

2x for a LoPy section in this forum, like the one for WiPy.

Please, measure the free RAM after login (or reset) with :

Code: Select all

import micropython
micropython.mem_info()
or :

Code: Select all

import gc
gc.mem_free()
and share with us.