├── .gitignore ├── README.md ├── index.js ├── lib ├── base_accessory.js ├── dimmer_accessory.js ├── light_accessory.js ├── outlet_accessory.js ├── switch_accessory.js └── tuyawebapi.js ├── package.json └── test └── tuyawebapi_test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/index.js -------------------------------------------------------------------------------- /lib/base_accessory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/lib/base_accessory.js -------------------------------------------------------------------------------- /lib/dimmer_accessory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/lib/dimmer_accessory.js -------------------------------------------------------------------------------- /lib/light_accessory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/lib/light_accessory.js -------------------------------------------------------------------------------- /lib/outlet_accessory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/lib/outlet_accessory.js -------------------------------------------------------------------------------- /lib/switch_accessory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/lib/switch_accessory.js -------------------------------------------------------------------------------- /lib/tuyawebapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/lib/tuyawebapi.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/package.json -------------------------------------------------------------------------------- /test/tuyawebapi_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basdelfos/homebridge-tuya-web/HEAD/test/tuyawebapi_test.js --------------------------------------------------------------------------------