The Adafruit Mini Relay FeatherWing is a small, yet powerful relay module that seamlessly integrates with the Adafruit Feather ecosystem. This component allows a low-power microcontroller to switch high-power devices on and off. It's an ideal choice for home automation, IoT projects, and any application where remote control of high-power devices is needed.
Pin Number | Name | Description |
---|---|---|
1 | GND | Ground connection for the relay coil |
2 | Sig | Digital signal input to control the relay |
3 | NC | Normally Closed contact; connected to COM when relay is not active |
4 | NO | Normally Open contact; connected to COM when relay is active |
5 | COM | Common connection for the switching circuit |
6 | VCC | Power supply for the relay coil (3.3V - 5V) |
Power Connections:
Signal Connection:
Load Connections:
// Define the pin connected to the Relay FeatherWing
const int relayPin = 5;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
}
void loop() {
// Turn the relay on
digitalWrite(relayPin, HIGH);
delay(1000); // Wait for 1 second
// Turn the relay off
digitalWrite(relayPin, LOW);
delay(1000); // Wait for 1 second
}
Q: Can I control the relay with a 3.3V signal? A: Yes, the relay can be controlled with a 3.3V signal, making it compatible with most Feather boards.
Q: What is the maximum current the relay can switch? A: The relay can switch currents up to 1.2A for DC or AC loads.
Q: Can I use multiple Relay FeatherWings together? A: Yes, you can stack multiple Relay FeatherWings, but ensure each relay is controlled by a separate digital output pin.
Q: Is there an indicator to show when the relay is active? A: Yes, there is an LED on the board that lights up when the relay is activated.
For further assistance, consult the Adafruit support forums or the product's official documentation.