mirror of
https://github.com/randybb/esphome-configs.git
synced 2026-03-03 07:14:10 +01:00
Extract shared M5ATOM vehicle code (esp32, on_loop, LED effects) into
common/vehicle_base.yaml, reducing each vehicle file from ~136 to 20
lines. Remove dead commented-out code from on_loop lambda.
Gate: fix on_multi_click and select indentation, change
esp32_ble_tracker id from ${name} to ${device} (lowercase),
remove unused commented-out gate_flash GPIO sensor.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
38 lines
802 B
YAML
38 lines
802 B
YAML
substitutions:
|
|
device: vehicle-toyota-auris-ts
|
|
name: Vehicle Toyota Auris TS
|
|
area: Outside
|
|
comment: "${area}, Beacon | Toyota Auris TS"
|
|
|
|
esphome:
|
|
name: mcu-${device}
|
|
friendly_name: ${name}
|
|
area: ${area}
|
|
comment: ${comment}
|
|
on_boot:
|
|
then:
|
|
- if:
|
|
condition:
|
|
- binary_sensor.is_off: button
|
|
then:
|
|
- wifi.disable:
|
|
|
|
packages:
|
|
base: !include common/vehicle_base.yaml
|
|
wifi: !include common/wifi.yaml
|
|
logger: !include common/logger.yaml
|
|
ota: !include common/ota.yaml
|
|
|
|
binary_sensor:
|
|
- platform: gpio
|
|
id: button
|
|
filters:
|
|
- invert:
|
|
pin: 39
|
|
|
|
esp32_ble_beacon:
|
|
type: iBeacon
|
|
uuid: !secret ble_beacon_toyota_auris_uuid
|
|
major: !secret ble_beacon_toyota_auris_major
|
|
minor: !secret ble_beacon_toyota_auris_minor
|