From e391bee0ca9dca0c493a2457fa9c6172859e0ead Mon Sep 17 00:00:00 2001 From: biver Date: Mon, 5 Sep 2022 16:24:30 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D1=8B=D0=BC=D0=B0=D0=B5=D0=BC=20?= =?UTF-8?q?=D1=87=D0=B0=D1=81=D1=82=D0=BD=D1=83=D1=8E=20=D1=80=D0=B5=D0=B0?= =?UTF-8?q?=D0=BB=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D1=8E=20=D0=BE=D0=B1=D1=89?= =?UTF-8?q?=D0=B5=D0=B9=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/exec/Telegram/Telegram.cpp | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/modules/exec/Telegram/Telegram.cpp b/src/modules/exec/Telegram/Telegram.cpp index 6e48d84a..3ad5144e 100644 --- a/src/modules/exec/Telegram/Telegram.cpp +++ b/src/modules/exec/Telegram/Telegram.cpp @@ -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: