Skip to content

Commit a8e69e4

Browse files
committed
C33: rename Ethernet library to EthernetC33
Former-commit-id: b30c947
1 parent 2f52c6c commit a8e69e4

File tree

16 files changed

+17
-17
lines changed

16 files changed

+17
-17
lines changed

libraries/Ethernet/examples/AdvancedChatServer/AdvancedChatServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
2020
*/
2121

22-
#include <Ethernet.h>
22+
#include <EthernetC33.h>
2323

2424
// Enter an IP address for your controller below.
2525
// The IP address will be dependent on your local network.

libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
by sstaub
2525
*/
2626

27-
#include <Ethernet.h>
27+
#include <EthernetC33.h>
2828
// the sensor communicates using SPI, so include the library:
2929
#include <SPI.h>
3030

libraries/Ethernet/examples/ChatServer/ChatServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
by sstaub
1616
*/
1717

18-
#include <Ethernet.h>
18+
#include <EthernetC33.h>
1919

2020
// Enter an IP address for your controller below.
2121
// The IP address will be dependent on your local network.

libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
by sstaub
1616
*/
1717

18-
#include <Ethernet.h>
18+
#include <EthernetC33.h>
1919

2020

2121
// Initialize the Ethernet client library

libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
by sstaub
2020
*/
2121

22-
#include <Ethernet.h>
22+
#include <EthernetC33.h>
2323

2424
// Enter an IP address for your controller below.
2525
// The IP address will be dependent on your local network.

libraries/Ethernet/examples/TelnetClient/TelnetClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
by sstaub
2020
*/
2121

22-
#include <Ethernet.h>
22+
#include <EthernetC33.h>
2323

2424
// Enter an IP address for your controller below.
2525
// The IP address will be dependent on your local network:

libraries/Ethernet/examples/UDPSendReceiveString/UDPSendReceiveString.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
This code is in the public domain.
1616
*/
1717

18-
#include <Ethernet.h>
19-
#include <CEthernetUdp.h>
18+
#include <EthernetC33.h>
19+
#include <EthernetUdp.h>
2020

2121
// Enter an IP address for your controller below.
2222
// The IP address will be dependent on your local network:

libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
2222
*/
2323

24-
#include <Ethernet.h>
25-
#include <CEthernetUdp.h>
24+
#include <EthernetC33.h>
25+
#include <EthernetUdp.h>
2626

2727
unsigned int localPort = 8888; // local port to listen for UDP packets
2828

libraries/Ethernet/examples/WebClient/WebClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
by sstaub
1414
*/
1515

16-
#include <Ethernet.h>
16+
#include <EthernetC33.h>
1717

1818
// if you don't want to use DNS (and reduce your sketch size)
1919
// use the numeric IP instead of the name for the server:

libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
2020
*/
2121

22-
#include <Ethernet.h>
22+
#include <EthernetC33.h>
2323

2424
// fill in an available IP address on your network here,
2525
// for manual configuration:

0 commit comments

Comments
 (0)