Arduino Ethernet SD Card
Arduino Ethernet SD Card
This tutorial provides the basics for using a WIZ5500-based Ethernet Shield with an Arduino compatible. The Wiznet
WIZ5500 is a modern Ethernet interface chip and is used in the Ethernet Shield W5500 (https://adafru.it/BQY) and the
Feather Ethernet Wing (https://adafru.it/wiB) available at Adafruit.
The shield form factor works well for ATmega328 based Arduino compatibles like the Arduino Uno R3 and the Adafruit
Metro 328 (https://adafru.it/METROXMETR) (Classic). The shield contains both an Ethernet connection for networks and
an SD Card slot for storing data.
The Feather wing works well with a Feather with a SD card slot. The Feather 32u4 Adalogger (https://adafru.it/tUd) has
an Arduino Leonardo compatible 32u4 processor and a micro-SD card slot. With the Ethernet Feather Wing, it provides
the same functionality as the Ethernet Shield+Metro/Uno in a much smaller package. SD and micro-SD are the same
for all purposes but the latter is smaller. In this tutorial, when it says do something to an SD card and you are using the
Feathers, think micro-SD.
This tutorial assumes you already know the basics of the Arduino IDE, code generation and the Arduino interface. If
you are not so familiar with the Arduino IDE, you might check the tutorials in the Adafruit Learn Arduino
Series (https://adafru.it/BQZ).
As of the date of this revised tutorial, Arduino notes their Ethernet Shields are retired (https://adafru.it/BQ-). If you use a
retired or third-party Ethernet shield, you may have to use a different Arduino library that supports the chipset the
board uses.
Note that the Ethernet Shield and Feather Wing Adafruit uses is based on the WIZ5500 chip, not the older WIZ5100
chipset or others. The WIZ5500 requires the Ethernet2 library, not the older Ethernet library on Arduino. If you use
the older hardware, just be sure you change libraries back from Ethernet2 to Ethernet and double check things.
This tutorial will go through preparing then using the SD card, both in general then reading the files on a card. The final
example will show how to access the SD card remotely over Ethernet. This capability could be the basis for a remote
WARNING: DO NOT FORMAT YOUR HARD DISK(S) TRYING TO FORMAT YOUR SD CARD.
Ensure you use a computer to pre-format your SD card as FAT16. FAT16 was introduced by Microsoft a long time ago
but it is simple and microcontrollers like simple. Many formatting programs support FAT16. Windows supports FAT16
natively with the format command and in the File Explorer.
It is suggested that you use the sdcard.org SD Memory Card Formatter app. It is available for PC and Mac.
https://adafru.it/B2q
https://adafru.it/B2q
For the Ethernet shield, put your formatted SD card into the SD card slot (top side up, don't force it, gentle). Put your
shield on your Arduino-compatible board. Power the boards with a suitable power supply recommended for the
Arduino. Connect the microcontroller board to your computer with a suitable USB cable.
For the Feathers, place the formatted micro-SD card into the micro-SD card slot in the Adalogger Feather. Plug the
board into a USB port on your computer.
Using the Arduino IDE software and select the correct type of Arduino-compatible board and the serial port for the
board in the Tools menu. You may have to push the reset button for the operating system to see the serial port. Load
the following sketch, compile, and run.
The information about the SD card should be displayed on the serial monitor in the IDE.
/*
SD card test for WIZ5500 Compatible Ethernet Boards
This example shows how use the utility libraries on which the'
SD library is based in order to get info about your SD card.
Very useful for testing a card when you're not sure whether its working or not.
The circuit:
* SD card attached to SPI bus as follows:
** MOSI - pin 11 on Arduino Uno and Adafruit Metro
** MISO - pin 12 on Arduino Uno and Adafruit Metro
** CLK - pin 13 on Arduino Uno and Adafruit Metro
** CS - depends on your SD card shield or module (see below)
void setup() {
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
Serial.print("\nInitializing SD card...");
Serial.println("\nFiles found on the card (name, date and size in bytes): ");
root.openRoot(volume);
void loop(void) {
}
The serial monitor output below is for a micro-SD card formatted in Windows 10 for FAT. It is set for 60MB (it doesn't fill
the card, it was an old Raspberry Pi Zero system card). It has several text files and a directory with a couple of files in it.
Your Arduino Serial Monitor should display something similar.
At this point, please place a few files on the SD card from your computer to get an interesting output rather than using
a blank card. It is suggested to put two or three text files with the filenames being no more than 8 characters before
the period then end in .txt. An example would be README.txt or todo.txt. You can put the code text files on the card
also, having them end in .ino will be fine also.
The screen shot below shows information on the same card as in the last sketch but lists the files and their sizes.
Note in Windows, filenames like WPSETT~1.DAT refer to a longer filename (such as WPSETTINGS.DAT). Microsoft, for
compatibility with older software, truncates filenames greater than 8 characters (not including the 3 character file
extension) at 6 characters, a tilde (~) character, and a number (in case multiple truncated files exist). The older software
cat read and write to the file the same as an 8.3 character file.
The extra information for the long file name is hidden from older software but perfectly safe for newer software. There
are no worries opening the shortened filename will somehow corrupt the capability to use the long filenames as long
as using the file name per the name you see (and not changing the file name) is observed.
The program will provide a directory listing of the SD card to a web page. If a directory is clicked, the web page will
show the contents of the subdirectory. If a file is clicked, the file will be sent to your computer. If you want to go back
up the directory tree, use the browser back button.
The library which provides the WIZ5500 Ethernet functionality is called Ethernet2. The Adafruit version of Ethernet2
has been maintained and should be used instead of the Ethernet2 library available in the Arduino Library Manager.
You can get the library code on GitHub at https://github.com/adafruit/Ethernet2 (https://adafru.it/plf).
It is suggested that you put the Ethernet2 code from the Adafruit GitHub repository into your Arduino sketch folder, in
the libraries subdirectory, in a subdirectory called Ethernet2.
For the source code below, you should review the following in the code:
Byte array mac[] is set to a generic MAC address - if you have another device on your home network with the
same address, change things a bit. Each value is an 8 bit value in hexadecimal (from 00 to FF).
Byte array ip[] is the Internet Protocol (IP) address of an unused device on your home network. Having the
Ethernet board way up at 177 (decimal) is fairly safe - if you know networking and this will not work, if you have
your network on a network other than 192.168.1.xxx (say at 192.168.0.xxx or 10.0.0.xxx) change those also. You
can find information like this from your Internet router.
If you want to use DHCP to get an address from your router, uncomment the version of the Ethernet.begin call
with only the mac address. It may be more difficult to get the address and the address might change is the router
gives out a new address. So the default is a fixed address.
The program implements the very bare bones of an HTML server. The code lists directories then files as an unordered
HTML list.
Ensure the project is powered up and connected via an Ethernet cable to your home network. The yellow network
activity light should blink now & then on one side of the connection, green on the other. If the lights are not on, check
the Ethernet connection.
Open a web browser on a computer on your network and go to address http://192.168.1.177 or to the alternate address
you coded in your sketch. If you changed the sketch to use DHCP to get a free address from your router, the address
received will be print on the serial monitor.
The program should output the heading Files: then a list of files on the card. You did put a few test files on the card
earlier, yes? If not, no worries, power down the project, eject the SD card, put some text-based files on it, reinsert, and
power the project up again.
If you click on a file name, the sketch will send the file and the browser will ask you for a location to save the file.
If you click on a directory name, a new web page will appear displaying the files in the subdirectory.
Use the browser back button to go from the text listing screen back to the file list screen.
If there is a request for a file that is not on the SD card, the sketch will return an HTTP 404 error (file not found). Any
other error will also return a 404 error.
When the original tutorial for using the Ethernet shield and sketch was written 7+ years ago, serving files via Ethernet
was pretty novel (read: wicked). Ethernet shields are not as common now. It is likely due to the proliferation of Wi-Fi
boards.
Hopefully this updated tutorial will give you the basics for using a microcontroller to access an SD card (or something
else) via Ethernet. The same methods can be used if you wire up a SD card breakout to the your microcontroller pins,
just be sure to check for any necessary code changes.
Most newer microcontroller boards have more memory, so a more robust web server capability may considered.
Perhaps you can look at this code and consider a new implementation with an Adafruit Express board and
CircuitPython. The future awaits our innovation.
If you come up with great designs, please share them in the Adafruit forums (https://adafru.it/dYq) and in the Adafruit
Discord chat ().