You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: 'Getting Started with the Arduino Ethernet Shield and Ethernet Shield 2'
3
-
description: 'The first steps to ssetting up the Arduino Ethernet Shield and Ethernet Shield 2'
2
+
title: 'Getting Started with the Arduino Ethernet Shield.'
3
+
description: 'The first steps to setting up the Arduino Ethernet Shield'
4
4
---
5
5
6
-
**The Ethernet Shield is a retired product. The Arduino Ethernet Shield 2 is available to buy.**
6
+
**The Ethernet Shield is a retired product. The Arduino Ethernet Shield Rev2 is available to buy. See [documentation for Ethernet Shield Rev2](/hardware/ethernet-shield-rev2).**
7
7
8
-
The [Arduino Ethernet Shield 2](/en/Main/ArduinoEthernetShield)allows an Arduino board to connect to the internet using the [Ethernet library](/en/Reference/Ethernet) and to read and write an SD card using the [SD library](/en/Reference/SD). This shield is fully compatible with the former version but relies on the newer W5500 chip.
8
+
The **Arduino Ethernet Shield**allows an Arduino board to connect to the internet using the [Ethernet library](https://www.arduino.cc/reference/en/libraries/ethernet/) and to read and write an SD card using the [SD library](https://www.arduino.cc/reference/en/libraries/sd/). This shield is fully compatible with the former version but relies on the newer W5500 chip.
9
9
10
10
### Connecting the Shield
11
11
@@ -17,43 +17,19 @@ Connect the shield to your computer or a network hub or router using a standard
17
17
18
18
### Tutorials
19
19
20
-
You may find inspiration in our [Project Hub](https://create.arduino.cc/projecthub/products/arduino-ethernet-shield-2) tutorial platform with some projects developed by our users
20
+
***All tutorials for the Ethernet Shield can be found in the [Ethernet Shield Rev2 Tutorials](https://docs.arduino.cc/hardware/ethernet-shield-rev2#tutorials) section.***
You may also find inspiration in our [Project Hub](https://create.arduino.cc/projecthub/products/arduino-ethernet-shield-2) tutorial platform with some projects developed by our users
23
23
24
-
or have a look to the tutorial pages that explain how to use the various features of your shield.
25
-
26
-
Here is a list of tutorials that will help you in making very cool things!
27
-
28
-
-[ChatServer](/en/Tutorial/LibraryExamples/ChatServer): set up a simple chat server.
29
-
30
-
-[WebClient](/en/Tutorial/LibraryExamples/WebClient): make a HTTP request.
31
-
32
-
-[WebClientRepeating](/en/Tutorial/LibraryExamples/WebClientRepeating): Make repeated HTTP requests.
33
-
34
-
-[WebServer](/en/Tutorial/LibraryExamples/WebServer): host a simple HTML page that displays analog sensor values.
35
-
36
-
-[BarometricPressureWebServer](/en/Tutorial/LibraryExamples/BarometricPressureWebServer): outputs the values from a barometric pressure sensor as a web page.
37
-
38
-
-[UDPSendReceiveString](/en/Tutorial/LibraryExamples/UDPSendReceiveString): Send and receive text strings via UDP.
39
-
40
-
-[UdpNtpClient](/en/Tutorial/LibraryExamples/UdpNtpClient): Query a Network Time Protocol (NTP) server using UDP.
41
-
42
-
-[DnsWebClient](/en/Tutorial/DnsWebClient): DNS and DHCP-based Web client.
43
-
44
-
-[DhcpChatServer](/en/Tutorial/LibraryExamples/DhcpChatServer): A simple DHCP Chat Server
45
-
46
-
-[DhcpAddressPrinter](/en/Tutorial/LibraryExamples/DhcpAddressPrinter): Get an IP address via DHCP and print it out
47
-
48
-
-[TelnetClient](/en/Tutorial/LibraryExamples/TelnetClient): A simple Telnet client
The shield must be assigned a MAC address and a fixed IP address using the [Ethernet.begin()](/en/Reference/EthernetBegin) function. A MAC address is a globally unique identifier for a particular device. Current Ethernet shields come with a sticker indicating the MAC address you should use with them. For older shields without a dedicated MAC address, inventing a random one should work, but don't use the same one for multiple boards. Valid IP addresses depend on the configuration of your network. It is possible to use DHCP to dynamically assign an IP to the shield. Optionally, you can also specify a network gateway and subnet.
28
+
The shield must be assigned a MAC address and a fixed IP address using the [Ethernet.begin()](https://www.arduino.cc/reference/en/libraries/ethernet/ethernet.begin/) function. A MAC address is a globally unique identifier for a particular device. Current Ethernet shields come with a sticker indicating the MAC address you should use with them. For older shields without a dedicated MAC address, inventing a random one should work, but don't use the same one for multiple boards. Valid IP addresses depend on the configuration of your network. It is possible to use DHCP to dynamically assign an IP to the shield. Optionally, you can also specify a network gateway and subnet.
53
29
54
30
### SD Card
55
31
56
-
The latest revision of the Ethernet Shield includes a micro-SD card slot, which can be interfaced with using the [SD library](/en/Reference/SD).
32
+
The latest revision of the Ethernet Shield includes a micro-SD card slot, which can be interfaced with using the [SD library](https://www.arduino.cc/reference/en/libraries/sd/).
57
33
58
34
The text of the Arduino getting started guide is licensed under a
59
35
[Creative Commons Attribution-ShareAlike 3.0 License](http://creativecommons.org/licenses/by-sa/3.0/). Code samples in the guide are released into the public domain.
0 commit comments