├── README.md ├── custom_components └── files │ ├── __init__.py │ ├── manifest.json │ └── sensor.py └── hacs.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarheelGrad1998/files/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/files/__init__.py: -------------------------------------------------------------------------------- 1 | """Files in a Folder.""" 2 | -------------------------------------------------------------------------------- /custom_components/files/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarheelGrad1998/files/HEAD/custom_components/files/manifest.json -------------------------------------------------------------------------------- /custom_components/files/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarheelGrad1998/files/HEAD/custom_components/files/sensor.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarheelGrad1998/files/HEAD/hacs.json --------------------------------------------------------------------------------