From 7b80dd1648674eadbc87dcf67c1bf1c01cc5a310 Mon Sep 17 00:00:00 2001 From: Nicholas Humfrey Date: Sun, 11 Sep 2016 13:11:38 +0100 Subject: [PATCH] Changed the SNTPClient example to use Wiznet 5100 chip --- examples/SNTPClient/SNTPClient.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/SNTPClient/SNTPClient.ino b/examples/SNTPClient/SNTPClient.ino index 4817c43..7f5c780 100644 --- a/examples/SNTPClient/SNTPClient.ino +++ b/examples/SNTPClient/SNTPClient.ino @@ -22,8 +22,8 @@ #include #include "ntp.h" -/** Ethernet Interface (with Chip Select connected to Pin 10) */ -EtherSia_ENC28J60 ether(10); +/** Wiznet W5100 ethernet interface (with Chip Select connected to Pin 10) */ +EtherSia_W5100 ether(10); /** Define a UDP socket to send packets from */ UDPSocket udp(ether); @@ -36,7 +36,7 @@ void setup() { MACAddress macAddress("76:73:19:ba:b8:19"); // Setup serial port - Serial.begin(38400); + Serial.begin(115200); Serial.println("[EtherSia SNTPClient]"); macAddress.println();