Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/ntpClient/ntpClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <EtherCard.h> // 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
Expand Down