Search found 1388 matches

by deshipu
Thu Apr 14, 2016 1:12 pm
Forum: ESP8266 boards
Topic: Determine flash size on your module
Replies: 14
Views: 44435

Re: Determine flash size on your module

Personally, I always just used the Arduino IDE and flashed this example on the board:
https://github.com/esp8266/Arduino/tree ... lashConfig

Then it will print all the relevant information on the serial.
by deshipu
Wed Apr 13, 2016 8:42 pm
Forum: ESP8266 boards
Topic: ssd1306 using I2C on the esp8266
Replies: 54
Views: 64610

Re: ssd1306 using I2C on the esp8266

I just tested a small I²C SSD1306 display with the driver that is now included in drivers/display, and it works flawlessly: IMG_20160413_223240.jpg This is the result of the following code: import ssd1306 from machine import I2C, Pin import math i2c = I2C(sda=Pin(4), scl=Pin(5)) display = ssd1306.SS...
by deshipu
Tue Apr 12, 2016 3:50 pm
Forum: ESP8266 boards
Topic: Corrupted filesystem
Replies: 15
Views: 19573

Re: Corrupted filesystem

I didn't resolve that, to be honest, the project is a on the back burner for a little bit, until I regain motivation for it. I suspect it's the usual problems with power, although the board has an MCP1700-3302E/TO regulator on it, which should be more than adequate...
by deshipu
Tue Apr 12, 2016 6:37 am
Forum: ESP8266 boards
Topic: Early access releases #3 & #4
Replies: 51
Views: 41788

Re: Early access release #3

You released v3 just as I was leaving for a conference (on which we had workshop using your Micropyhon for ESP8266!), and now I'm going to be out of the loop for a couple more days. I see there is a filesystem support now in the github, which is great. I would have never guessed the python part of i...
by deshipu
Sun Apr 10, 2016 8:53 pm
Forum: ESP8266 boards
Topic: Cannot (re) flash new firmware-combined.bin
Replies: 8
Views: 7482

Re: dont (re) flash new firmware-combined.bin

I'm glad you resolved it. I think it's generally impossible to break the ESP8266 by bad flashing -- unless you break the flash memory itself somehow. The boot mode selection comes before the module even looks at the flashed code, so no way you could break that. Power is, however, a common source of ...
by deshipu
Sat Apr 09, 2016 6:32 pm
Forum: ESP8266 boards
Topic: Cannot (re) flash new firmware-combined.bin
Replies: 8
Views: 7482

Re: dont (re) flash new firmware-combined.bin

Do you also have GPIO15 pulled down?
by deshipu
Thu Apr 07, 2016 8:39 pm
Forum: ESP8266 boards
Topic: Cannot (re) flash new firmware-combined.bin
Replies: 8
Views: 7482

Re: dont (re) flash new firmware-combined.bin

Did you forget to pull the GPIO0 down to bring your module into flashing mode?
by deshipu
Tue Apr 05, 2016 1:47 pm
Forum: ESP8266 boards
Topic: One month's development report on MicroPython ESP8266 port
Replies: 9
Views: 16207

Re: One month's development report on MicroPython ESP8266 port

Thank you. I suppose I didn't try hard enough and/or didn't look in the right places.
by deshipu
Tue Apr 05, 2016 10:07 am
Forum: Hardware Projects
Topic: Tote, a quadruped robot
Replies: 1
Views: 6720

Tote, a quadruped robot

Tote is my effort for lowering the barrier of entry into the world of hobby robotics in general, and serious walking robots in particular. The idea is to provide a starting point for building your robot, that would get you through the initial hurdle of figuring out the mechanics, inverse kinematics ...
by deshipu
Mon Apr 04, 2016 7:06 am
Forum: ESP8266 boards
Topic: One month's development report on MicroPython ESP8266 port
Replies: 9
Views: 16207

Re: One month's development report on MicroPython ESP8266 port

Support for mounting filesystem in userspace (real filesystem, with long names and directories) So how do you mount the filesystem on the github images? I've seen this question asked several times already, and it was never answered. The docs have nothing on that either. There is a filesystem object...