From ea400ca61fb988f95477c84c3ad5ae1043e64509 Mon Sep 17 00:00:00 2001 From: hidaba Date: Thu, 21 Dec 2023 10:58:57 +0100 Subject: [PATCH] auth and static ip correct some error --- PylontechMonitoring.ino | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/PylontechMonitoring.ino b/PylontechMonitoring.ino index f2f807d..5ce62e8 100644 --- a/PylontechMonitoring.ino +++ b/PylontechMonitoring.ino @@ -5,6 +5,7 @@ #include #include #include +#include //+++ START CONFIGURATION +++ @@ -16,12 +17,12 @@ //Uncomment for static ip configuration //#define STATIC_IP // Set your Static IP address -#define IP 192.168.1.1 -#define NETMASK 255.255.255.0 +#define IP "*** ip address ***" +#define NETMASK "*** netmask ***" // Set your Gateway IP address -#define GATEWAY 192.168.1.10 +#define GATEWAY "*** gateway ***" // Set your dns address -#define DNS 8.8.8.8 +#define DNS "*** dns ***" //Uncomment for authentication page