From df3413d11af6d6ee760d804092b30118cafd2e3f Mon Sep 17 00:00:00 2001 From: "alexei.dolgolyov" Date: Fri, 30 Jan 2026 14:47:16 +0300 Subject: [PATCH] Removed unused blueprint in `Test` folder --- Test/Test MQTT Topic List.yaml | 46 ---------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 Test/Test MQTT Topic List.yaml diff --git a/Test/Test MQTT Topic List.yaml b/Test/Test MQTT Topic List.yaml deleted file mode 100644 index adaa7e6..0000000 --- a/Test/Test MQTT Topic List.yaml +++ /dev/null @@ -1,46 +0,0 @@ -# ============================================================================= -# MQTT Multi-Topic Listener Blueprint (Test) -# ============================================================================= -# A simple test blueprint that listens to multiple MQTT topics and creates -# persistent notifications when messages are received on matching topics. -# -# Use Cases: -# - Debugging MQTT message flow -# - Testing topic subscriptions -# - Monitoring specific MQTT topics -# -# Author: Alexei Dolgolyov (dolgolyov.alexei@gmail.com) -# ============================================================================= - -blueprint: - name: MQTT Multi-Topic Listener - domain: automation - input: - mqtt_topics: - name: MQTT Topics - description: List of topics to react to - selector: - text: - multiple: true - default: [] - -trigger: - - platform: mqtt - topic: "#" - -action: - - variables: - mqtt_topics: !input mqtt_topics - received_topic: "{{ trigger.topic }}" - received_payload: "{{ trigger.payload }}" - - choose: - - conditions: - - condition: template - value_template: > - {{ received_topic in mqtt_topics }} - sequence: - - service: persistent_notification.create - data: - title: "Debug Info" - message: > - {{ trigger.topic }}