├── .gitignore ├── LICENSE ├── README.md └── yaml ├── automation └── valetudo-notifications.yaml └── script ├── valetudo-clean-rooms.yaml ├── valetudo-send-vacuum-command.yaml └── valetudo-trigger-auto-empty-dock.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundschenk-at/ha-valetudo-blueprints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundschenk-at/ha-valetudo-blueprints/HEAD/README.md -------------------------------------------------------------------------------- /yaml/automation/valetudo-notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundschenk-at/ha-valetudo-blueprints/HEAD/yaml/automation/valetudo-notifications.yaml -------------------------------------------------------------------------------- /yaml/script/valetudo-clean-rooms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundschenk-at/ha-valetudo-blueprints/HEAD/yaml/script/valetudo-clean-rooms.yaml -------------------------------------------------------------------------------- /yaml/script/valetudo-send-vacuum-command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundschenk-at/ha-valetudo-blueprints/HEAD/yaml/script/valetudo-send-vacuum-command.yaml -------------------------------------------------------------------------------- /yaml/script/valetudo-trigger-auto-empty-dock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundschenk-at/ha-valetudo-blueprints/HEAD/yaml/script/valetudo-trigger-auto-empty-dock.yaml --------------------------------------------------------------------------------