My LoPy board arrived

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
User avatar
bmarkus
Posts: 111
Joined: Tue Oct 21, 2014 5:58 am

My LoPy board arrived

Post by bmarkus » Tue Oct 18, 2016 10:03 am

Just received my LoPy board. It would be good to have a dedicated subforum for LoPy talks.
Tiny Core Linux (piCore) developer
HAM radio call: HA5DI (Béla)

User avatar
rcolistete
Posts: 352
Joined: Thu Dec 31, 2015 3:12 pm
Location: Brazil
Contact:

Re: My LoPy board arrived

Post by rcolistete » Tue Oct 18, 2016 11:34 am

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.
My "MicroPython Samples". My "MicroPython Firmwares" with many options (double precision, ulab, etc).

User avatar
deshipu
Posts: 1388
Joined: Thu May 28, 2015 5:54 pm

Re: My LoPy board arrived

Post by deshipu » Tue Oct 18, 2016 11:59 am

I think they could be added to the WiPy section? They are going to have a lot in common, probably.

User avatar
Frida
Posts: 45
Joined: Sat Jan 30, 2016 2:20 pm
Location: Middelfart, Denmark

Re: My LoPy board arrived

Post by Frida » Tue Oct 18, 2016 12:40 pm

rcolistete wrote: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.

Code: Select all

>>> 
>>> import micropython
>>> micropython.mem_info()
stack: 3221402640
GC: total: 192064, used: 1312, free: 190752
 No. of 1-blocks: 16, 2-blocks: 6, max blk sz: 16, max free sz: 11912
>>> import gc
>>> gc.
__name__        collect         disable         enable
isenabled       mem_free        mem_alloc       threshold
>>> gc.mem_free()
190592
>>>
Yes Frida is my watchdog!

pfalcon
Posts: 1155
Joined: Fri Feb 28, 2014 2:05 pm

Re: My LoPy board arrived

Post by pfalcon » Tue Oct 18, 2016 2:14 pm

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 pointed, WiPy forum should be the best place for related topics.
Awesome MicroPython list
Pycopy - A better MicroPython https://github.com/pfalcon/micropython
MicroPython standard library for all ports and forks - https://github.com/pfalcon/micropython-lib
More up to date docs - http://pycopy.readthedocs.io/

pfalcon
Posts: 1155
Joined: Fri Feb 28, 2014 2:05 pm

Re: My LoPy board arrived

Post by pfalcon » Tue Oct 18, 2016 2:17 pm

Frida wrote: stack: 3221402640
Funny. Is that out-of-the-package, or after firmware update as recommended? Try running following code:

Code: Select all

def foo():
    foo()
foo()


The most interesting is however what version of MicroPython it's based on - what header does it print after reset?
Awesome MicroPython list
Pycopy - A better MicroPython https://github.com/pfalcon/micropython
MicroPython standard library for all ports and forks - https://github.com/pfalcon/micropython-lib
More up to date docs - http://pycopy.readthedocs.io/

User avatar
kamikaze
Posts: 154
Joined: Tue Aug 16, 2016 10:10 am
Location: Latvia
Contact:

Re: My LoPy board arrived

Post by kamikaze » Tue Oct 18, 2016 2:55 pm

I would care about people not about enterprise "friendship" ) if people will want to go to Pycom forum - they will ) but yes... it is worth to create yet another section if there are many of such board users that create meaningful topics )
Last edited by kamikaze on Tue Oct 18, 2016 4:14 pm, edited 1 time in total.

User avatar
rcolistete
Posts: 352
Joined: Thu Dec 31, 2015 3:12 pm
Location: Brazil
Contact:

Re: My LoPy board arrived

Post by rcolistete » Tue Oct 18, 2016 3:38 pm

pfalcon wrote:
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 pointed, WiPy forum should be the best place for related topics.
LoPy is the 1st MCU board with MicroPython & LoRa, has some thousands of buyers (Kickstarters backers). Many MicroPython users are owners of Pybord, WiPy, ESP8266, LoPy, etc, because all of these boards have strenghts for some use cases.

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.

Because more MicroPython users using with more boards, better is for the MicroPython community (which is very small compared to Arduino, etc).

One option is to rename de WiPy section to "WiPy and LoPy", covering WiPy 1.0, WiPy 2.0 and LoPy. WiPy 2.0 and LoPy share many features.
My "MicroPython Samples". My "MicroPython Firmwares" with many options (double precision, ulab, etc).

pfalcon
Posts: 1155
Joined: Fri Feb 28, 2014 2:05 pm

Re: My LoPy board arrived

Post by pfalcon » Tue Oct 18, 2016 3:57 pm

rcolistete wrote: 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://forum.micropython.org/viewtopic.php?f=8&t=1350 .

However, if LoPy creators decided to create their own forum, it's their right, and owners of this forum hopefully won't try to proactively interfere with their desire to consolidate "their" users. This forum remains about all things MicroPython, and if practice shows that there's considerable share of LoPy, etc. users on this forum in 6-12 month, a dedicated section specifically for them will be explicitly designated.
Awesome MicroPython list
Pycopy - A better MicroPython https://github.com/pfalcon/micropython
MicroPython standard library for all ports and forks - https://github.com/pfalcon/micropython-lib
More up to date docs - http://pycopy.readthedocs.io/

User avatar
kamikaze
Posts: 154
Joined: Tue Aug 16, 2016 10:10 am
Location: Latvia
Contact:

Re: My LoPy board arrived

Post by kamikaze » Tue Oct 18, 2016 4:13 pm

but what would you fill separate LoPy section with? What tips'n'tricks, questions etc. would you write there? And how much? I think it's a good starting point - to start from "Others boards" and if there will be a lot of meaningful LoPy topics - then it is worth to create a separate section even if there are 2-3 active users. For me it's more about content (which could be found by Google btw), not about user count.

Post Reply