The Adafruit 7 Segment FeatherWing - Green is a compact, easy-to-use display module designed for integration with the Adafruit Feather ecosystem. This module features a 4-digit, 7-segment LED display that allows users to present numerical data or simple alphanumeric characters in a clear and visible format. Common applications include clocks, timers, counters, and readouts for various sensors.
Pin | Description |
---|---|
GND | Ground connection |
3V | 3.3V power supply |
SDA | I2C data line |
SCL | I2C clock line |
RST | Reset pin (optional use) |
To control the 7 Segment FeatherWing, you will need to use the Adafruit LED Backpack library, which can be installed via the Arduino Library Manager.
#include <Wire.h>
#include <Adafruit_GFX.h>
#include "Adafruit_LEDBackpack.h"
Adafruit_7segment matrix = Adafruit_7segment();
void setup() {
matrix.begin(0x70); // Initialize the display with its I2C address
}
void loop() {
matrix.print(1234, DEC); // Display the number 1234
matrix.writeDisplay(); // Send the data to the display
delay(5000); // Wait for 5 seconds
}
Q: Can I use the 7 Segment FeatherWing with a 5V Feather board? A: Yes, the display is compatible with both 3.3V and 5V logic levels.
Q: How do I change the I2C address? A: Solder the address jumpers on the back of the PCB to set the address between 0x70 and 0x77.
Q: Can I display letters as well as numbers? A: Yes, the display can show some basic alphanumeric characters. Refer to the Adafruit LED Backpack library for supported characters.
Q: How many of these displays can I chain together? A: You can chain up to 8 displays together, each with a unique I2C address.
For further assistance, consult the Adafruit support forums or the detailed guides available on the Adafruit Learning System website.