WIZ820 + SD Adaptor Ver más grande La imagen puede diferir del original

WIZ820 + SD Adaptor

TEENC007

Nuevo

En Stock

6,99 €

This adaptor allows you to easily use gigabytes of SD card flash memory and/or a Wiznet WIZ820io ethernet module with Teensy LC, 3.0, 3.1 or 3.2.


Rev 2 - Easier SPI Sharing

A second revision adds pullup resistors on pins 4, 9 and 10, and a reset chip for the WIZ820io.

These resistors keep the SD card and WIZ820io from responding to other SPI communication. Some WIZ820io can disrupt SPI communication before being reset, even of their chip select pin is pulled high. The new reset chip guarantees proper reset at startup, even if the recommended code below is not used.

Recommended Assembly Steps

Place the header pins in a breadboard or other fixture to hold them straight and at the correct spacing. Position the WIZ820_SD_ADAPTOR on the pins.

Trim the 12 inner pins next to the WIZ820 pads.

Solder the 28 header pins to the WIZ820_SD_ADAPTOR.

Solder the 12 WIZ820io pin to the WIZ820_SD_ADAPTOR.

Optionally, the WIZ820io pins can be placed into sockets and the sockets soldered to the WIZ820_SD_ADAPTOR, to allow the WIZ820io to be removed.

Solder the 28 header pins to Teensy 3.x.

Optionally, the header pins can be placed into sockets and the sockets soldered to the Teensy 3.x.

After assembly, the stack of boards should look like this:

Electrical Connections

This table lists the electrical connections on this adaptor board.

The WIZ820io and SD card are connected to the default pins used by the Arduino Ethernet and SD libraries. For the SD library, pin 4 should be used in the begin() function.

By default, the center and right side of the jumper pads are connected, which keeps the WIZ820io powered up. For low power applications, the pads can be cut apart and the left+center joined to allow pin 8 to control the WIZ820io powerdown feature.

Chip Select Pins During Initialization

Some SD cards can be sensitive to SPI activity while the Ethernet library is initilized before the SD library.

For best compatibility with all SD cards, these 6 lines are recommended at the beginning of setup(). Pins 4, 9, and 10 will be reconfigured and controlled by the SD and Ethernet libraries.

void setup() {
  pinMode(9, OUTPUT);
  digitalWrite(9, LOW);   // reset the WIZ820io
  pinMode(10, OUTPUT);
  digitalWrite(10, HIGH);  // de-select WIZ820io
  pinMode(4, OUTPUT);
  digitalWrite(4, HIGH);   // de-select the SD Card

Tags

Productos Relacionados