Skip to content
Ben edited this page Nov 28, 2025 · 1 revision

Welcome to the ProPresenter for Home Assistant wiki!

Attributes

Various information about ProPresenter are saved as attributes. An example is the Presentation Current Slide image entity has presentation_name & slide_notes attributes. You can create automations based off this information.

description: Triggers when ProPresenter slide notes change
triggers:
  - trigger: state
    entity_id: image.pp_presentation_current_slide
    attribute: slide_notes
conditions: []
actions:
  - action: notify.persistent_notification
    metadata: {}
    data:
      message: >-
        The notes changed to: {{
        state_attr('image.pp_presentation_current_slide',
        'slide_notes') }}
      title: Slide Notes Update
mode: single

Clone this wiki locally