├── .github └── workflows │ └── combined.yaml.disable ├── .gitignore ├── .travis.yml ├── README.md ├── custom_components └── huesensor │ ├── __init__.py │ ├── binary_sensor.py │ ├── data_manager.py │ ├── device_tracker.py │ ├── hue_api_response.py │ └── manifest.json ├── hacs.json ├── hue.png ├── requirements-dev.txt ├── requirements.txt └── tests ├── __init__.py ├── conftest.py ├── sensor_samples.py ├── test_binary_sensor.py └── test_device_tracker.py /.github/workflows/combined.yaml.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/.github/workflows/combined.yaml.disable -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/huesensor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/custom_components/huesensor/__init__.py -------------------------------------------------------------------------------- /custom_components/huesensor/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/custom_components/huesensor/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/huesensor/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/custom_components/huesensor/data_manager.py -------------------------------------------------------------------------------- /custom_components/huesensor/device_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/custom_components/huesensor/device_tracker.py -------------------------------------------------------------------------------- /custom_components/huesensor/hue_api_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/custom_components/huesensor/hue_api_response.py -------------------------------------------------------------------------------- /custom_components/huesensor/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/custom_components/huesensor/manifest.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/hacs.json -------------------------------------------------------------------------------- /hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/hue.png -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | homeassistant>=0.106.4 2 | aiohue>=2.0.0 3 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """The huesensors tests.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/sensor_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/tests/sensor_samples.py -------------------------------------------------------------------------------- /tests/test_binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/tests/test_binary_sensor.py -------------------------------------------------------------------------------- /tests/test_device_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/HEAD/tests/test_device_tracker.py --------------------------------------------------------------------------------