12V Delay Timer Adjustable Relay Module (NE555) [S165]



https://www.youtube.com/watch?v=xkc7Um53TSk


* Specs

100% brand new and high quality

Input voltage: 12 V

Quantity : 1pcs

Size: 68mmX21mmX18mm

Color : red

Module based on: NE555 chip 

Adjustable time: 0 to 10 seconds

Max. load: 2200W


* Contents

- Connect

+ ----- 12V

- ----- GND

Posted by RDIoT
|

5V Relay Low Level Trigger [S155]



https://www.youtube.com/watch?v=GE2ixS4tbTE


*GitHubhttps://github.com/rdiot/rdiot-s155.git


* Specs

1, the module complies with international safety standards, the load control area and regional isolation tank; 

2, using loose music authentic relay; 

3, with the power and relay instructions, pull off, disconnect does not shine; 

4, when the input signal is a signal, often beginning with a common terminal will be turned on; 

5, can be used as a microcontroller development board module that can be used as home appliance control; 

6, the control DC or AC signal, you can control 220V AC load; 

7, there is a normally open and one normally closed contact; 

8, blue KF301 terminals to the control line is more convenient. 

About  the high and low trigger description.if you don't understand .pls check below 

Means there is a high trigger voltage trigger, can be understood as a way to signal input terminal and VCC between the positive short trigger signal input and ground; 

Refers to a low voltage trigger signal input terminal and ground for OV trigger mode, can be understood as a way to signal input terminal and GND short circuit triggered the negative


* Contents

- Connect


- Key Code

int Relay = 2;


void setup()

{

  pinMode(Relay,OUTPUT);

}


void loop()

{

  for(int i=0;i<=1;i++) 

  {

    digitalWrite(Relay,i);

    delay(2000);

  }

}

Posted by RDIoT
|

5V 4-Channel Relay Module [S147]



https://www.youtube.com/watch?v=VsDzZ3oBZ_s


*GitHub : https://github.com/rdiot/rdiot-s147.git


* Specs

This item is a 5V 4 Channel Relay board, Can be able to control various appliances, and the other equipments with large current. It can be controlled directly by Microcontroller Arduino , 8051, AVR, PIC, DSP, ARM, ARM, MSP430, TTL logic.

4 Channel Relay interface board.

Each one needs 15-20mA Driver Current.

Equiped with high-current relay : DC30V 10A AC250V 10A AC125V 10A.

Standard interface that can be controlled directly by microcontroller.

Indication LED’s for Relay output status.

Size:75mm x 55mm x 20mm


* Contents

- Connect

VCC

IN4 ----- D8

IN3 ----- D9

IN2 ----- D10

IN1 ----- D11

GND


COM ----- 5V

RIGHT ----- LED+


- Key Code

#define RELAY1  8                        

#define RELAY2  9                        

#define RELAY3  10                        

#define RELAY4  11


void setup()

{    

  pinMode(RELAY1, OUTPUT);       

  pinMode(RELAY2, OUTPUT);

  pinMode(RELAY3, OUTPUT);

  pinMode(RELAY4, OUTPUT);

}

 void loop()

{

   digitalWrite(RELAY1,LOW);           // Turns ON Relays 1

   delay(2000);                        // Wait 2 seconds

   digitalWrite(RELAY1,HIGH);          // Turns Relay Off

   digitalWrite(RELAY2,LOW);           // Turns ON Relays 2

   delay(2000);                        // Wait 2 seconds

   digitalWrite(RELAY2,HIGH);          // Turns Relay Off

   digitalWrite(RELAY3,LOW);           // Turns ON Relays 3

   delay(2000);                        // Wait 2 seconds

   digitalWrite(RELAY3,HIGH);          // Turns Relay Off

   digitalWrite(RELAY4,LOW);           // Turns ON Relays 4

   delay(2000);                        // Wait 2 seconds

   digitalWrite(RELAY4,HIGH);          // Turns Relay Off        

}

Posted by RDIoT
|