-
-
Save BrentonPoke/65b8e65c46771e301be19c6874c96878 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#include <BLEAdvertisedDevice.h> | |
#include <BLEDevice.h> | |
#include <BLEScan.h> | |
const int PIN = 2; | |
const int CUTOFF = -60; | |
void setup() { | |
pinMode(PIN, OUTPUT); | |
BLEDevice::init(""); | |
} | |
void loop() { | |
BLEScan *scan = BLEDevice::getScan(); | |
scan->setActiveScan(true); | |
BLEScanResults results = scan->start(1); | |
int best = CUTOFF; | |
for (int i = 0; i < results.getCount(); i++) { | |
BLEAdvertisedDevice device = results.getDevice(i); | |
int rssi = device.getRSSI(); | |
if (rssi > best) { | |
best = rssi; | |
} | |
} | |
digitalWrite(PIN, best > CUTOFF ? HIGH : LOW); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment