 
            | Quantity | 3+ units | 10+ units | 30+ units | 50+ units | More | 
|---|---|---|---|---|---|
| Price /Unit | $19.44 | $19.05 | $18.45 | $17.66 | Contact US | 
 M5Stack Paper S3 E-Paper Display Touchable Low Power Consumption 4.7-inch E-ink Display Development Kit ESP32S3
                                                $87.42
                        M5Stack Paper S3 E-Paper Display Touchable Low Power Consumption 4.7-inch E-ink Display Development Kit ESP32S3
                                                $87.42
                                             LILYGO Grey Shell Version T-Display-S3 1.9-inch LCD Display Development Board WiFi Bluetooth5.0 Wireless Module for Arduino
                                                $32.47
                        LILYGO Grey Shell Version T-Display-S3 1.9-inch LCD Display Development Board WiFi Bluetooth5.0 Wireless Module for Arduino
                                                $32.47
                                             Sketchboard Mechanical Arm Plotter Robot Arm Students Programming Learning DIY Kit for Arduino
                                                $44.05
                        Sketchboard Mechanical Arm Plotter Robot Arm Students Programming Learning DIY Kit for Arduino
                                                $44.05
                                            8CH 8 Channel 12V Relay Module for Arduino PIC ARM AVR MSP430
This is a 8 channel relay module. It can be used to control the lighting, electrical and other equipments. The modular design makes it easy to expand with the Arduino board or other MCU board PIC, ARM and MSP430. The Relay output state by a light-emitting diode.
Specifications:
- Drive current: 20mA
- Control signal: 12V TTL level
- Maximum switching voltage: 150VAC 24VDC
- Dimension: 91mm*57mm*15mm

// ElecFreaks Relay Module Demo
#define S0 2   //Control signal 1 -- Arduino D2
#define S1 3   //Control signal 2 -- Arduino D3
void setup()
{
  pinMode(S0, OUTPUT);
  pinMode(S1, OUTPUT);
}
void loop()
{
  digitalWrite(S0, HIGH);    //Open Relay 1
  digitalWrite(S1, HIGH);    //Open Relay 2
  delay(1000);
  digitalWrite(S1, LOW);     //Close Relay 1
  digitalWrite(S2, LOW);     //Close Relay 2
}