Created
September 24, 2022 03:28
-
-
Save DuqueDeTuring/55881791e65a31fda148c8ac85aabfb7 to your computer and use it in GitHub Desktop.
notificación de url actualizado vía mqtt en home assistant
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias: aviso de url actualizado | |
description: >- | |
envía una notificación al cel cuando parece que uno de los URL monitoreados | |
fue actualizado (pág. cambiada). | |
como cuando una pág. de un producto lo cambia a disponible. | |
trigger: | |
- platform: mqtt | |
topic: url_updated | |
condition: [] | |
action: | |
- service: notify.mobile_app_cel | |
data: | |
title: URL cambió! | |
message: "{{trigger.payload}}" | |
mode: single |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment