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 int port = 80;
TinyGsmClient client(myModem);
TinyGsmClient client(modem);
//const int port = 443;
//TinyGsmClientSecure client(myModem);
//TinyGsmClientSecure client(modem);
void setup() {
// Set console baud rate
@@ -121,7 +121,7 @@ void loop() {
}
SerialMon.println(F(" [OK]"));
IPAddress local = myModem.localIP();
IPAddress local = modem.localIP();
SerialMon.print("Local IP: ");
SerialMon.println(local);