Search found 84 matches

by mianos
Fri Mar 18, 2016 10:12 pm
Forum: ESP8266 boards
Topic: New *early access* mp-esp8266-firmware-vXY.bin on ESP8266
Replies: 49
Views: 46937

Re: New mp-esp8266-firmware-vXY.bin on ESP8266

As said, it uses a different register setup.
In my port it works fine as an output (it is connected to an LED on some of my boards).
The guys just added support for it in the main branch as a special case last week so I'm sure it will start working soon.
by mianos
Mon Mar 14, 2016 8:51 pm
Forum: ESP8266 boards
Topic: new WEMOS Oled shield
Replies: 4
Views: 6941

new WEMOS Oled shield

http://www.aliexpress.com/store/product ... 87079.html

How cool is this. Wifi, MCU and a display for 13 bucks.
(Now if my original wemos arrived, I ordered them during CNY :( )
by mianos
Sat Mar 05, 2016 11:17 pm
Forum: ESP8266 boards
Topic: Using time.sleep() or pyb.delay() crashes the ESP8266 board
Replies: 3
Views: 6952

Re: Using time.sleep() or pyb.delay() crashes the ESP8266 board

This does not work on the board with the current ESP version. The time prevents the watchdog and wifi and the board resets. You either need to use my port with the os_timer, or simpler, wait a few weeks for the new official version that has much the same thing.
by mianos
Thu Mar 03, 2016 11:56 pm
Forum: ESP8266 boards
Topic: ESP-Board Variations - Availability and MicroPython Support
Replies: 12
Views: 14822

Re: ESP-Board Variations - Availability and MicroPython Support

I have 8 boards (and one more type in the mail). I can run tests on all of these. I also think I have a 512k ESP02 that I can test. Just thinking off the top of my head, I could wack them all on a powered USB hub and test them all in one go if I can hold down the GPIO with a solid paper clip. Person...
by mianos
Mon Feb 29, 2016 9:21 pm
Forum: ESP8266 boards
Topic: MicroPython on ESP8266 Kickstarter
Replies: 91
Views: 211699

Re: MicroPython on ESP8266 Kickstarter

26K! Asyncio FTW!
by mianos
Tue Feb 23, 2016 10:54 pm
Forum: ESP8266 boards
Topic: MicroPython on ESP8266 Kickstarter
Replies: 91
Views: 211699

Re: MicroPython on ESP8266 Kickstarter

Wow we are going to get some native Xtensa love! I am sure this will take a bit of time but I am quite looking forward to having a bit of a play with this.
by mianos
Fri Feb 19, 2016 10:36 pm
Forum: Other Boards
Topic: new mini board from WeMoS
Replies: 0
Views: 2823

new mini board from WeMoS

http://www.aliexpress.com/store/1331105
The add ons with the DHT22 and SD card look interesting.
by mianos
Wed Feb 10, 2016 12:43 am
Forum: ESP8266 boards
Topic: MicroPython on the ESP8266: beautifully easy IoT
Replies: 7
Views: 8464

Re: MicroPython on the ESP8266: beautifully easy IoT

As the author of the fork, I agree. Wait for the official port. The port will include a makefile for pfalcon's idk and probably significantly more. While my fork has a lot more functionality than the esp code in the official repository most of it will be duplicated in the offical port and have the o...
by mianos
Tue Feb 09, 2016 9:59 am
Forum: Other Boards
Topic: Robo's esp'ecial ESP8266 fork
Replies: 28
Views: 28762

Re: Robo's esp'ecial ESP8266 fork

All I do is git clone Paul's sdk. Checkout the subprojects as instructed and 'make' (takes a while on my Linux box).
Then I clone micropython, cd micropython/esp8266
export PATH=/home/rfo/wa/esp-open-sdk/xtensa-lx106-elf/bin:$PATH

and type
make
I just did it then.
by mianos
Tue Feb 09, 2016 3:04 am
Forum: Other Boards
Topic: Robo's esp'ecial ESP8266 fork
Replies: 28
Views: 28762

Re: Robo's esp'ecial ESP8266 fork

main.c:40:28: fatal error: user_interface.h: No such file or directory #include "user_interface.h" [/code] Ideas what went wrong? That header in esp-open-sdk/sdk/include so it's possible you have not got the SDK installed properly? I use Paul's repo https://github.com/pfalcon/esp-open-sdk.git and s...