diff --git a/CHANGELOG.md b/CHANGELOG.md index 33fdef4..e88b80c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.4.0] + +- Fingerprints are now 3 tier: primary ids > publicMac > secondard ids. A single mac can have multiple advertisements sent (especially certain beacons). So it might take a few packets before the id settles into the correct one. +- Volts and temperature are now reported from Eddystone TLM advertisements +- Names should show up more reliably now as well + ## [1.3.1] - Turn off NTP by default diff --git a/lib/BleFingerprint/BleFingerprint.cpp b/lib/BleFingerprint/BleFingerprint.cpp index 1cfafb6..0a8c934 100644 --- a/lib/BleFingerprint/BleFingerprint.cpp +++ b/lib/BleFingerprint/BleFingerprint.cpp @@ -19,7 +19,6 @@ BleFingerprint::BleFingerprint(BLEAdvertisedDevice *advertisedDevice, float fcmi void BleFingerprint::fingerprint(BLEAdvertisedDevice *advertisedDevice) { - if (advertisedDevice->haveName()) name = String(advertisedDevice->getName().c_str());