This commit is contained in:
Andrey 2022-03-19 19:33:37 -04:00
parent 3b9b53e314
commit 332c4973ed
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#include "datalogging.h"
#include "histogram.h"
// also known as bool2string and boolean2string
const char * boolToString(bool value) {
return value ? "Yes" : "No";
}