Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ################################################################################
- # The following are the requriements for using my Node-RED automation for
- # control of a Roborock vacuum cleaner integrated in Home Assistant.
- #
- # Link to Node-RED automation: https://pastebin.com/raw/EqH7yXFy
- ################################################################################
- ################################################################################
- # Sections below should be added to configuration.yaml file
- ################################################################################
- #───────────────────────────────────────────────────────────────────────────────
- # Enable IOS Actionable Notifications
- #───────────────────────────────────────────────────────────────────────────────
- ios:
- push:
- categories: !include ios_push_categories.yaml
- #───────────────────────────────────────────────────────────────────────────────
- # Input booleans used for room selection for vaccum cleaner
- #
- # NOTE: The digits in the names must corresond to the room numbers in the
- # Mi Home app.
- #
- # See link below for instructions on how to find the room numbers:
- #
- # https://community.home-assistant.io/t/xiaomi-vacuum-s1-s60-t60-s61-t61-room-cleaning-by-room-name/122315/63
- #
- #───────────────────────────────────────────────────────────────────────────────
- input_boolean:
- clean_room_01:
- name: Gæstetoilet
- icon: mdi:paper-roll
- clean_room_16:
- name: Kontor
- icon: mdi:laptop
- clean_room_17:
- name: Køkken/alrum
- icon: mdi:silverware-fork-knife
- clean_room_19:
- name: Børneværelse 1
- icon: mdi:unicorn-variant
- clean_room_20:
- name: Soveværelse
- icon: mdi:sleep
- clean_room_21:
- name: Stort badeværelse
- icon: mdi:shower
- clean_room_22:
- name: Gang
- icon: mdi:hanger
- clean_room_23:
- name: Børneværelse 2
- icon: mdi:crown
- clean_room_24:
- name: Bryggers
- icon: mdi:tumble-dryer
- clean_room_26:
- name: Stue
- icon: mdi:sofa
- ################################################################################
- # Sections below should be added to the ios_push_categories.yaml file
- ################################################################################
- #───────────────────────────────────────────────────────────────────────────────
- # Ask to start full vacuum clean or room clean when away
- #───────────────────────────────────────────────────────────────────────────────
- - name: Vacuum_Notification
- identifier: "vacuum_notification"
- actions:
- - identifier: "VACUUM_FULL_CLEAN"
- title: "Ja, tak"
- activationMode: "background"
- authenticationRequired: no
- destructive: no
- - identifier: "VACUUM_ROOM_CLEAN"
- title: "Kun i valgte rum"
- activationMode: "background"
- authenticationRequired: no
- destructive: no
- - identifier: "VACUUM_POSTPONE"
- title: "Udsæt til i morgen"
- activationMode: "background"
- authenticationRequired: no
- destructive: no
- - identifier: "VACUUM_ASK_LATER"
- title: "Spørg mig igen lidt senere"
- activationMode: "background"
- authenticationRequired: no
- destructive: no
- #───────────────────────────────────────────────────────────────────────────────
- # Ask to empty vacuum
- #───────────────────────────────────────────────────────────────────────────────
- - name: Vacuum_Empty_Notification
- identifier: "vacuum_empty_notification"
- actions:
- - identifier: "VACUUM_EMPTY_YES"
- title: "Ja, lad os gøre det!"
- activationMode: "background"
- authenticationRequired: no
- destructive: no
- - identifier: "VACUUM_EMPTY_ASK_LATER"
- title: "Spørg mig igen lidt senere"
- activationMode: "background"
- authenticationRequired: no
- destructive: no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement