some adjustments to match latest changes in KLib/Indoor

switched from Beacons to real Fingerprint points for fingerprinting
This commit is contained in:
2017-03-14 09:17:50 +01:00
parent 3a1cd1bccc
commit c7c94cbebe
9 changed files with 25 additions and 20 deletions

View File

@@ -64,7 +64,7 @@ protected:
const Timestamp ts = relativeTS(_ts);
handbrake(ts);
WiFiMeasurements copy = data;
for (WiFiMeasurement& m : copy.entries) {m.ts = ts;} // make each timestmap also relative
for (WiFiMeasurement& m : copy.entries) {m.setTimestamp(ts);} // make each timestmap also relative
WiFiSensor::informListeners(ts, copy);
}