16 Relay Module-12V: 1.overview
16 Relay Module-12V: 1.overview
1.Overview
This is a relay module that operates at DC 12V. The relay uses Songle relay,
output contact capacity 10A 250VAC, 10A 30VDC, easy to use in home
It contains 16 control circuits, all of which are active low, that is, relays
are connected in low level. Each relay adopts optocoupler isolation, which is
The relay uses Songle relay, output contact capacity 10A 250VAC,
anti-interference
3.Wiring method
2Pin terminal blocks: +12V GND, used to connect external drive power DC
12V.
GND VCC are used for powering the microcontrollers, with voltage of 5V;
Pin 1-16 are used for connecting the microcontroller’s signal end. When
4.Test Code
/////////////////////////////////////////////////////////
int BASE = 2;
int NUM = 16 ;
void setup()
pinMode(i, OUTPUT);
void loop()
{
digitalWrite(i, LOW);
delay(200);
digitalWrite(i, HIGH);
delay(200);
/////////////////////////////////////////////////////////