Search found 5 matches

by hjm
Wed Mar 09, 2016 6:35 pm
Forum: ESP8266 boards
Topic: New *early access* mp-esp8266-firmware-vXY.bin on ESP8266
Replies: 49
Views: 46672

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

Just out of curiosity, the 'pyb' module methods of PyBoard and the 'machine' methods of ESP8266 are syntactically different even if referring to same functions. E.g. 'i2c.send()' of PyBoard's pyb vs 'i2c.writeto()' of ESP8266's machine. Is there a specific reason for this?
by hjm
Mon Mar 07, 2016 8:58 am
Forum: ESP8266 boards
Topic: Downloading, Building and Deploying the Firmware
Replies: 17
Views: 19694

Re: Downloading, Building and Deploying the Firmware

I am using a Debian Jessie 8.3 system. So I skipped the Rpi instructions in the Instuctables You'll need to build the ESP SDK first. Although written for RPi, these instructions should work for your Debian system as well. I've got this point in your instructions: git clone git@github.com:micropytho...
by hjm
Sun Mar 06, 2016 11:11 am
Forum: ESP8266 boards
Topic: Downloading, Building and Deploying the Firmware
Replies: 17
Views: 19694

Re: Downloading, Building and Deploying the Firmware

Could someone please outline the process of downloading, building then deploying the firmware for a beginner? There are probably a lot of people like me that have used the Arduino IDE to program the Huzzah/ESP8266 but would like to begin to learn how to install the MicroPython firmware in preparati...
by hjm
Sun Mar 06, 2016 10:23 am
Forum: ESP8266 boards
Topic: Using time.sleep() or pyb.delay() crashes the ESP8266 board
Replies: 3
Views: 6911

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. Mianos, thanks for your response! I e...
by hjm
Sat Mar 05, 2016 4:09 pm
Forum: ESP8266 boards
Topic: Using time.sleep() or pyb.delay() crashes the ESP8266 board
Replies: 3
Views: 6911

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

Not sure if there is something I'm overlooking (new to the ESP8266 board and MicroPython), but found an issue today that I narrowed done to timing functions (in any case 'time.sleep()' and 'pyb.delay()'). For instance, when I execute this code: >>> import time >>> for i in range(10): ... print("Hell...