File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change 18
18
#include " image_p.h"
19
19
#include " lorem_p.h"
20
20
21
+ #include < LittleFS.h>
22
+
23
+ // Нативная версия WiFi esp8266/esp32
24
+ #include < FastBot2.h>
25
+ FastBot2 bot;
26
+
27
+ // версия с другим клиентом, например tinygsm
28
+ // обязательно нужен модем с поддержкой HTTPS
29
+ // #define TINY_GSM_MODEM_SIM7000SSL
30
+ // #include <TinyGsmClient.h>
31
+ // TinyGsm modem(Serial);
32
+ // TinyGsmClient gsmclient(modem);
33
+ // #include <FastBot2Client.h>
34
+ // FastBot2Client bot(gsmclient);
35
+
21
36
char * __stack_start = nullptr ;
22
37
void stackStart () {
23
38
char c;
@@ -36,21 +51,6 @@ void loopPrint() {
36
51
Serial.println (millis () - _ms);
37
52
}
38
53
39
- #include < LittleFS.h>
40
-
41
- // Нативная версия WiFi esp8266/esp32
42
- #include < FastBot2.h>
43
- FastBot2 bot;
44
-
45
- // версия с другим клиентом, например tinygsm
46
- // обязательно нужен модем с поддержкой HTTPS
47
- // #define TINY_GSM_MODEM_SIM7000SSL
48
- // #include <TinyGsmClient.h>
49
- // TinyGsm modem(Serial);
50
- // TinyGsmClient gsmclient(modem);
51
- // #include <FastBot2Client.h>
52
- // FastBot2Client bot(gsmclient);
53
-
54
54
void rawh (Text text) {
55
55
// Serial.println(text);
56
56
}
You can’t perform that action at this time.
0 commit comments