2021-01-08 22:25:44 -08:00
|
|
|
#include <Arduino.h>
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
2021-01-19 21:26:23 -08:00
|
|
|
#define BoolToString(x) ((x) ? "true" : "false")
|
2021-01-08 22:25:44 -08:00
|
|
|
|
|
|
|
|
void replaceAll(std::string &str, const std::string &from, const std::string &to);
|