The Adafruit Quad AlphaNumeric FeatherWing is a versatile and compact alphanumeric display module designed for use with the Adafruit Feather ecosystem. It features four 0.54-inch high seven-segment alphanumeric displays with a bright yellow LED color. This FeatherWing is ideal for displaying short messages, numerical data, or time, and can be used in a variety of applications such as clocks, counters, and readouts in DIY electronics projects.
Pin | Description |
---|---|
GND | Ground connection |
VCC | Power supply (3.3V to 5V) |
SDA | I2C data line |
SCL | I2C clock line |
RST | Reset pin (optional use) |
#include <Wire.h>
#include <Adafruit_LEDBackpack.h>
#include <Adafruit_GFX.h>
Adafruit_AlphaNum4 alpha4 = Adafruit_AlphaNum4();
void setup() {
alpha4.begin(0x70); // Initialize the display with its I2C address
}
void loop() {
alpha4.writeDigitAscii(0, 'A'); // Display 'A' on the first digit
alpha4.writeDigitAscii(1, 'd'); // Display 'd' on the second digit
alpha4.writeDigitAscii(2, 'a'); // Display 'a' on the third digit
alpha4.writeDigitAscii(3, 'F'); // Display 'F' on the fourth digit
alpha4.writeDisplay(); // Send data to the display
delay(1000); // Wait for 1 second
}
Q: Can I use this FeatherWing with boards other than Adafruit Feather?
A: Yes, as long as the board supports I2C communication and operates within the voltage range of the FeatherWing.
Q: How do I change the I2C address of the display?
A: The I2C address can be changed by soldering the address jumpers on the back of the PCB. Refer to the Adafruit guide for the specific jumper settings.
Q: Can I use multiple FeatherWings in one project?
A: Yes, you can stack multiple FeatherWings, but ensure that each has a unique I2C address to avoid conflicts.