mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
13 lines
315 B
C
13 lines
315 B
C
|
|
#pragma once
|
||
|
|
#include "Consts.h"
|
||
|
|
#ifdef EnableTelegram
|
||
|
|
#include "Global.h"
|
||
|
|
|
||
|
|
extern void sendTelegramMsg();
|
||
|
|
extern void telegramInit();
|
||
|
|
extern void handleTelegram();
|
||
|
|
extern bool isEnableTelegramd();
|
||
|
|
extern bool isTelegramInputOn();
|
||
|
|
extern void telegramMsgParse(String msg);
|
||
|
|
extern String returnListOfParams();
|
||
|
|
#endif
|