Search found 16 matches

by andreagrandi
Fri Mar 11, 2016 11:26 am
Forum: General Discussion and Questions
Topic: SSL support in forum.micropython.org
Replies: 1
Views: 2581

SSL support in forum.micropython.org

Hi, could this forum be served through SSL, please?

At the moment not even the login is sent through SSL, all is in clear text. With LetsEncrypt we could get an SSL certificate for free. I can help with the setup if you want, I'm already using it for my personal blog.

Thank you so much.
by andreagrandi
Wed Mar 09, 2016 1:43 pm
Forum: ESP8266 boards
Topic: Huzzah ESP8266 not recognised on a MacBook Air
Replies: 3
Views: 5528

Re: Huzzah ESP8266 not recognised on a MacBook Air

Thanks for sharing andreagrandi. Have you installed the driver using the package manager or fetched them from the silicon labs? A note on the USB to UART capability check can be included in the official documentation too. I don't remember having to do that on my linux machine however. Hi, I install...
by andreagrandi
Tue Mar 08, 2016 6:39 am
Forum: ESP8266 boards
Topic: Huzzah ESP8266 not recognised on a MacBook Air
Replies: 3
Views: 5528

Re: Huzzah ESP8266 not recognised on a MacBook Air

I resolved the problem! I tried installing this driver: https://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx because that's what I found searching for the device I see when the board is connected: ➜ pydojo ioreg -p IOUSB -w0 | sed 's/[^o]*o //; s/@.*$//' | grep -v '^Root.*' BRCM2...
by andreagrandi
Tue Mar 08, 2016 6:26 am
Forum: ESP8266 boards
Topic: Huzzah ESP8266 not recognised on a MacBook Air
Replies: 3
Views: 5528

Huzzah ESP8266 not recognised on a MacBook Air

Hi, when I connect my ESP8266 board to my home MacBook Air it's not being "recognised" at all. I don't see any new device in /dev/* If I connect the board on my work MacBook Pro instead it's recognised and available on /dev/tty.SLAB_USBtoUART They are both running latest OSX (10.11.3) I can't find a...
by andreagrandi
Mon Mar 07, 2016 1:06 pm
Forum: ESP8266 boards
Topic: ESP Open SDK compile error on OSX
Replies: 5
Views: 6292

Re: ESP Open SDK compile error on OSX

pfalcon perhaps should make the "Be sure to clone recursively" line bold and in massive font :) A few people have made this mistake already. it doesn't work anyway. When I cloned it the first time I used: git clone --recursive https://github.com/pfalcon/esp-open-sdk.git and I had to use the other c...
by andreagrandi
Mon Mar 07, 2016 10:53 am
Forum: ESP8266 boards
Topic: Porting Python modules
Replies: 9
Views: 9228

Re: Porting Python modules

Hi, thanks everyone for the reply. My question wanted to be a bit more generic by the way: what needs to be done to port an existing module to MicroPython? There must be some "generic steps" like creating a specific environment, setting the micropython interpreter, installing the module, try to run ...
by andreagrandi
Mon Mar 07, 2016 6:57 am
Forum: ESP8266 boards
Topic: ESP Open SDK compile error on OSX
Replies: 5
Views: 6292

Re: ESP Open SDK compile error on OSX

Never mind, I fixed with this command:

Code: Select all

git submodule update --init
reference: http://forum.micropython.org/viewtopic.php?f=16&t=1520
by andreagrandi
Mon Mar 07, 2016 6:42 am
Forum: ESP8266 boards
Topic: ESP Open SDK compile error on OSX
Replies: 5
Views: 6292

Re: ESP Open SDK compile error on OSX

This worked! Thank you so much. I was able to install the toolchain. Now when I compile esp8266 I get another error: CC ../py/../extmod/moduheapq.c CC ../py/../extmod/moduhashlib.c ../py/../extmod/moduhashlib.c:37:37: fatal error: lib/axtls/crypto/crypto.h: No such file or directory #include "lib/ax...
by andreagrandi
Sun Mar 06, 2016 9:48 pm
Forum: ESP8266 boards
Topic: ESP Open SDK compile error on OSX
Replies: 5
Views: 6292

ESP Open SDK compile error on OSX

Hi, I'm trying to follow these instructions https://github.com/pfalcon/esp-open-sdk to build the toolchain on OSX (El Capitan) but I'm getting this error: Now configured for "xtensa-lx106-elf" sed -r -i.org s%CT_PREFIX_DIR=.*%CT_PREFIX_DIR="/Volumes/case-sensitive/esp-open-sdk/xtensa-lx106-elf"% .co...
by andreagrandi
Sat Mar 05, 2016 6:04 pm
Forum: ESP8266 boards
Topic: Porting Python modules
Replies: 9
Views: 9228

Porting Python modules

Hi, I was wondering... what is required to port a module to MicroPython? Example: suppose I really want to have the "requests" Python module available.. do I just include it in the source code and then I build the firmware or there is a specific procedure required? It would be nice (especially becau...