├── README.md ├── acu ├── http │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── package.json │ ├── public │ │ └── www │ │ │ ├── data │ │ │ ├── .stub │ │ │ ├── current │ │ │ └── networks │ │ │ ├── favicon.png │ │ │ ├── global.css │ │ │ ├── index.html │ │ │ └── mode │ ├── rollup.config.js │ ├── src │ │ ├── App.svelte │ │ ├── PT.svelte │ │ ├── WiFi.svelte │ │ ├── components │ │ │ ├── IPAddressMask.js │ │ │ └── Joystick │ │ │ │ ├── Joystick.svelte │ │ │ │ ├── arrow-up-solid.svg │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ ├── global.d.ts │ │ └── main.ts │ ├── tsconfig.json │ └── yarn.lock ├── plan.md └── wifi-acu │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── include │ └── README │ ├── lib │ └── README │ ├── platformio.ini │ ├── src │ ├── arduino-ptz │ │ ├── arduino-ptz.hpp │ │ ├── handler.cpp │ │ ├── handler.hpp │ │ ├── serial.cpp │ │ └── serial.hpp │ ├── main.cpp │ ├── mcu-ptz.h │ ├── utils │ │ ├── configurator.cpp │ │ ├── configurator.hpp │ │ ├── configurator_data.h │ │ ├── wifi.cpp │ │ ├── wifi.hpp │ │ ├── wifi_settings.cpp │ │ └── wifi_settings.hpp │ ├── ws │ │ ├── server.cpp │ │ └── server.hpp │ └── www │ │ ├── server.cpp │ │ ├── server.hpp │ │ └── www.hpp │ └── test │ └── README └── research ├── 2010160933_Shenzhen-Fuman-Elec-TC118S_C88308.pdf ├── EY-40_English_manual.pdf ├── TC118S english translation.pdf ├── parts.md ├── serial-communications.md └── serial-listener ├── .gitignore ├── .vscode └── extensions.json ├── include └── README ├── lib └── README ├── platformio.ini ├── src ├── byte_dump.cpp ├── main.cpp ├── serial_listener.h ├── string_decode.cpp └── test_send.cpp └── test └── README /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/README.md -------------------------------------------------------------------------------- /acu/http/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/www/app/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /acu/http/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/.vscode/extensions.json -------------------------------------------------------------------------------- /acu/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/README.md -------------------------------------------------------------------------------- /acu/http/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/package.json -------------------------------------------------------------------------------- /acu/http/public/www/data/.stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acu/http/public/www/data/current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/public/www/data/current -------------------------------------------------------------------------------- /acu/http/public/www/data/networks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/public/www/data/networks -------------------------------------------------------------------------------- /acu/http/public/www/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/public/www/favicon.png -------------------------------------------------------------------------------- /acu/http/public/www/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/public/www/global.css -------------------------------------------------------------------------------- /acu/http/public/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/public/www/index.html -------------------------------------------------------------------------------- /acu/http/public/www/mode: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acu/http/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/rollup.config.js -------------------------------------------------------------------------------- /acu/http/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/App.svelte -------------------------------------------------------------------------------- /acu/http/src/PT.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/PT.svelte -------------------------------------------------------------------------------- /acu/http/src/WiFi.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/WiFi.svelte -------------------------------------------------------------------------------- /acu/http/src/components/IPAddressMask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/components/IPAddressMask.js -------------------------------------------------------------------------------- /acu/http/src/components/Joystick/Joystick.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/components/Joystick/Joystick.svelte -------------------------------------------------------------------------------- /acu/http/src/components/Joystick/arrow-up-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/components/Joystick/arrow-up-solid.svg -------------------------------------------------------------------------------- /acu/http/src/components/Joystick/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/components/Joystick/index.ts -------------------------------------------------------------------------------- /acu/http/src/components/Joystick/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/components/Joystick/types.ts -------------------------------------------------------------------------------- /acu/http/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/global.d.ts -------------------------------------------------------------------------------- /acu/http/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/src/main.ts -------------------------------------------------------------------------------- /acu/http/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/tsconfig.json -------------------------------------------------------------------------------- /acu/http/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/http/yarn.lock -------------------------------------------------------------------------------- /acu/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/plan.md -------------------------------------------------------------------------------- /acu/wifi-acu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/.gitignore -------------------------------------------------------------------------------- /acu/wifi-acu/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/.vscode/extensions.json -------------------------------------------------------------------------------- /acu/wifi-acu/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/include/README -------------------------------------------------------------------------------- /acu/wifi-acu/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/lib/README -------------------------------------------------------------------------------- /acu/wifi-acu/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/platformio.ini -------------------------------------------------------------------------------- /acu/wifi-acu/src/arduino-ptz/arduino-ptz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/arduino-ptz/arduino-ptz.hpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/arduino-ptz/handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/arduino-ptz/handler.cpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/arduino-ptz/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/arduino-ptz/handler.hpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/arduino-ptz/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/arduino-ptz/serial.cpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/arduino-ptz/serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/arduino-ptz/serial.hpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/main.cpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/mcu-ptz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/mcu-ptz.h -------------------------------------------------------------------------------- /acu/wifi-acu/src/utils/configurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/utils/configurator.cpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/utils/configurator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/utils/configurator.hpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/utils/configurator_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/utils/configurator_data.h -------------------------------------------------------------------------------- /acu/wifi-acu/src/utils/wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/utils/wifi.cpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/utils/wifi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/utils/wifi.hpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/utils/wifi_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/utils/wifi_settings.cpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/utils/wifi_settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/utils/wifi_settings.hpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/ws/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/ws/server.cpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/ws/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/ws/server.hpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/www/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/www/server.cpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/www/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/www/server.hpp -------------------------------------------------------------------------------- /acu/wifi-acu/src/www/www.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/src/www/www.hpp -------------------------------------------------------------------------------- /acu/wifi-acu/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/acu/wifi-acu/test/README -------------------------------------------------------------------------------- /research/2010160933_Shenzhen-Fuman-Elec-TC118S_C88308.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/2010160933_Shenzhen-Fuman-Elec-TC118S_C88308.pdf -------------------------------------------------------------------------------- /research/EY-40_English_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/EY-40_English_manual.pdf -------------------------------------------------------------------------------- /research/TC118S english translation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/TC118S english translation.pdf -------------------------------------------------------------------------------- /research/parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/parts.md -------------------------------------------------------------------------------- /research/serial-communications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-communications.md -------------------------------------------------------------------------------- /research/serial-listener/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/.gitignore -------------------------------------------------------------------------------- /research/serial-listener/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/.vscode/extensions.json -------------------------------------------------------------------------------- /research/serial-listener/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/include/README -------------------------------------------------------------------------------- /research/serial-listener/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/lib/README -------------------------------------------------------------------------------- /research/serial-listener/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/platformio.ini -------------------------------------------------------------------------------- /research/serial-listener/src/byte_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/src/byte_dump.cpp -------------------------------------------------------------------------------- /research/serial-listener/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/src/main.cpp -------------------------------------------------------------------------------- /research/serial-listener/src/serial_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/src/serial_listener.h -------------------------------------------------------------------------------- /research/serial-listener/src/string_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/src/string_decode.cpp -------------------------------------------------------------------------------- /research/serial-listener/src/test_send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/src/test_send.cpp -------------------------------------------------------------------------------- /research/serial-listener/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/zifon-yt1000-wifi-acu/HEAD/research/serial-listener/test/README --------------------------------------------------------------------------------