Skip to content

Lock your Macbook with a BLE enabled device! This uses the measured RSSI between two BLE devices to check if there is a good connection or not. If there is a bad connection, then the device is either distant or there are objects blocking the signal. This is not an exact science, so a median is used to get an approximate value of the current RSSI.

Notifications You must be signed in to change notification settings

alicescfernandes/mac-ble-lock

Repository files navigation

Lock your Macbook with a BLE enabled device

This uses the measured RSSI between two BLE devices to check if there is a good connection or not. If there is a bad connection, then the device is either distant or there are objects blocking the signal. This is not an exact science, so a median is used to get an aproximate value of the current RSSI. A better way would be using Kalman filters though

Requirements

  • A Macbook with bluethooth version >= 4.0
  • A device with bluetooth >= 4.0, this can be smartwatches, smartphones or any other device. Please note that this will connect to the device, leaving the bluetooth of that device inacessible to other devices. Use a device just for this

How does this work?

A BLE beacon will advertise itself on an interval basis, or set number of times. For instance, Filo Tag advertises itself once every one or two seconds, other beacons will have diferent interval times. When they do, the beacon transmits the UUID and the TX Power on which RSSI is calculated. RSSI is a value in db that tells how good of a connection the beacon has relative to the laptop. Good connection means the beacon is nearby, bad connection means the beacon is not nearby. This code reads that RSSI and locks the device if the RSSI is lower than a threshold.

Please note that it's the beacons that decide when they advertise, and the program only reacts to the advertisments. If a beacon only does every second or slower, then the program will take that amount of time to react to the RSSI

Hardware

This program was tested with:

  • Xiaomi Mi 9T Pro (must be advertising on BLE)
  • Fitbit versa
  • Filo Tag (https://www.filotrack.com/)
  • This should work with other bluetooth tracking devices on the market, as long as they have bluetooth >= 4.0

Other interesting hardware are programable beacons that allow you to set custom advertising intervals

  • FeasyBeacon
  • RadBeacon
  • Espruino Puck (a JS programmable board with BLE built-in)

How to enable BLE mode on smartphones

Software

If you want to test the code without a hardware BLE beacon, it's possible to have a peripheral running on Android and iOS devices. Note: Android rotates the address of the BLE, so use the name to connect to it

Android

iOS

Other indoor tracking technologies

How to run

Install the package

  1. git clone <this repo>
  2. npm install
  3. npm link

Run on the CLI

First you must check which devices are advertising

ble-lock --calibrate

After getting the device. Either the name or UUID must be send. Depending on the device, the UUID can change every now and then.

ble-lock --start --local-name <name> --uuid <uuid>

The program defaults to passive mode, but since passive mode can be slower, if you want to use the active mode, pass the flag to the program. In the active mode (and depending on the device) the program can disconnect from it, so the passive mode won't connect to the device

ble-lock --start --local-name <name> --uuid <uuid> --active true

Optionally, you can calibrate the values before running the program. Use the command below and follow the instructions on the terminal. At the end you will get two values: the "near" rssi and the "away" rssi. You can use the "away" threshold as an input on the start command

ble-lock --calibrate --local-name <name> --uuid <uuid>
ble-lock --start --local-name <name> --uuid <uuid> --threshold -80

About

Lock your Macbook with a BLE enabled device! This uses the measured RSSI between two BLE devices to check if there is a good connection or not. If there is a bad connection, then the device is either distant or there are objects blocking the signal. This is not an exact science, so a median is used to get an approximate value of the current RSSI.

Topics

Resources

Stars

Watchers

Forks