Fix GUI of m5stix...

This commit is contained in:
DTTerastar 2021-09-18 22:40:43 -04:00
parent 0ff4650bd3
commit 8e86f451d9
2 changed files with 4 additions and 2 deletions

View File

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
- Fix GUI of m5stickc
## [1.5.4]
- Fix beacons that send BOTH manufacture data and service uuids (#41)

View File

@ -59,7 +59,7 @@ void GUI::connected(bool wifi = false, bool mqtt = false)
void GUI::close(BleFingerprint *f)
{
Serial.printf("%d Close | MAC: %s, ID: %-50s\n", xPortGetCoreID(), f->getMac().c_str(), f->getId().c_str());
status("C: %s", f->getId());
status("C: %s", f->getId().c_str());
}
void GUI::added(BleFingerprint *f)
@ -75,7 +75,7 @@ void GUI::removed(BleFingerprint *f)
void GUI::left(BleFingerprint *f)
{
Serial.printf("%d Left | MAC: %s, ID: %-50s\n", xPortGetCoreID(), f->getMac().c_str(), f->getId().c_str());
status("L: %s", f->getId());
status("L: %s", f->getId().c_str());
}
void GUI::status(const char *format, ...)