Skip to content

Commit

Permalink
Update tools
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Jun 10, 2018
1 parent 799ab7c commit fe4ee10
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions tools/AT_Debug/AT_Debug.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
#define TINY_GSM_MODEM_SIM800
// #define TINY_GSM_MODEM_SIM808
// #define TINY_GSM_MODEM_SIM900
// #define TINY_GSM_MODEM_UBLOX
// #define TINY_GSM_MODEM_BG96
// #define TINY_GSM_MODEM_A6
// #define TINY_GSM_MODEM_A7
// #define TINY_GSM_MODEM_M590
Expand Down
4 changes: 3 additions & 1 deletion tools/Diagnostics/Diagnostics.ino
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
// #define TINY_GSM_MODEM_SIM808
// #define TINY_GSM_MODEM_SIM900
// #define TINY_GSM_MODEM_UBLOX
// #define TINY_GSM_MODEM_BG96
// #define TINY_GSM_MODEM_A6
// #define TINY_GSM_MODEM_A7
// #define TINY_GSM_MODEM_M590
Expand Down Expand Up @@ -56,6 +57,7 @@ const char resource[] = "/TinyGSM/logo.txt";
const int port = 80;
TinyGsmClient client(modem);

// For SSL:
//const int port = 443;
//TinyGsmClientSecure client(modem);

Expand Down Expand Up @@ -155,7 +157,7 @@ void loop() {
while (client.connected() && millis() - timeout < 10000L) {
while (client.available()) {
char c = client.read();
SerialMon.print(c);
//SerialMon.print(c);
bytesReceived += 1;
timeout = millis();
}
Expand Down
2 changes: 2 additions & 0 deletions tools/FactoryReset/FactoryReset.ino
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
#define TINY_GSM_MODEM_SIM800
// #define TINY_GSM_MODEM_SIM808
// #define TINY_GSM_MODEM_SIM900
// #define TINY_GSM_MODEM_UBLOX
// #define TINY_GSM_MODEM_BG96
// #define TINY_GSM_MODEM_A6
// #define TINY_GSM_MODEM_A7
// #define TINY_GSM_MODEM_M590
Expand Down

0 comments on commit fe4ee10

Please sign in to comment.