ESP8266 Webserver Project

Moderator: Sprite_tm

User avatar
By tyleroderkirk
#2136
johnnyfp wrote:Any chance you can include the already compiled [...]


Johnnyfp-

I've uploaded the three firmware binaries to this Google Drive folder

Don't forget the flash the "webpages" binary as per the makefile or else you'll get "Magic mismatch. EspFS image broken."

Enjoy - sprite_fs did a great job on this!

-Tyler
User avatar
By sancho
#2153 THANKS a lot!
I downloaded the 3 files, used a small script for upload:
Code: Select all#!/bin/bash

ESPTOOL=../esptool.py
ESPPORT=/dev/ttyUSB0

$ESPTOOL --port $ESPPORT write_flash 0x00000 0x00000.bin
sleep 3
$ESPTOOL --port $ESPPORT write_flash 0x40000 0x40000.bin
sleep 3
$ESPTOOL --port $ESPPORT write_flash 0x12000 webpages.espfs


And now I can enjoy the images of the cats (I could have live without) and the working LED on GPIO2 (I could not live without).
I would appreciate someone updating the wiki - the current SDK is not working according the guidelines and the AT example is missing totaly...

Again, thanks a lot.