automation: - alias: "Въезд в ворота - Распознан номер" trigger: - platform: webhook webhook_id: alpr_gate action: - service: notify.telegram data: title: "🚗 Въезд в ворота" message: | Номер: {{ trigger.json.plate }} Уверенность: {{ (trigger.json.confidence * 100) | round(1) }}% Время: {{ trigger.json.timestamp }} Камера: {{ trigger.json.camera }} - service: logbook.log data: name: "ALPR Detection" message: "Распознан номер {{ trigger.json.plate }}" sensor: - platform: template sensors: gate_last_plate: friendly_name: "Последний номер у ворот" value_template: "{{ state_attr('automation.vezd_v_vorota_raspoznan_nomer', 'last_triggered') }}"