├── .gitignore ├── .travis.yml ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── file ├── flash │ └── wiring_diagram.png └── images │ ├── tab1.png │ ├── tab2.png │ ├── tab3.png │ └── tab4.png ├── include ├── README ├── Zinguo.h └── ZinguoConfig.pb.h ├── lib └── README ├── nanopb ├── ZinguoConfig.proto ├── descriptor.proto ├── generator.bat └── nanopb.proto ├── platformio.ini ├── scripts ├── name-firmware.py └── strip-floats.py └── src ├── Zinguo.cpp ├── ZinguoConfig.pb.c └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/README.md -------------------------------------------------------------------------------- /file/flash/wiring_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/file/flash/wiring_diagram.png -------------------------------------------------------------------------------- /file/images/tab1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/file/images/tab1.png -------------------------------------------------------------------------------- /file/images/tab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/file/images/tab2.png -------------------------------------------------------------------------------- /file/images/tab3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/file/images/tab3.png -------------------------------------------------------------------------------- /file/images/tab4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/file/images/tab4.png -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/include/README -------------------------------------------------------------------------------- /include/Zinguo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/include/Zinguo.h -------------------------------------------------------------------------------- /include/ZinguoConfig.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/include/ZinguoConfig.pb.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/lib/README -------------------------------------------------------------------------------- /nanopb/ZinguoConfig.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/nanopb/ZinguoConfig.proto -------------------------------------------------------------------------------- /nanopb/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/nanopb/descriptor.proto -------------------------------------------------------------------------------- /nanopb/generator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/nanopb/generator.bat -------------------------------------------------------------------------------- /nanopb/nanopb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/nanopb/nanopb.proto -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/platformio.ini -------------------------------------------------------------------------------- /scripts/name-firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/scripts/name-firmware.py -------------------------------------------------------------------------------- /scripts/strip-floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/scripts/strip-floats.py -------------------------------------------------------------------------------- /src/Zinguo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/src/Zinguo.cpp -------------------------------------------------------------------------------- /src/ZinguoConfig.pb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/src/ZinguoConfig.pb.c -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlwz/esp_zinguo/HEAD/src/main.cpp --------------------------------------------------------------------------------