From 7ff8935a6a08b0caa957a223244648217741b474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C5=A1per=20Dobrovoljc?= Date: Wed, 31 May 2023 19:17:15 +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 0edd01b..203d4a4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -168,16 +168,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;