-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglobals.cpp
More file actions
25 lines (22 loc) · 1.59 KB
/
Copy pathglobals.cpp
File metadata and controls
25 lines (22 loc) · 1.59 KB
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
/* ********************************************************************************************** */
/* */
/* Mini Access Detector Project ::::::::: ::: */
/* globals.cpp :+: :+: :+: :+: */
/* +:+ +:+ +:+ +:+ */
/* By: Roman Alexandrov <r.aleksandroff@gmail.com> +#++:++#: +#++:++#++: */
/* +#+ +#+ +#+ +#+ */
/* Created: 2023/10/31 14:49:16 #+# #+# #+# #+# */
/* Updated: 2023/11/12 10:35:41 ### ### ### ### */
/* */
/* */
/* Global variables and objects initialization */
/* */
/* ********************************************************************************************** */
#include "globals.h"
WiFiMulti wifiMulti;
WiFiClientSecure client;
UniversalTelegramBot bot(BOTtoken, client);
AsyncWebServer server(80);
String g_door_name = "The door";
bool g_door_state;
bool g_reboot;