├── .drone.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── MANIFEST.in ├── README.md ├── setup.py ├── tools └── debug_discovery.py └── tuyaha ├── __init__.py ├── devices ├── __init__.py ├── base.py ├── climate.py ├── cover.py ├── factory.py ├── fan.py ├── light.py ├── lock.py ├── remote.py ├── scene.py └── switch.py └── tuyaapi.py /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/setup.py -------------------------------------------------------------------------------- /tools/debug_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tools/debug_discovery.py -------------------------------------------------------------------------------- /tuyaha/__init__.py: -------------------------------------------------------------------------------- 1 | """Init file for test""" 2 | from .tuyaapi import TuyaApi 3 | -------------------------------------------------------------------------------- /tuyaha/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tuyaha/devices/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/devices/base.py -------------------------------------------------------------------------------- /tuyaha/devices/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/devices/climate.py -------------------------------------------------------------------------------- /tuyaha/devices/cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/devices/cover.py -------------------------------------------------------------------------------- /tuyaha/devices/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/devices/factory.py -------------------------------------------------------------------------------- /tuyaha/devices/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/devices/fan.py -------------------------------------------------------------------------------- /tuyaha/devices/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/devices/light.py -------------------------------------------------------------------------------- /tuyaha/devices/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/devices/lock.py -------------------------------------------------------------------------------- /tuyaha/devices/remote.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tuyaha/devices/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/devices/scene.py -------------------------------------------------------------------------------- /tuyaha/devices/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/devices/switch.py -------------------------------------------------------------------------------- /tuyaha/tuyaapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulAnnekov/tuyaha/HEAD/tuyaha/tuyaapi.py --------------------------------------------------------------------------------