├── .github └── workflows │ ├── hacs.yaml │ └── hassfest.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── FUNDING.yaml ├── LICENSE ├── README.md ├── custom_components └── epex_spot_sensor │ ├── __init__.py │ ├── binary_sensor.py │ ├── config_flow.py │ ├── const.py │ ├── contiguous_interval.py │ ├── intermittent_interval.py │ ├── manifest.json │ ├── translations │ └── en.json │ └── util.py ├── hacs.json ├── images └── setup.png └── tests └── bandit.yaml /.github/workflows/hacs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/.github/workflows/hacs.yaml -------------------------------------------------------------------------------- /.github/workflows/hassfest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/.github/workflows/hassfest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /FUNDING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/FUNDING.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/epex_spot_sensor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/custom_components/epex_spot_sensor/__init__.py -------------------------------------------------------------------------------- /custom_components/epex_spot_sensor/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/custom_components/epex_spot_sensor/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/epex_spot_sensor/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/custom_components/epex_spot_sensor/config_flow.py -------------------------------------------------------------------------------- /custom_components/epex_spot_sensor/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/custom_components/epex_spot_sensor/const.py -------------------------------------------------------------------------------- /custom_components/epex_spot_sensor/contiguous_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/custom_components/epex_spot_sensor/contiguous_interval.py -------------------------------------------------------------------------------- /custom_components/epex_spot_sensor/intermittent_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/custom_components/epex_spot_sensor/intermittent_interval.py -------------------------------------------------------------------------------- /custom_components/epex_spot_sensor/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/custom_components/epex_spot_sensor/manifest.json -------------------------------------------------------------------------------- /custom_components/epex_spot_sensor/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/custom_components/epex_spot_sensor/translations/en.json -------------------------------------------------------------------------------- /custom_components/epex_spot_sensor/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/custom_components/epex_spot_sensor/util.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/hacs.json -------------------------------------------------------------------------------- /images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/images/setup.png -------------------------------------------------------------------------------- /tests/bandit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mampfes/ha_epex_spot_sensor/HEAD/tests/bandit.yaml --------------------------------------------------------------------------------