Skip to content

Commit b30c947

Browse files
committed
C33: rename Ethernet library to EthernetC33
1 parent df4a5b1 commit b30c947

File tree

16 files changed

+17
-17
lines changed

16 files changed

+17
-17
lines changed

libraries/Ethernet/examples/AdvancedChatServer/AdvancedChatServer.ino

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+2-2
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

+2-2
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

+1-1
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

+1-1
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:

libraries/Ethernet/examples/WebClientSSL/WebClientSSL.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
*/
88

9-
#include <Ethernet.h>
9+
#include <EthernetC33.h>
1010
#include <EthernetSSLClient.h>
1111

1212
// if you don't want to use DNS (and reduce your sketch size)

libraries/Ethernet/examples/WebServer/WebServer.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
by sstaub
1919
*/
2020

21-
#include <Ethernet.h>
21+
#include <EthernetC33.h>
2222

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

libraries/Ethernet/library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ paragraph=With this library you can use the Arduino Ethernet (shield or board) t
77
category=Communication
88
url=https://github.com/arduino/ArduinoCore-renesas/tree/master/libraries/Ethernet
99
architectures=renesas
10-
includes=Ethernet.h
10+
includes=EthernetC33.h
1111

libraries/Ethernet/src/Ethernet.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "Ethernet.h"
1+
#include <EthernetC33.h>
22

33
/*
44
* The old implementation of the begin set a default mac address:

libraries/SSLClient/examples/TLSCheckEthernet/TLSCheckEthernet.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
**************************************************************/
88

9-
#include <Ethernet.h>
9+
#include <EthernetC33.h>
1010
#include "SSLClient.h"
1111
//To make http request esay: https://github.com/arduino-libraries/ArduinoHttpClient
1212
#include <ArduinoHttpClient.h>

0 commit comments

Comments
 (0)