Last active
November 22, 2024 23:48
-
-
Save rmoriz/e2fbb38427d5d7100c45b92a82e01f2e to your computer and use it in GitHub Desktop.
ESPHome bluetooth proxy example ESP32 WIFI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# see https://esphome.io/components/bluetooth_proxy.html | |
# see https://esphome.io/components/ble_client.html | |
# | |
esphome: | |
name: bluetooth-proxy-downstairs | |
friendly_name: bluetooth-proxy-downstairs | |
esp32: | |
board: esp32dev | |
framework: | |
type: esp-idf | |
# Enable logging | |
logger: | |
# Enable Home Assistant API | |
api: | |
on_client_connected: | |
- esp32_ble_tracker.start_scan: | |
continuous: true | |
on_client_disconnected: | |
- esp32_ble_tracker.stop_scan: | |
wifi: | |
ssid: "iot-wifi" | |
password: "...." | |
# Enable fallback hotspot in case wifi connection fails | |
ap: | |
ssid: "BT proxy downstairs - fallback" | |
password: "supersecret" | |
captive_portal: | |
esp32_ble_tracker: | |
scan_parameters: | |
continuous: false | |
bluetooth_proxy: | |
active: true | |
esp32_ble: | |
io_capability: keyboard_only | |
ble_client: | |
# example is for connecting a eq3 bluetooth thermostat which requires a pin to connect (passkey) | |
# shown on the device once enabled for pairing | |
# 00:1A:22:10:XX:XX MAC address of the device | |
- mac_address: 00:1A:22:10:XX:XX | |
id: my_eq3_thermostat | |
auto_connect: true | |
on_passkey_request: | |
then: | |
- logger.log: "Authenticating with passkey at 00:1A:22:10:XX:XX" | |
- ble_client.passkey_reply: | |
id: my_eq3_thermostat | |
passkey: 123456 | |
on_connect: | |
then: | |
- logger.log: "connected 00:1A:22:10:XX:XX" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment