├── BUILDING.md ├── Dockerfile ├── FLASHING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── RESTMQTT.md ├── TROUBLESHOOTING.md ├── UC-FLASHING.md ├── WIFI-CONFIG.md ├── WINDOWS.md ├── avrflash ├── cmd ├── cmd.c ├── cmd.h └── handlers.c ├── esp-link.sln ├── esp-link.vcxproj ├── esp-link ├── cgi.c ├── cgi.h ├── cgiflash.c ├── cgiflash.h ├── cgimega.c ├── cgimega.h ├── cgimqtt.c ├── cgimqtt.h ├── cgioptiboot.c ├── cgioptiboot.h ├── cgipins.c ├── cgipins.h ├── cgiservices.c ├── cgiservices.h ├── cgitcp.c ├── cgitcp.h ├── cgiwebserversetup.c ├── cgiwebserversetup.h ├── cgiwifi.c ├── cgiwifi.h ├── config.c ├── config.h ├── log.c ├── log.h ├── main.c ├── mqtt_client.c ├── mqtt_client.h ├── pgmshared.c ├── pgmshared.h ├── status.c ├── status.h ├── stk500.h ├── stk500v2.h ├── task.c └── task.h ├── espfs ├── espfs.c ├── espfs.h ├── espfsformat.h └── mkespfsimage │ ├── Makefile │ ├── main.c │ ├── main.o │ ├── mkespfsimage │ └── mman-win32 │ ├── Makefile │ ├── config.mak │ ├── configure │ ├── mman.c │ ├── mman.h │ └── test.c ├── espmake.cmd ├── firmware ├── user1.bin └── user2.bin ├── flash.sh ├── html ├── console.html ├── console.js ├── favicon.ico ├── favicon.ico- ├── flash.html ├── flash.js ├── head- ├── home.html ├── jl-400x110.png- ├── jl-400x110.png-old ├── log.html ├── mqtt.html ├── mqtt.js ├── pure.css ├── services.html ├── services.js ├── style.css ├── ui.js ├── userpage.js ├── web-server.html └── wifi │ ├── icons.png │ ├── wifiAp.html │ ├── wifiAp.js │ ├── wifiSta.html │ └── wifiSta.js ├── html_compressed ├── console.html ├── console.js ├── favicon.ico ├── flash.html ├── flash.js ├── home.html ├── log.html ├── mqtt.html ├── mqtt.js ├── pure.css ├── services.html ├── services.js ├── style.css ├── ui.js ├── userpage.js ├── web-server.html └── wifi │ ├── icons.png │ ├── wifiAp.html │ ├── wifiAp.js │ ├── wifiSta.html │ └── wifiSta.js ├── httpd ├── auth.c ├── auth.h ├── base64.c ├── base64.h ├── httpd.c ├── httpd.h ├── httpdespfs.c ├── httpdespfs.h ├── multipart.c └── multipart.h ├── include ├── c_types.h ├── esp8266.h ├── espmissingincludes.h ├── uart_hw.h └── user_config.h ├── megaflash ├── mqtt ├── mqtt.c ├── mqtt.h ├── mqtt_cmd.c ├── mqtt_cmd.h ├── mqtt_msg.c ├── mqtt_msg.h ├── pktbuf.c └── pktbuf.h ├── rest ├── rest.c └── rest.h ├── serial ├── console.c ├── console.h ├── crc16.c ├── crc16.h ├── serbridge.c ├── serbridge.h ├── serled.c ├── serled.h ├── slip.c ├── slip.h ├── uart.c └── uart.h ├── socket ├── socket.c └── socket.h ├── syslog ├── syslog.c ├── syslog.h └── syslog.md ├── tools ├── htmlcompressor-1.5.3.jar └── yuicompressor-2.4.8.jar ├── user └── user_main.c ├── web-server ├── web-server.c └── web-server.h └── wiflash /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/BUILDING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/Dockerfile -------------------------------------------------------------------------------- /FLASHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/FLASHING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/README.md -------------------------------------------------------------------------------- /RESTMQTT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/RESTMQTT.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /UC-FLASHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/UC-FLASHING.md -------------------------------------------------------------------------------- /WIFI-CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/WIFI-CONFIG.md -------------------------------------------------------------------------------- /WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/WINDOWS.md -------------------------------------------------------------------------------- /avrflash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/avrflash -------------------------------------------------------------------------------- /cmd/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/cmd/cmd.c -------------------------------------------------------------------------------- /cmd/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/cmd/cmd.h -------------------------------------------------------------------------------- /cmd/handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/cmd/handlers.c -------------------------------------------------------------------------------- /esp-link.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link.sln -------------------------------------------------------------------------------- /esp-link.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link.vcxproj -------------------------------------------------------------------------------- /esp-link/cgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgi.c -------------------------------------------------------------------------------- /esp-link/cgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgi.h -------------------------------------------------------------------------------- /esp-link/cgiflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgiflash.c -------------------------------------------------------------------------------- /esp-link/cgiflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgiflash.h -------------------------------------------------------------------------------- /esp-link/cgimega.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgimega.c -------------------------------------------------------------------------------- /esp-link/cgimega.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgimega.h -------------------------------------------------------------------------------- /esp-link/cgimqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgimqtt.c -------------------------------------------------------------------------------- /esp-link/cgimqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgimqtt.h -------------------------------------------------------------------------------- /esp-link/cgioptiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgioptiboot.c -------------------------------------------------------------------------------- /esp-link/cgioptiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgioptiboot.h -------------------------------------------------------------------------------- /esp-link/cgipins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgipins.c -------------------------------------------------------------------------------- /esp-link/cgipins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgipins.h -------------------------------------------------------------------------------- /esp-link/cgiservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgiservices.c -------------------------------------------------------------------------------- /esp-link/cgiservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgiservices.h -------------------------------------------------------------------------------- /esp-link/cgitcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgitcp.c -------------------------------------------------------------------------------- /esp-link/cgitcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgitcp.h -------------------------------------------------------------------------------- /esp-link/cgiwebserversetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgiwebserversetup.c -------------------------------------------------------------------------------- /esp-link/cgiwebserversetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgiwebserversetup.h -------------------------------------------------------------------------------- /esp-link/cgiwifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgiwifi.c -------------------------------------------------------------------------------- /esp-link/cgiwifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/cgiwifi.h -------------------------------------------------------------------------------- /esp-link/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/config.c -------------------------------------------------------------------------------- /esp-link/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/config.h -------------------------------------------------------------------------------- /esp-link/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/log.c -------------------------------------------------------------------------------- /esp-link/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/log.h -------------------------------------------------------------------------------- /esp-link/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/main.c -------------------------------------------------------------------------------- /esp-link/mqtt_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/mqtt_client.c -------------------------------------------------------------------------------- /esp-link/mqtt_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/mqtt_client.h -------------------------------------------------------------------------------- /esp-link/pgmshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/pgmshared.c -------------------------------------------------------------------------------- /esp-link/pgmshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/pgmshared.h -------------------------------------------------------------------------------- /esp-link/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/status.c -------------------------------------------------------------------------------- /esp-link/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/status.h -------------------------------------------------------------------------------- /esp-link/stk500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/stk500.h -------------------------------------------------------------------------------- /esp-link/stk500v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/stk500v2.h -------------------------------------------------------------------------------- /esp-link/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/task.c -------------------------------------------------------------------------------- /esp-link/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/esp-link/task.h -------------------------------------------------------------------------------- /espfs/espfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/espfs.c -------------------------------------------------------------------------------- /espfs/espfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/espfs.h -------------------------------------------------------------------------------- /espfs/espfsformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/espfsformat.h -------------------------------------------------------------------------------- /espfs/mkespfsimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/Makefile -------------------------------------------------------------------------------- /espfs/mkespfsimage/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/main.c -------------------------------------------------------------------------------- /espfs/mkespfsimage/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/main.o -------------------------------------------------------------------------------- /espfs/mkespfsimage/mkespfsimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/mkespfsimage -------------------------------------------------------------------------------- /espfs/mkespfsimage/mman-win32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/mman-win32/Makefile -------------------------------------------------------------------------------- /espfs/mkespfsimage/mman-win32/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/mman-win32/config.mak -------------------------------------------------------------------------------- /espfs/mkespfsimage/mman-win32/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/mman-win32/configure -------------------------------------------------------------------------------- /espfs/mkespfsimage/mman-win32/mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/mman-win32/mman.c -------------------------------------------------------------------------------- /espfs/mkespfsimage/mman-win32/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/mman-win32/mman.h -------------------------------------------------------------------------------- /espfs/mkespfsimage/mman-win32/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espfs/mkespfsimage/mman-win32/test.c -------------------------------------------------------------------------------- /espmake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/espmake.cmd -------------------------------------------------------------------------------- /firmware/user1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/firmware/user1.bin -------------------------------------------------------------------------------- /firmware/user2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/firmware/user2.bin -------------------------------------------------------------------------------- /flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/flash.sh -------------------------------------------------------------------------------- /html/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/console.html -------------------------------------------------------------------------------- /html/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/console.js -------------------------------------------------------------------------------- /html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/favicon.ico -------------------------------------------------------------------------------- /html/favicon.ico-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/favicon.ico- -------------------------------------------------------------------------------- /html/flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/flash.html -------------------------------------------------------------------------------- /html/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/flash.js -------------------------------------------------------------------------------- /html/head-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/head- -------------------------------------------------------------------------------- /html/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/home.html -------------------------------------------------------------------------------- /html/jl-400x110.png-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/jl-400x110.png- -------------------------------------------------------------------------------- /html/jl-400x110.png-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/jl-400x110.png-old -------------------------------------------------------------------------------- /html/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/log.html -------------------------------------------------------------------------------- /html/mqtt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/mqtt.html -------------------------------------------------------------------------------- /html/mqtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/mqtt.js -------------------------------------------------------------------------------- /html/pure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/pure.css -------------------------------------------------------------------------------- /html/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/services.html -------------------------------------------------------------------------------- /html/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/services.js -------------------------------------------------------------------------------- /html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/style.css -------------------------------------------------------------------------------- /html/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/ui.js -------------------------------------------------------------------------------- /html/userpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/userpage.js -------------------------------------------------------------------------------- /html/web-server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/web-server.html -------------------------------------------------------------------------------- /html/wifi/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/wifi/icons.png -------------------------------------------------------------------------------- /html/wifi/wifiAp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/wifi/wifiAp.html -------------------------------------------------------------------------------- /html/wifi/wifiAp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/wifi/wifiAp.js -------------------------------------------------------------------------------- /html/wifi/wifiSta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/wifi/wifiSta.html -------------------------------------------------------------------------------- /html/wifi/wifiSta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html/wifi/wifiSta.js -------------------------------------------------------------------------------- /html_compressed/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/console.html -------------------------------------------------------------------------------- /html_compressed/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/console.js -------------------------------------------------------------------------------- /html_compressed/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/favicon.ico -------------------------------------------------------------------------------- /html_compressed/flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/flash.html -------------------------------------------------------------------------------- /html_compressed/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/flash.js -------------------------------------------------------------------------------- /html_compressed/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/home.html -------------------------------------------------------------------------------- /html_compressed/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/log.html -------------------------------------------------------------------------------- /html_compressed/mqtt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/mqtt.html -------------------------------------------------------------------------------- /html_compressed/mqtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/mqtt.js -------------------------------------------------------------------------------- /html_compressed/pure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/pure.css -------------------------------------------------------------------------------- /html_compressed/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/services.html -------------------------------------------------------------------------------- /html_compressed/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/services.js -------------------------------------------------------------------------------- /html_compressed/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/style.css -------------------------------------------------------------------------------- /html_compressed/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/ui.js -------------------------------------------------------------------------------- /html_compressed/userpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/userpage.js -------------------------------------------------------------------------------- /html_compressed/web-server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/web-server.html -------------------------------------------------------------------------------- /html_compressed/wifi/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/wifi/icons.png -------------------------------------------------------------------------------- /html_compressed/wifi/wifiAp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/wifi/wifiAp.html -------------------------------------------------------------------------------- /html_compressed/wifi/wifiAp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/wifi/wifiAp.js -------------------------------------------------------------------------------- /html_compressed/wifi/wifiSta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/wifi/wifiSta.html -------------------------------------------------------------------------------- /html_compressed/wifi/wifiSta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/html_compressed/wifi/wifiSta.js -------------------------------------------------------------------------------- /httpd/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/auth.c -------------------------------------------------------------------------------- /httpd/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/auth.h -------------------------------------------------------------------------------- /httpd/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/base64.c -------------------------------------------------------------------------------- /httpd/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/base64.h -------------------------------------------------------------------------------- /httpd/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/httpd.c -------------------------------------------------------------------------------- /httpd/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/httpd.h -------------------------------------------------------------------------------- /httpd/httpdespfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/httpdespfs.c -------------------------------------------------------------------------------- /httpd/httpdespfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/httpdespfs.h -------------------------------------------------------------------------------- /httpd/multipart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/multipart.c -------------------------------------------------------------------------------- /httpd/multipart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/httpd/multipart.h -------------------------------------------------------------------------------- /include/c_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/include/c_types.h -------------------------------------------------------------------------------- /include/esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/include/esp8266.h -------------------------------------------------------------------------------- /include/espmissingincludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/include/espmissingincludes.h -------------------------------------------------------------------------------- /include/uart_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/include/uart_hw.h -------------------------------------------------------------------------------- /include/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/include/user_config.h -------------------------------------------------------------------------------- /megaflash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/megaflash -------------------------------------------------------------------------------- /mqtt/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/mqtt/mqtt.c -------------------------------------------------------------------------------- /mqtt/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/mqtt/mqtt.h -------------------------------------------------------------------------------- /mqtt/mqtt_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/mqtt/mqtt_cmd.c -------------------------------------------------------------------------------- /mqtt/mqtt_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/mqtt/mqtt_cmd.h -------------------------------------------------------------------------------- /mqtt/mqtt_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/mqtt/mqtt_msg.c -------------------------------------------------------------------------------- /mqtt/mqtt_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/mqtt/mqtt_msg.h -------------------------------------------------------------------------------- /mqtt/pktbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/mqtt/pktbuf.c -------------------------------------------------------------------------------- /mqtt/pktbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/mqtt/pktbuf.h -------------------------------------------------------------------------------- /rest/rest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/rest/rest.c -------------------------------------------------------------------------------- /rest/rest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/rest/rest.h -------------------------------------------------------------------------------- /serial/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/console.c -------------------------------------------------------------------------------- /serial/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/console.h -------------------------------------------------------------------------------- /serial/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/crc16.c -------------------------------------------------------------------------------- /serial/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/crc16.h -------------------------------------------------------------------------------- /serial/serbridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/serbridge.c -------------------------------------------------------------------------------- /serial/serbridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/serbridge.h -------------------------------------------------------------------------------- /serial/serled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/serled.c -------------------------------------------------------------------------------- /serial/serled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/serled.h -------------------------------------------------------------------------------- /serial/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/slip.c -------------------------------------------------------------------------------- /serial/slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/slip.h -------------------------------------------------------------------------------- /serial/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/uart.c -------------------------------------------------------------------------------- /serial/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/serial/uart.h -------------------------------------------------------------------------------- /socket/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/socket/socket.c -------------------------------------------------------------------------------- /socket/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/socket/socket.h -------------------------------------------------------------------------------- /syslog/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/syslog/syslog.c -------------------------------------------------------------------------------- /syslog/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/syslog/syslog.h -------------------------------------------------------------------------------- /syslog/syslog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/syslog/syslog.md -------------------------------------------------------------------------------- /tools/htmlcompressor-1.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/tools/htmlcompressor-1.5.3.jar -------------------------------------------------------------------------------- /tools/yuicompressor-2.4.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/tools/yuicompressor-2.4.8.jar -------------------------------------------------------------------------------- /user/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/user/user_main.c -------------------------------------------------------------------------------- /web-server/web-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/web-server/web-server.c -------------------------------------------------------------------------------- /web-server/web-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/web-server/web-server.h -------------------------------------------------------------------------------- /wiflash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairecasoimeme/ZiGate-WiFi/HEAD/wiflash --------------------------------------------------------------------------------