├── .gitignore ├── README.md ├── bin ├── 4mb │ ├── 0x0-SSLAC16-latest.bin │ └── spiffs │ │ └── 0x1-SSLAC16-v0.36rev0.spiffs.bin └── 512kb │ ├── 0x0-SSLAC16-latest.bin │ └── spiffs │ └── 0x5b000-SSLAC16-v0.36rev0.spiffs.bin ├── data ├── 1SetUp.html ├── EmLight.html ├── Fan.html ├── favicon.ico ├── root_page.html ├── setuphw.html └── sslac.js ├── docs ├── PCA9685-LDD1000h-connection example.png ├── SSLAC16(rev1).png ├── SSLAC16-bottom-PCB.png ├── fancooler-connection-example.png ├── shematic.pdf └── short-install-guide.txt ├── index.html ├── license.txt ├── params.json ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── channels&groupsSetup.png ├── ds1307.png ├── emlight.png ├── esp12e-circuit.png ├── fans.png ├── groups.png ├── hw.png ├── man-ru.doc ├── man-ru.odt ├── man-ru.pdf ├── realwork.png ├── root_0.png ├── root_1.png ├── root_2.png ├── root_3.png ├── sin-Schedule.png └── upgrade.png ├── stylesheets ├── github-light.css ├── normalize.css └── stylesheet.css ├── tools ├── Darwin-x86_64 │ └── esptool ├── Linux-x86_64 │ └── esptool ├── curl-w32 │ └── curl.exe ├── curl-w64 │ └── curl.exe ├── flashme-4mb.sh ├── flashme.bat ├── flashme.sh ├── flashme4mb.bat ├── flashme4mb.sh ├── flashme512kb.sh ├── html-upload.bat ├── html-upload.sh ├── linux32 │ └── esptool ├── save_load.html ├── setup.html ├── setvalue.bat ├── setvalue.sh ├── spiffs4mb.bat ├── spiffs4mb.sh ├── spiffs512kb.bat ├── spiffs512kb.sh ├── uploader.sh └── win32 │ ├── curl.exe │ ├── esptool-0.4.6-win32.zip │ └── esptool.exe ├── updater2.html └── v0.36r1 ├── libs ├── Adafruit-PWM-Servo-Driver-Library-master.zip ├── Arduino-Temperature-Control-Library-master.zip ├── DS1307RTC.zip └── Time.zip └── src └── SSLAC16-v0.36rev1 ├── Date_Time.ino ├── EEPROM.ino ├── NewPWM.ino ├── OneWire.ino ├── SSLAC16-v0.36rev1.ino ├── backup ├── 2017-4-23-16-19-7.sslac16 └── demo-sin.sslac16 ├── data ├── 1SetUp.html ├── EmLight.html ├── Fan.html ├── favicon.ico ├── root_page.html ├── setuphw.html └── sslac.js ├── handle_reboot.ino ├── newroot.ino ├── root_page.ino ├── tools ├── GPIO.txt ├── blank4mb.sh ├── flashme4mb-1.sh ├── flashme4mb-baud.sh ├── flashme4mb.bat ├── flashme4mb.sh ├── flashme512kb.sh ├── html-upload.bat ├── html-upload.sh ├── save_load.html ├── setup.html ├── setvalue.bat ├── setvalue.sh ├── spiffs4mb.bat ├── spiffs4mb.sh ├── spiffs512kb.bat └── spiffs512kb.sh ├── udp_sync.ino └── wifi_func.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/README.md -------------------------------------------------------------------------------- /bin/4mb/0x0-SSLAC16-latest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/bin/4mb/0x0-SSLAC16-latest.bin -------------------------------------------------------------------------------- /bin/4mb/spiffs/0x1-SSLAC16-v0.36rev0.spiffs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/bin/4mb/spiffs/0x1-SSLAC16-v0.36rev0.spiffs.bin -------------------------------------------------------------------------------- /bin/512kb/0x0-SSLAC16-latest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/bin/512kb/0x0-SSLAC16-latest.bin -------------------------------------------------------------------------------- /bin/512kb/spiffs/0x5b000-SSLAC16-v0.36rev0.spiffs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/bin/512kb/spiffs/0x5b000-SSLAC16-v0.36rev0.spiffs.bin -------------------------------------------------------------------------------- /data/1SetUp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/data/1SetUp.html -------------------------------------------------------------------------------- /data/EmLight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/data/EmLight.html -------------------------------------------------------------------------------- /data/Fan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/data/Fan.html -------------------------------------------------------------------------------- /data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/data/favicon.ico -------------------------------------------------------------------------------- /data/root_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/data/root_page.html -------------------------------------------------------------------------------- /data/setuphw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/data/setuphw.html -------------------------------------------------------------------------------- /data/sslac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/data/sslac.js -------------------------------------------------------------------------------- /docs/PCA9685-LDD1000h-connection example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/docs/PCA9685-LDD1000h-connection example.png -------------------------------------------------------------------------------- /docs/SSLAC16(rev1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/docs/SSLAC16(rev1).png -------------------------------------------------------------------------------- /docs/SSLAC16-bottom-PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/docs/SSLAC16-bottom-PCB.png -------------------------------------------------------------------------------- /docs/fancooler-connection-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/docs/fancooler-connection-example.png -------------------------------------------------------------------------------- /docs/shematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/docs/shematic.pdf -------------------------------------------------------------------------------- /docs/short-install-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/docs/short-install-guide.txt -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/index.html -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/license.txt -------------------------------------------------------------------------------- /params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/params.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/channels&groupsSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/channels&groupsSetup.png -------------------------------------------------------------------------------- /screenshots/ds1307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/ds1307.png -------------------------------------------------------------------------------- /screenshots/emlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/emlight.png -------------------------------------------------------------------------------- /screenshots/esp12e-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/esp12e-circuit.png -------------------------------------------------------------------------------- /screenshots/fans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/fans.png -------------------------------------------------------------------------------- /screenshots/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/groups.png -------------------------------------------------------------------------------- /screenshots/hw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/hw.png -------------------------------------------------------------------------------- /screenshots/man-ru.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/man-ru.doc -------------------------------------------------------------------------------- /screenshots/man-ru.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/man-ru.odt -------------------------------------------------------------------------------- /screenshots/man-ru.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/man-ru.pdf -------------------------------------------------------------------------------- /screenshots/realwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/realwork.png -------------------------------------------------------------------------------- /screenshots/root_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/root_0.png -------------------------------------------------------------------------------- /screenshots/root_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/root_1.png -------------------------------------------------------------------------------- /screenshots/root_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/root_2.png -------------------------------------------------------------------------------- /screenshots/root_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/root_3.png -------------------------------------------------------------------------------- /screenshots/sin-Schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/sin-Schedule.png -------------------------------------------------------------------------------- /screenshots/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/screenshots/upgrade.png -------------------------------------------------------------------------------- /stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/stylesheets/github-light.css -------------------------------------------------------------------------------- /stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/stylesheets/normalize.css -------------------------------------------------------------------------------- /stylesheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/stylesheets/stylesheet.css -------------------------------------------------------------------------------- /tools/Darwin-x86_64/esptool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/Darwin-x86_64/esptool -------------------------------------------------------------------------------- /tools/Linux-x86_64/esptool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/Linux-x86_64/esptool -------------------------------------------------------------------------------- /tools/curl-w32/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/curl-w32/curl.exe -------------------------------------------------------------------------------- /tools/curl-w64/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/curl-w64/curl.exe -------------------------------------------------------------------------------- /tools/flashme-4mb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/flashme-4mb.sh -------------------------------------------------------------------------------- /tools/flashme.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/flashme.bat -------------------------------------------------------------------------------- /tools/flashme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/flashme.sh -------------------------------------------------------------------------------- /tools/flashme4mb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/flashme4mb.bat -------------------------------------------------------------------------------- /tools/flashme4mb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/flashme4mb.sh -------------------------------------------------------------------------------- /tools/flashme512kb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/flashme512kb.sh -------------------------------------------------------------------------------- /tools/html-upload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/html-upload.bat -------------------------------------------------------------------------------- /tools/html-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/html-upload.sh -------------------------------------------------------------------------------- /tools/linux32/esptool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/linux32/esptool -------------------------------------------------------------------------------- /tools/save_load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/save_load.html -------------------------------------------------------------------------------- /tools/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/setup.html -------------------------------------------------------------------------------- /tools/setvalue.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/setvalue.bat -------------------------------------------------------------------------------- /tools/setvalue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/setvalue.sh -------------------------------------------------------------------------------- /tools/spiffs4mb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/spiffs4mb.bat -------------------------------------------------------------------------------- /tools/spiffs4mb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/spiffs4mb.sh -------------------------------------------------------------------------------- /tools/spiffs512kb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/spiffs512kb.bat -------------------------------------------------------------------------------- /tools/spiffs512kb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/spiffs512kb.sh -------------------------------------------------------------------------------- /tools/uploader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/uploader.sh -------------------------------------------------------------------------------- /tools/win32/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/win32/curl.exe -------------------------------------------------------------------------------- /tools/win32/esptool-0.4.6-win32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/win32/esptool-0.4.6-win32.zip -------------------------------------------------------------------------------- /tools/win32/esptool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/tools/win32/esptool.exe -------------------------------------------------------------------------------- /updater2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/updater2.html -------------------------------------------------------------------------------- /v0.36r1/libs/Adafruit-PWM-Servo-Driver-Library-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/libs/Adafruit-PWM-Servo-Driver-Library-master.zip -------------------------------------------------------------------------------- /v0.36r1/libs/Arduino-Temperature-Control-Library-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/libs/Arduino-Temperature-Control-Library-master.zip -------------------------------------------------------------------------------- /v0.36r1/libs/DS1307RTC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/libs/DS1307RTC.zip -------------------------------------------------------------------------------- /v0.36r1/libs/Time.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/libs/Time.zip -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/Date_Time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/Date_Time.ino -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/EEPROM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/EEPROM.ino -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/NewPWM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/NewPWM.ino -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/OneWire.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/OneWire.ino -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/SSLAC16-v0.36rev1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/SSLAC16-v0.36rev1.ino -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/backup/2017-4-23-16-19-7.sslac16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/backup/2017-4-23-16-19-7.sslac16 -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/backup/demo-sin.sslac16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/backup/demo-sin.sslac16 -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/data/1SetUp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/data/1SetUp.html -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/data/EmLight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/data/EmLight.html -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/data/Fan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/data/Fan.html -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/data/favicon.ico -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/data/root_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/data/root_page.html -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/data/setuphw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/data/setuphw.html -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/data/sslac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/data/sslac.js -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/handle_reboot.ino: -------------------------------------------------------------------------------- 1 | void reboot(){ 2 | server.send(200,text_plain,F("You are crazy !!!")); 3 | ESP.reset(); 4 | } 5 | 6 | 7 | -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/newroot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/newroot.ino -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/root_page.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/root_page.ino -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/GPIO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/GPIO.txt -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/blank4mb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/blank4mb.sh -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme4mb-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme4mb-1.sh -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme4mb-baud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme4mb-baud.sh -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme4mb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme4mb.bat -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme4mb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme4mb.sh -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme512kb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/flashme512kb.sh -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/html-upload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/html-upload.bat -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/html-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/html-upload.sh -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/save_load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/save_load.html -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/setup.html -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/setvalue.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/setvalue.bat -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/setvalue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/setvalue.sh -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/spiffs4mb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/spiffs4mb.bat -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/spiffs4mb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/spiffs4mb.sh -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/spiffs512kb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/spiffs512kb.bat -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/tools/spiffs512kb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/tools/spiffs512kb.sh -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/udp_sync.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/udp_sync.ino -------------------------------------------------------------------------------- /v0.36r1/src/SSLAC16-v0.36rev1/wifi_func.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbasil2012/SSLAC16/HEAD/v0.36r1/src/SSLAC16-v0.36rev1/wifi_func.ino --------------------------------------------------------------------------------