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