Skip to content

Package: Debug Script

Version: Unknown
Description: No description provided.

Package Diagram

Executive Summary

No executive summary generated yet.

Process Description (Non-Technical)

No detailed non-technical description generated yet.

Dashboard Connections

No specific entities detected to link.

Architecture Diagram

No architecture explanation generated yet.

No architecture diagram generated yet.

Configuration (Source Code)

script:
  debug_mqtt_create_test:
    alias: "Debug: Create Test Entity"
    sequence:
      - service: mqtt.publish
        data:
          retain: true
          topic: "homeassistant/switch/area_debug_test/config"
          payload: >-
            {
              "name": "Area Debug Switch",
              "unique_id": "area_debug_switch_v1",
              "command_topic": "area/debug/set",
              "state_topic": "area/debug/state",
              "availability_topic": "area/debug/availability",
              "payload_available": "online"
            }
      - service: mqtt.publish
        data:
          retain: true
          topic: "area/debug/availability"
          payload: "online"
      - service: system_log.write
        data:
          message: "Debug Script Ran: Published area_debug_test"
          level: warning