├── .github └── workflows │ ├── release.yml │ └── validate.yaml ├── LICENSE ├── README.md ├── custom_components └── attributes │ ├── __init__.py │ ├── manifest.json │ └── sensor.py └── hacs.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilotak/homeassistant-attributes/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilotak/homeassistant-attributes/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilotak/homeassistant-attributes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilotak/homeassistant-attributes/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/attributes/__init__.py: -------------------------------------------------------------------------------- 1 | """Attributes breakout sensor""" 2 | -------------------------------------------------------------------------------- /custom_components/attributes/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilotak/homeassistant-attributes/HEAD/custom_components/attributes/manifest.json -------------------------------------------------------------------------------- /custom_components/attributes/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilotak/homeassistant-attributes/HEAD/custom_components/attributes/sensor.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pilotak/homeassistant-attributes/HEAD/hacs.json --------------------------------------------------------------------------------