Skip to content

sobhydo/ESP8266

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ESP8266

Firmware for ESP8266 used with 3D printer using arduino core version
This firmware allows not only to have a cheap bridge between Wifi and serial, but also to have a web UI to configure wifi, to monitor 3D printer and even control it, and to make things easy, UI is fully customizable without reflashing FW. Firmware should work with any 3D printer firmware (repetier/marlin/etc..) if serial connection has correct setup. I currently use it with my personnal flavor of repetier for Due based boards. Please use ESP with at least 1M flash, for ESP with 512K there is limited version here

Stable version:
Arduino ide 1.6.5 with stable 2.0.0 from ESP8266, please use https://github.com/luc-github/ESP8266/releases/tag/v0.5.1
Arduino ide 1.6.8 with stable 2.2.0 from ESP8266, please use https://github.com/luc-github/ESP8266/releases/tag/v0.6.2

Development version:
Arduino ide 1.6.8 with git from ESP8266 : Build Status

All releases

❓Any question ?Join the chat at https://gitter.im/luc-github/ESP8266
❗Any issue ? check FAQ or submit ticket

👍Thanks

  • to @disneysw for bringing this module idea
  • to @lkarlslund for suggestion about independant reset using GPIO2
  • to all contributors (treepleks, j0hnlittle, openhardwarecoza, all feedbacks owners and donations)

Every support is welcome: PayPal – The safer, easier way to pay online.
Especially if need to buy new modules for testing.

##Features

  • Serial/Wifi bridge using configurable port 8888, here to enable/disable TCP_IP_DATA_FEATURE
  • Use GPIO2 to ground to reset all settings in hard way - 2-6 sec after boot / not before!! Set GPIO2 to ground before boot change boot mode and go to special boot that do not reach FW. Currently boot take 10 sec - giving 8 seconds to connect GPIO2 to GND and do an hard recovery for settings, here to enable/disable RECOVERY_FEATURE
  • Wifi configuration by web browser (Station or Access point)
  • Authentication for sensitive pages, here to enable/disable AUTHENTICATION_FEATURE
  • Update firmware by web browser, here to enable/disable WEB_UPDATE_FEATURE
  • Control ESP module using commands on serial or data port, here to enable/disable SERIAL_COMMAND_FEATURE
  • UI fully constomizable without reflashing FW using html templates, keywords and html files/images
  • Captive portal in Access point mode which redirect all unknow call to main page, here to enable/disable CAPTIVE_PORTAL_FEATURE
  • mDNS which allows to key the name defined in web browser and connect only with bonjour installed on computer, here to enable/disable MDNS_FEATURE
  • SSDP, this feature is a discovery protocol, supported on Windows out of the box, here to enable/disable SSDP_FEATURE
  • Printer monitoring / control (temperatures/speed/jog/list SDCard content/launch,pause or stop a print/etc...), here to enable/disable MONITORING_FEATURE/INFO_MSG_FEATURE/ERROR_MSG_FEATURE/STATUS_MSG_FEATURE
  • Fail safe mode (Access point)is enabled if cannot connect to defined station at boot.

##Web configuration
*Wifi Mode : Access point / Client station
*IP Generation: DHCP/Static IP
*IP/MASK/GATEWAY for static data
*Baud Rate for serial (supported : 9600, 19200, 38400, 57600, 115200, 230400, 250000)
*web port and data port

##Default Configuration
Default Settings:
AP:ESP8266
PW:12345678
Authentification: WPA
Mode: g (n is not supported by AP, just by STA)
channel: 11
AP: visible
Sleep Mode: Modem
IP Mode: Static IP
IP: 192.168.0.1
Mask: 255.255.255.0
GW:192.168.0.1
Baud rate: 9600
Web port:80
Data port: 8888
Web Page refresh: 3 secondes
User: admin
Password: admin

These are the pages defined using template:
Home page :

System Configuration Page:


Access Point Configuration Page:


Client Configuration Page:


Printer Status Page for 64K SPIFFS, due to limited space available no fancy:


Printer Status Page for more than 64K SPIFFS, fancy one:


Extra Settings Page, for web UI and for printer:


Change password Page:


Login Page:


the template files are stored on SPIFFS:

and uploaded using pluggin IDE
Any files on SPIFFS can be called on web interface without having the path hard coded, this give more flexibility, favicon.ico is a good example of it.
So UI is kind of separated from FW which allow easier modifications. For this a light file manager is available in extra settings page, it allows to upload/download/delete files. Because SPIFFS is flat filesystem, no directory management is necessary, so it is very simple.

Additionally 404.tpl (the page not found) and restart.tpl(restart page when applying changes) are not mandatory, a fail safe version is embeded if they are not present.

##Direct commands:

-restart module from host/printer: [ESP888]RESTART      
-Get IP (only printer see answer): [ESP111]M117     
-reset EEPROM and restart: [ESP444]RESET    
-display EEPROM content: [ESP444]CONFIG    
-go to safe mode without restart: [ESP444]SAFEMODE    
-SSID: [ESP100]<SSID>    
-Password: [ESP101]<Password>   
-Station mode: [ESP103]STA   
-AP mode: [ESP103]AP   
-IP Static: [ESP104]STATIC    
-IP DHCP: [ESP104]DHCP    

##Installation

⚠️Do not flash Printer fw with ESP connected - it bring troubles, at least on DaVinci

##Hardware connection

  • Use GPIO2 to ground to reset all settings in hard way - 2-6 sec after boot / not before!! Set GPIO2 to ground before boot change boot mode and go to special boot that do not reach FW. Currently boot take 10 sec - giving 8 seconds to connect GPIO2 to GND and do an hard recovery for settings
  • Use GPIO0 to ground to be in update mode

For ESP01:

For ESP12E:

For Davinci Board:

For RADDS Board:

##Contribution/customization To modifying and Testing tpl files a local tool has been created by j0hnlittle to avoid to upload everytime your tpl files just to see the results of your modifications. It is a python script (2.7+) located in tools directory, launch it: python server.py, then open browser: http://localhost:8080
It will display the web ui and allow some navigation

To style the code before pushing PR please use astyle --style=otbs *.h *.cpp *.ino

Feedback/suggestion/discussions are always welcome

##Result of ESP12E on Davinci
I use a proto board to connect ESP12E socket, one micro switch for recovery, one jumper for normal usage/ flash, I did not put hardware switch.


Connected to Davinci:


The back cover:


The screen when connected to AP:

##Result of ESP12E on Due/RADDS the rendering on screen when connection to AP is done:

##TODO
-- Close open topics
-- Do testing (a lot)
-- UI Improvement
-- Printer EEPROM management

About

FW for ESP8266 used with 3D printer- beta state - ready for testing

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 71.4%
  • Smarty 24.6%
  • Other 3.2%
  • Other 0.8%