37 lines
785 B
YAML
37 lines
785 B
YAML
# =======================
|
|
# BUTTONS
|
|
# =======================
|
|
button:
|
|
- platform: template
|
|
name: "Enable LD2410 BLE"
|
|
icon: mdi:bluetooth
|
|
entity_category: config
|
|
on_press:
|
|
lambda: |-
|
|
id(ld2410_radar)->ble_control(true);
|
|
|
|
- platform: template
|
|
name: "Disable LD2410 BLE"
|
|
icon: mdi:bluetooth-off
|
|
entity_category: config
|
|
on_press:
|
|
lambda: |-
|
|
id(ld2410_radar)->ble_control(false);
|
|
|
|
- platform: template
|
|
name: "LD2410 Reboot"
|
|
icon: mdi:radar
|
|
entity_category: config
|
|
on_press:
|
|
lambda: |-
|
|
id(ld2410_radar)->reboot();
|
|
|
|
- platform: restart
|
|
name: "ESP Reboot"
|
|
icon: mdi:power-cycle
|
|
|
|
- platform: factory_reset
|
|
name: Factory Reset
|
|
id: factory_reset_all
|
|
disabled_by_default: true
|