ESPresence to track Smart Phones, Smart Watches, Tile, almost any Bluetooth devices

Поділитися
Вставка
  • Опубліковано 2 сер 2024
  • today we will use ESPresence to track anything with Bluetooth. this is a great way to track people in the house accurately, assuming they have these bluetooth devices on their body. the price per room comes out to be $10 or lesser when buying in bulk. full list of working devices here: espresense.com/beacons
    sample yml file: drive.google.com/file/d/1Un2z...
    video time index
    ==============
    0:00 intro
    1:09 things you need
    1:37 installing ESPresence
    2:43 configuring ESPresence
    3:59 adding a Bluetooth device to track
    9:01 tracking Android phones
    9:42 tracking Apple devices
    items seen or mentioned in this video
    ===============================
    + esp32 chip: amzn.to/450hlye
    + antenna: amzn.to/47qZdim
    + amazfit watch: amzn.to/44gSmpj
    + tile tracker: amzn.to/3qmpMVl
    video was made with these items
    ===========================
    + Canon R8: amzn.to/43sSD8Z
    + Canon rf 35mm: amzn.to/3oVRmbp
    + blue yeti microphone amzn.to/3af7A4A
    + macro keypad: amzn.to/3YLNtlh
    + Davinci Resolve Studio: amzn.to/363ZblR
  • Наука та технологія

КОМЕНТАРІ • 6

  • @smarttips8127
    @smarttips8127 2 місяці тому

    Great Video, I hadn't worked out the iBeacon method of finding my Watch 4 / Note 20. But this worked, thanks!

  • @fdb-you
    @fdb-you 4 місяці тому

    Hi I did manage to ad my samsung the sameway as you did with the ipad.

  • @kai3558
    @kai3558 8 місяців тому

    hi ! do u know how to make HA do an automation when the device is detected ?

    • @dablet
      @dablet  8 місяців тому +1

      yes. i will make a video for you when i can.

    • @halasizs
      @halasizs 3 місяці тому

      @@dablet I'd be curious to know that too! I couldn't find a video of it. "hi ! do u know how to make HA do an automation when the device is detected ?"

    • @michelbeauregard6187
      @michelbeauregard6187 3 місяці тому

      @@halasizsAs explain by dablet in video You have two parts. You have the sensor that you detecting as the bluetooth signal . And the espresence device that provides the location of the detection. So your trigger is the espresence at a specific location label say garage. And a bluetooth watch that is identifier say Joe.
      Homeassistant espresence devices always report the closest location match. So when Joe moves from kitchen to garage Joe is detected in garage from kitchen. That is your trigger . Or reversly when he leave the garage. Then sensor is joe's watch and the device detecting it is garage ( espresence ) . The action can be anything like garage lights OFF. One thing important is that esprence is slow to react so turning lamps OFF is the way I use it .
      I cant post printscreen but you can get a feel of the result with yaml as follows , here the automation is to turn garage light off . The action part is anything you can control exemple garage lights. I detect when joe is leaving from garage. Please also note that presence sensor are specific so you need to sense for anyone allowed.
      the trigger part is interesting part the rest of the automation is standard:
      platform: state
      entity_id:
      - sensor.joe
      from: garage
      for:
      hours: 0
      minutes: 1
      seconds: 0
      id: JoePresenceOFF
      to detect joe presence in garage the change is "from: garage" > "to: garage"
      hope it helps