Skip to content

Commit 4969423

Browse files
committed
Update test.ino
1 parent d60f0a2 commit 4969423

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

examples/test/test.ino

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,21 @@
1818
#include "image_p.h"
1919
#include "lorem_p.h"
2020

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+
2136
char* __stack_start = nullptr;
2237
void stackStart() {
2338
char c;
@@ -36,21 +51,6 @@ void loopPrint() {
3651
Serial.println(millis() - _ms);
3752
}
3853

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-
5454
void rawh(Text text) {
5555
// Serial.println(text);
5656
}

0 commit comments

Comments
 (0)