Fix diagnostics

This commit is contained in:
Volodymyr Shymanskyy
2018-05-01 12:38:17 +03:00
parent 3bd2d846c9
commit 3e63e6c275

View File

@@ -54,10 +54,10 @@ const char server[] = "vsh.pp.ua";
const char resource[] = "/TinyGSM/logo.txt"; const char resource[] = "/TinyGSM/logo.txt";
const int port = 80; const int port = 80;
TinyGsmClient client(myModem); TinyGsmClient client(modem);
//const int port = 443; //const int port = 443;
//TinyGsmClientSecure client(myModem); //TinyGsmClientSecure client(modem);
void setup() { void setup() {
// Set console baud rate // Set console baud rate
@@ -121,7 +121,7 @@ void loop() {
} }
SerialMon.println(F(" [OK]")); SerialMon.println(F(" [OK]"));
IPAddress local = myModem.localIP(); IPAddress local = modem.localIP();
SerialMon.print("Local IP: "); SerialMon.print("Local IP: ");
SerialMon.println(local); SerialMon.println(local);