corrected default values for ip addresses

This commit is contained in:
RaffaelW 2024-12-15 21:08:42 +01:00
parent 24876b6f63
commit c3705583ea
3 changed files with 4 additions and 4 deletions

View file

@ -155,7 +155,7 @@ void setup()
// Default IP as defined in standard https://art-net.org.uk/downloads/art-net.pdf, page 13
IPAddress ip = config.getUInt("ip", DEFAULT_IP);
IPAddress subnet = config.getUInt("subnet", DEFAULT_SUBNET);
IPAddress gateway = config.getUInt("gateway", DEFAULT_GATEWAY);
IPAddress gateway = config.getUInt("gateway", NULL);
config.end();