This commit is contained in:
Gašper Dobrovoljc 2023-05-31 18:52:43 +02:00
parent 5056a3e1c3
commit f750f938d4
No known key found for this signature in database
GPG Key ID: 0E7E037018CFA5A5

View File

@ -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;