├── LICENSE ├── README.md ├── crypto.go ├── dev-manager.go ├── device.go ├── example ├── README ├── randtest.go ├── simple.go └── tuyaweb │ ├── README │ ├── config.json │ ├── static │ ├── README │ ├── htuya.js │ └── titatoggle-dist.css │ ├── tmpl │ ├── README │ ├── button.tmpl │ ├── error.tmpl │ ├── footer.tmpl │ └── header.tmpl │ └── tuyaweb.go ├── factory.go ├── msg.go ├── net.go ├── switch.go └── udpListen.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/README.md -------------------------------------------------------------------------------- /crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/crypto.go -------------------------------------------------------------------------------- /dev-manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/dev-manager.go -------------------------------------------------------------------------------- /device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/device.go -------------------------------------------------------------------------------- /example/README: -------------------------------------------------------------------------------- 1 | # Example files 2 | -------------------------------------------------------------------------------- /example/randtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/example/randtest.go -------------------------------------------------------------------------------- /example/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/example/simple.go -------------------------------------------------------------------------------- /example/tuyaweb/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /example/tuyaweb/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/example/tuyaweb/config.json -------------------------------------------------------------------------------- /example/tuyaweb/static/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /example/tuyaweb/static/htuya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/example/tuyaweb/static/htuya.js -------------------------------------------------------------------------------- /example/tuyaweb/static/titatoggle-dist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/example/tuyaweb/static/titatoggle-dist.css -------------------------------------------------------------------------------- /example/tuyaweb/tmpl/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /example/tuyaweb/tmpl/button.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/example/tuyaweb/tmpl/button.tmpl -------------------------------------------------------------------------------- /example/tuyaweb/tmpl/error.tmpl: -------------------------------------------------------------------------------- 1 |

Error : {{ . }}

2 | 3 | -------------------------------------------------------------------------------- /example/tuyaweb/tmpl/footer.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/example/tuyaweb/tmpl/footer.tmpl -------------------------------------------------------------------------------- /example/tuyaweb/tmpl/header.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/example/tuyaweb/tmpl/header.tmpl -------------------------------------------------------------------------------- /example/tuyaweb/tuyaweb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/example/tuyaweb/tuyaweb.go -------------------------------------------------------------------------------- /factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/factory.go -------------------------------------------------------------------------------- /msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/msg.go -------------------------------------------------------------------------------- /net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/net.go -------------------------------------------------------------------------------- /switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/switch.go -------------------------------------------------------------------------------- /udpListen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py60800/tuya/HEAD/udpListen.go --------------------------------------------------------------------------------