Изымаем частную реализацию общей функции

This commit is contained in:
2022-09-05 16:24:30 +03:00
parent 5ec718e68b
commit e391bee0ca

View File

@@ -3,23 +3,6 @@
#include "CTBot.h"
String uint64ToString(uint64_t input) {
String result = "";
uint8_t base = 10;
do {
char c = input % base;
input /= base;
if (c < 10)
c +='0';
else
c += 'A' - 10;
result = c + result;
} while (input);
return result;
}
class Telegram : public IoTItem {
private: