├── .gitignore ├── LICENSE ├── README.md ├── custom_components.json ├── custom_components ├── amcrest │ ├── __init__.py │ ├── binary_sensor.py │ ├── camera.py │ ├── manifest.json │ ├── sensor.py │ └── switch.py ├── composite │ ├── __init__.py │ ├── device_tracker.py │ └── manifest.json ├── fperms │ ├── __init__.py │ └── manifest.json ├── illuminance │ ├── __init__.py │ ├── manifest.json │ └── sensor.py ├── life360 │ ├── __init__.py │ ├── device_tracker.py │ └── manifest.json └── sun │ ├── __init__.py │ ├── automation.py │ └── manifest.json ├── custom_components_old.json ├── docs ├── amcrest.md ├── composite.md ├── custom_updater.md ├── illuminance.md ├── images │ └── illuminance_history.png ├── life360.md ├── light_store.md ├── logcomps.md └── sun.md ├── python_scripts.json ├── python_scripts └── light_store.py └── tools ├── hadb.py ├── list_life360.py ├── logcomps.py ├── state_updates.py ├── test_events.py └── update_service.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/README.md -------------------------------------------------------------------------------- /custom_components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components.json -------------------------------------------------------------------------------- /custom_components/amcrest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/amcrest/__init__.py -------------------------------------------------------------------------------- /custom_components/amcrest/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/amcrest/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/amcrest/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/amcrest/camera.py -------------------------------------------------------------------------------- /custom_components/amcrest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/amcrest/manifest.json -------------------------------------------------------------------------------- /custom_components/amcrest/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/amcrest/sensor.py -------------------------------------------------------------------------------- /custom_components/amcrest/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/amcrest/switch.py -------------------------------------------------------------------------------- /custom_components/composite/__init__.py: -------------------------------------------------------------------------------- 1 | """Composite Device Tracker.""" 2 | 3 | __version__ = '1.7.5' 4 | -------------------------------------------------------------------------------- /custom_components/composite/device_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/composite/device_tracker.py -------------------------------------------------------------------------------- /custom_components/composite/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/composite/manifest.json -------------------------------------------------------------------------------- /custom_components/fperms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/fperms/__init__.py -------------------------------------------------------------------------------- /custom_components/fperms/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/fperms/manifest.json -------------------------------------------------------------------------------- /custom_components/illuminance/__init__.py: -------------------------------------------------------------------------------- 1 | """Illuminance Sensor""" 2 | 3 | __version__ = '2.0.5' 4 | -------------------------------------------------------------------------------- /custom_components/illuminance/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/illuminance/manifest.json -------------------------------------------------------------------------------- /custom_components/illuminance/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/illuminance/sensor.py -------------------------------------------------------------------------------- /custom_components/life360/__init__.py: -------------------------------------------------------------------------------- 1 | """Life360 Device Tracker.""" 2 | 3 | __version__ = '2.10.1' 4 | -------------------------------------------------------------------------------- /custom_components/life360/device_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/life360/device_tracker.py -------------------------------------------------------------------------------- /custom_components/life360/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/life360/manifest.json -------------------------------------------------------------------------------- /custom_components/sun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/sun/__init__.py -------------------------------------------------------------------------------- /custom_components/sun/automation.py: -------------------------------------------------------------------------------- 1 | from homeassistant.components.automation.sun import * 2 | -------------------------------------------------------------------------------- /custom_components/sun/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components/sun/manifest.json -------------------------------------------------------------------------------- /custom_components_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/custom_components_old.json -------------------------------------------------------------------------------- /docs/amcrest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/docs/amcrest.md -------------------------------------------------------------------------------- /docs/composite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/docs/composite.md -------------------------------------------------------------------------------- /docs/custom_updater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/docs/custom_updater.md -------------------------------------------------------------------------------- /docs/illuminance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/docs/illuminance.md -------------------------------------------------------------------------------- /docs/images/illuminance_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/docs/images/illuminance_history.png -------------------------------------------------------------------------------- /docs/life360.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/docs/life360.md -------------------------------------------------------------------------------- /docs/light_store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/docs/light_store.md -------------------------------------------------------------------------------- /docs/logcomps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/docs/logcomps.md -------------------------------------------------------------------------------- /docs/sun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/docs/sun.md -------------------------------------------------------------------------------- /python_scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/python_scripts.json -------------------------------------------------------------------------------- /python_scripts/light_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/python_scripts/light_store.py -------------------------------------------------------------------------------- /tools/hadb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/tools/hadb.py -------------------------------------------------------------------------------- /tools/list_life360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/tools/list_life360.py -------------------------------------------------------------------------------- /tools/logcomps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/tools/logcomps.py -------------------------------------------------------------------------------- /tools/state_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/tools/state_updates.py -------------------------------------------------------------------------------- /tools/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/tools/test_events.py -------------------------------------------------------------------------------- /tools/update_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnbruckner/homeassistant-config/HEAD/tools/update_service.py --------------------------------------------------------------------------------