Mqtt ring alarm integration with manual_mqtt panel not working

I must be missing something very simple here:

alarm_control_panel.home_alarm is my real ring alarm panel and works fine i just but need a keypad to disarm for security obviously or anyone that might break in can just hit DISARM on tablet and stop alarm

alarm_control_panel.ha_alarm is manual created panel WITH keypad/code and works great just dont actual control the actual ring integration/mqtt

I have read a few post but cant seem to understand how this works
how would i make the manual created panel control the actual alarm?

This is what i have in configuration.yaml:

alarm_control_panel:

  • platform: manual_mqtt
    state_topic: home/alarm
    command_topic: home/alarm/set
    code: 1234
    pending_time: 30
    delay_time: 20
    trigger_time: 4
    disarmed:
    trigger_time: 0
    armed_home:
    pending_time: 0
    delay_time: 0
    triggered:
    pending_time: 0

fixed this with state_topic and command_topic from device settings mqtt
works perfectly now and made it so only need a ode to disarm

examample incase someone else needs help:
alarm_control_panel:

  • platform: mqtt
    name: Home alarm with kepad
    state_topic: YOUR MQTT STATE
    command_topic: YOUR MQTT COMMAND
    payload_available: “online”
    payload_not_available: “offline”
    code: 1234
    code_arm_required: false
    code_disarm_required: true