├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── ha_wechat │ ├── EncryptHelper.py │ ├── __init__.py │ ├── assist.py │ ├── config_flow.py │ ├── const.py │ ├── entity.py │ ├── ha_mqtt.py │ ├── manifest.json │ ├── manifest.py │ ├── sensor.py │ ├── services.yaml │ ├── state_changed.py │ ├── translations │ └── en.json │ └── util.py └── hacs.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/ha_wechat/EncryptHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/EncryptHelper.py -------------------------------------------------------------------------------- /custom_components/ha_wechat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/__init__.py -------------------------------------------------------------------------------- /custom_components/ha_wechat/assist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/assist.py -------------------------------------------------------------------------------- /custom_components/ha_wechat/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/config_flow.py -------------------------------------------------------------------------------- /custom_components/ha_wechat/const.py: -------------------------------------------------------------------------------- 1 | PLATFORMS = ["sensor"] -------------------------------------------------------------------------------- /custom_components/ha_wechat/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/entity.py -------------------------------------------------------------------------------- /custom_components/ha_wechat/ha_mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/ha_mqtt.py -------------------------------------------------------------------------------- /custom_components/ha_wechat/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/manifest.json -------------------------------------------------------------------------------- /custom_components/ha_wechat/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/manifest.py -------------------------------------------------------------------------------- /custom_components/ha_wechat/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/sensor.py -------------------------------------------------------------------------------- /custom_components/ha_wechat/services.yaml: -------------------------------------------------------------------------------- 1 | qrcode: 2 | name: 生成二维码 3 | description: 使用【HomeAssistant家庭助理】小程序扫码关联 -------------------------------------------------------------------------------- /custom_components/ha_wechat/state_changed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/state_changed.py -------------------------------------------------------------------------------- /custom_components/ha_wechat/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/translations/en.json -------------------------------------------------------------------------------- /custom_components/ha_wechat/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/custom_components/ha_wechat/util.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/ha_wechat/HEAD/hacs.json --------------------------------------------------------------------------------