My project is broken

If I’m wrong here please put this to right folder.
I startet with a project to control my Buderus WLW186-10kW-E, but now nothing depending on automations or configurations, even the simplest code dos’nt work:
alias: “TEST GUI Automation”
trigger:

  • platform: homeassistant
    event: start
    action:
  • service: persistent_notification.create
    data:
    title: “GUI TEST OK”
    message: “GUI Automation läuft!”
    mode: single

Others might have better answers than I.

How did you bring the sensor data from the heat pump into HA? Another way to ask is what are the devices/entities associated with the heat pump Can you show the automations you use?

You might check out https://heatpumpmonitor.org/ as this outfit is very, very knowledgeable about heat pumps.

-OSD

Pleas format the code with a preformatted text block. Indentation is important and it gets destroyed by the forum if you don’t use it.

Also, if nothing works, it is good to look at system logs and automation traces.

What Edwin means is: select your code and click on the </> icon in the formatting area. Then it will look like the code in your yaml

Where exactly did you put that code?

Thanks for this fast replys, I have build up HA automations + configuration with help from GTP, but we got a bug, in the meantime we fixed some points, as lost entity or sensors.
But one automation, which should send a simple number to an shelly, does’nt work.
I feel at this point I’m wrong in this tread give a hint if it is.

  • alias: “PC1 PWM → Boost-Shelly aktualisieren”
    description: “Sendet alle 10 Sekunden den aktuellen Wert von pc1_pwm_2 an Shelly Light 3”
    trigger:
    • platform: time_pattern
      seconds: “/10”
      action:
    • service: light.turn_on
      target:
      entity_id: light.shellyplusrgbwpm_2cbcbb302f2c_light_3
      data:
      brightness_pct: “{{ states(‘sensor.pc1_pwm’) | float(0) }}”
      mode: single
      Syntax is checked, all Enitiys, sensors.xyz are OK and HA is almost running with this.
      But at Shelly nothing happens.
      PS: </> icon is not in my formatting area.

I figuered out where my problem has been. In configuration this line was lost:

automation: !include automations.yaml