The Adafruit Quad AlphaNumeric FeatherWing - Blue is a versatile and compact display module designed for use with the Feather ecosystem of development boards. It features four high-contrast 14-segment blue LED alphanumeric displays which can show letters and numbers, providing a simple and effective way to add a user interface to your projects. This FeatherWing is ideal for creating readouts for clocks, counters, and other devices that require alphanumeric data to be displayed.
Pin | Description |
---|---|
GND | Ground connection |
3V | 3.3V power supply |
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 character
alpha4.writeDigitAscii(1, 'd'); // Display 'd' on the second character
alpha4.writeDigitAscii(2, 'a'); // Display 'a' on the third character
alpha4.writeDigitAscii(3, 'F'); // Display 'F' on the fourth character
alpha4.writeDisplay(); // Send data to the display
delay(1000); // Wait for a second
}
Q: Can I use this display with a 5V system? A: Yes, the display can be used with a 5V system, but ensure that the I2C logic levels are compatible.
Q: How do I change the I2C address? A: Solder the address jumpers on the back of the board to configure the address between 0x70 to 0x77.
Q: Can I use this FeatherWing with other microcontrollers besides Feather boards? A: Yes, as long as the microcontroller supports I2C communication and operates within the voltage range, it can be used with this display.
Q: How do I display numbers and letters?
A: Use the writeDigitAscii
function to display characters on the display, as shown in the example code.
Q: Is it possible to display special characters? A: The 14-segment display can show a limited set of special characters. Refer to the Adafruit GFX library for supported characters.