ESPresence and Bluetooth Proxy on same device?

Hi all,

I’m not a user of ESPhome yet, but there are 2 projects which are interesting me, the newly launched bluetooth proxies, and ESPresence. I don’t want to buy double the devices to run both of these. Can anyone tell me if it’s possible to run both things on the same device simultaneously?

1 Like

I wish you could could. I don’t think you can.

It would be great if ESPresence was a part of ESPHome or if ESPHome could do presence like ESPresence

1 Like

You can proxy some bt devices yourself in esphome. I never used espresence but I proxied one bt device over an esp long ago, here I"m running a temperature sensor on the esp + another one over BT

# Sensors

esp32_ble_tracker:

sensor:
  - platform: xiaomi_lywsdcgq
    mac_address: 58:2D:34:00:00:00
    temperature:
      name: "BT1 Temperature"
    humidity:
      name: "BT1 Humidity"
    battery_level:
      name: "BT1 Battery Level"


  - platform: dht
    pin: 27
    model: DHT22
    temperature:
      name: "Room Temperature"
    humidity:
      name: "Room Humidity"
    update_interval: 150s

  - platform: wifi_signal
    name: "WiFi Signal Sensor"
    update_interval: 150s

  - platform: adc
    pin: 35
    attenuation: 11db
    name: "Voltage Battery"
    filters:
    - lambda: return x * 2 *3.3 *1.1 / 4095 * 1000;
    unit_of_measurement: "Voltage"
    update_interval: 300s

Sounds like this would be different than the builtin hass BT proxy support though, right?

1 Like