diff --git a/examples/ntpClient/ntpClient.ino b/examples/ntpClient/ntpClient.ino index 90a76c79..8ae0a13b 100644 --- a/examples/ntpClient/ntpClient.ino +++ b/examples/ntpClient/ntpClient.ino @@ -18,7 +18,7 @@ #include // https://github.com/njh/EtherCard // Ethernet mac address - must be unique on your network -const byte myMac[] PROGMEM = { 0x70, 0x69, 0x69, 0x2D, 0x30, 0x31 }; +const byte myMac[] = { 0x70, 0x69, 0x69, 0x2D, 0x30, 0x31 }; const char NTP_REMOTEHOST[] PROGMEM = "ntp.bit.nl"; // NTP server name const unsigned int NTP_REMOTEPORT = 123; // NTP requests are to port 123 const unsigned int NTP_LOCALPORT = 8888; // Local UDP port to use