-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTBot.h
137 lines (117 loc) · 4.26 KB
/
CTBot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#pragma once
#ifndef CTBOT
#define CTBOT
#include <Arduino.h>
#include "ESP8266WiFi.h"
#include "WiFiClientSecure.h"
#include "CTBotDataStructures.h"
#define CTBOT_DEBUG_MODE 0 // enable debugmode -> print debug data on the Serial
// Zero -> debug disabled
#define CTBOT_BUFFER_SIZE 0 // json parser buffer size
// Zero -> dynamic allocation
// value for disabling the status pin. It is utilized for led notification on the board
#define CTBOT_DISABLE_STATUS_PIN -1
class CTBot
{
private:
WiFiClientSecure m_telegramServer;
uint8_t m_wifiConnectionTries;
int8_t m_statusPin;
String m_token;
uint32_t m_lastUpdate;
bool m_useDNS;
bool m_UTF8Encoding;
// send data to the serial port. It work only if the CTBOT_DEBUG_MODE is enabled.
// params
// message: the message to send
inline void serialLog(String message);
// send commands to the telegram server. For info about commands, check the telegram api https://core.telegram.org/bots/api
// params
// command : the command to send, i.e. getMe
// parameters: optional parameters
// returns
// true if no error occurred
bool sendCommand(String command, String parameters = "");
// convert an UNICODE string to UTF8 encoded string
// params
// message: the UNICODE message
// returns
// a string with the converted message in UTF8
String toUTF8(String message);
// get some information about the bot
// params
// user: the data structure that will contains the data retreived
// returns
// true if no error occurred
bool getMe(TBUser &user);
public:
// default constructor
CTBot();
// default destructor
~CTBot();
// set a static ip. If not set, use the DHCP.
// params
// ip : the ip address
// gateway : the gateway address
// subnetMask: the subnet mask
// dns1 : the optional first DNS
// dns2 : the optional second DNS
// returns
// true if no error occurred
bool setIP(String ip, String gateway, String subnetMask, String dns1 = "", String dns2 = "");
// connect to a wifi network
// params
// ssid : the SSID network identifier
// password: the optional password
// returns
// true if no error occurred
bool wifiConnect(String ssid, String password = "");
// set the telegram token
// params
// token: the telegram token
void setTelegramToken(String token);
// use the URL style address "api.telegram.org" or the fixed IP address "149.154.167.198"
// for all communication with the telegram server
// Default value is true
// params
// value: true -> use URL style address
// false -> use fixed IP addres
void useDNS(bool value);
// enable/disable the UTF8 encoding for the received message.
// Default value is false (disabled)
// param
// value: true -> encode the received message with UTF8 encoding rules
// false -> leave the received message as-is
void enableUTF8Encoding(bool value);
// set how many times the wifiConnect method have to try to connect to the specified SSID.
// A value of zero mean infinite retries.
// Default value is zero (infinite retries)
// params
// retries: how many times wifiConnect have to try to connect
void setMaxConnectionRetries(uint8_t retries);
// set the status pin used to connect a LED for visual notification
// CTBOT_DISABLE_STATUS_PIN will disable the notification
// Default value is 2 (ESP8266 chip builtin LED)
// params
// pin: the pin used for visual notification
void setStatusPin(int8_t pin);
// test the connection between ESP8266 and the telegram server
// returns
// true if no error occurred
bool testConnection(void);
// get the first unread message from the queue. This is a destructive operation: once read, the message will be marked as read
// so a new getMessage will read the next message (if any).
// params
// message: the data structure that will contains the data retrieved
// returns
// true if there is a new message, false otherwise (error / no new messages)
bool getNewMessage(TBMessage &message);
// send a message to the specified telegram user ID
// params
// id : the telegram recipient user ID
// message: the message to send
// returns
// true if no error occurred
bool sendMessage(uint32_t id, String message);
};
#endif