From f750f938d4476e098fb07f9cb4e92d18bed29b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C5=A1per=20Dobrovoljc?= Date: Wed, 31 May 2023 18:52:43 +0200 Subject: [PATCH] IP --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 5dafd44..510d2b7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -131,16 +131,16 @@ byte mac[] = {0x06, 0x02, 0x03, 0x04, 0x05, 0x06}; // Arduino device IP Address -IPAddress ip(10, 10, 0, 99); +IPAddress ip(192, 168, 88, 206); // Router gateway -IPAddress gateway(10, 10, 0, 1); +IPAddress gateway(192, 168, 88, 1); // LAN subnet mask IPAddress subnet(255, 255, 255, 0); // DNS server -IPAddress dnsserver(10, 10, 0, 1); +IPAddress dnsserver(192, 168, 88, 1); // port to run the http server on const unsigned int serverPort = 8090;