The Adafruit FeatherWing Doubler is an innovative prototyping add-on designed to complement the Adafruit Feather ecosystem. This board effectively doubles the available prototyping area and provides additional access to the GPIO pins of a Feather board. It is ideal for hobbyists, engineers, and makers who require more space for components or need to connect multiple FeatherWings together.
Pin Number | Description |
---|---|
GND | Ground |
3V | 3.3V Supply from Feather |
BAT | Battery Voltage (if available) |
USB | USB Voltage (if available) |
A0-D13 | Analog and Digital Pin Breakout |
SCK, MISO, MOSI | SPI Pin Breakout |
SDA, SCL | I2C Pin Breakout |
TX, RX | UART Pin Breakout |
Mounting the Feather Board:
Connecting Additional FeatherWings:
Prototyping:
Q: Can I use the FeatherWing Doubler with any Feather board? A: Yes, the Doubler is designed to be compatible with all Feather boards.
Q: How many FeatherWings can I connect with the Doubler? A: The Doubler allows you to connect one additional FeatherWing directly. However, with stacking headers, you can add more.
Q: Does the Doubler come with headers pre-soldered? A: Headers are usually not pre-soldered, giving you the flexibility to choose the best configuration for your project.
The FeatherWing Doubler is not directly used with an Arduino UNO, as it is designed for the Adafruit Feather series. However, if you are using a Feather compatible with Arduino IDE, you can use the standard GPIO functions to interact with the pins.
// Example code to blink an LED connected to pin 13 on the Doubler
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for a second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for a second
}
Remember to adjust the pin numbers and functionality according to the specific Feather board and the peripherals you are using. Always consult the Feather board's documentation for the correct usage of GPIO pins.