S198 - Sonoff ITEAD WiFi Switch Module (ESP8266)

 

 

 

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


 







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




* Specs

Specification:
Voltage range: 90-250v AC(50/60Hz)
Max current: 10A
Max Wattage: 2200 watts
Dimensions: (L)88*(W)38*(H)23mm
Color: White
Humidity: 5%-95%
Wireless Frequency: 2.4Ghz
Working Temp: -20°C-75°C

 

Features:
Support WiFi network.
Support status tracking, home appliances status timely feedback to your App.
Support remotely turn on or off added devices.
Support Max 8 timing tasks for each added device.
Support numerous WiFi smart switches one smart phone.
Easy installation, easy handling and can be activated immediately and stably.

 

 

* Contents

- Connect

Input    Output
N ————N
L————-L

 

- Reference

 : https://www.itead.cc/blog/user-guide-for-sonoff-slampher

 


- download E-Welink app : https://play.google.com/store/apps/details?id=com.coolkit&hl=zh-CN





Posted by RDIoT
|

8 Channel Solid State Relay Module [S168]




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



* Specs

Description:

5V Omron solid state relays 240V 2A, output with resistive fuse 240V 2A

Size: 103*53*21mm/4.05*2.08*0.82"

The input power supply: 5V DC (160mA)

The input control signal voltage:

(0-2.5V low state relays ON)

(3.3-5V state high relay OFF)

2.54cm pin and blue KF301 terminals connected to the control line is more convenient

Module interface:

Input section:

DC +: positive power supply (relay voltage power supply)

DC-: connect power negative

CH1: 1 signal to trigger the end of the relay module (low level trigger valid)

CH2: 2-way relay module signal triggering end (low level trigger valid)

CH3: 3 relay module signal triggering end (low level trigger valid)

CH4: 4-channel relay module signal triggering end (low level trigger valid)

CH5: 5-way relay module signal triggering end (low level trigger valid)

CH6: 6-way relay module signal triggering end (low level trigger valid)

CH7: 7-way relay module signal triggering end (low level trigger valid)

CH8: 8-channel relay module signal triggering end (low level trigger valid)

Voltage version   quiescent current   working current    trigger voltage     trigger current

   1-way 5V               0mA                  13.8mA                 0-2.5V                2mA

   2-way 5V               0mA                  26.8mA                 0-2.5V                2mA

   3-way 5V               0mA                    37mA                 0-2.5V                 2mA

   4-way 5V               0mA                    48mA                 0-2.5V                 2mA

   5-way 5V               0mA                    59mA                 0-2.5V                 2mA

   6-way 5V               0mA                    70mA                 0-2.5V                 2mA

   7-way 5V               0mA                    81mA                 0-2.5V                 2mA

   8-way 5V               0mA                    90mA                 0-2.5V                 2mA


* Contents

- Key Code

#define RELAY1  9

#define RELAY2  8

#define RELAY3  7

#define RELAY4  6

#define RELAY5  5

#define RELAY6  4

#define RELAY7  3

#define RELAY8  2


void setup()

{    

  pinMode(RELAY1, OUTPUT);       

  pinMode(RELAY2, OUTPUT);

  pinMode(RELAY3, OUTPUT);

  pinMode(RELAY4, OUTPUT);

  pinMode(RELAY5, OUTPUT);

  pinMode(RELAY6, OUTPUT);

  pinMode(RELAY7, OUTPUT);

  pinMode(RELAY8, OUTPUT);


  digitalWrite(RELAY1,LOW);           

  digitalWrite(RELAY2,LOW);           

  digitalWrite(RELAY3,LOW);           

  digitalWrite(RELAY4,LOW);           

  digitalWrite(RELAY5,LOW);           

  digitalWrite(RELAY6,LOW);           

  digitalWrite(RELAY7,LOW);           

  digitalWrite(RELAY8,LOW);           

  delay(2000);


  digitalWrite(RELAY1,HIGH);           

  digitalWrite(RELAY2,HIGH);           

  digitalWrite(RELAY3,HIGH);           

  digitalWrite(RELAY4,HIGH);           

  digitalWrite(RELAY5,HIGH);           

  digitalWrite(RELAY6,HIGH);           

  digitalWrite(RELAY7,HIGH);           

  digitalWrite(RELAY8,HIGH);           

}


void loop()

{

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

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


   delay(1000);                        // Wait 1 seconds

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

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

   delay(1000); // Wait 1 seconds

}

Posted by RDIoT
|

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
|

5V 2-Channel Relay Module [S116]



https://www.youtube.com/watch?v=w-E8hqNFMdE


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


* Specs

Brand new and high quality.

This module can be used with Arduino Special Sensor Shield V4.0.

You can do some simple design about it.

This is 2-Channel 5V Relay Module for Arduino PIC ARM AVR DSP.

It can be able to control various appliances, and other equipments with large current.

Easy to be controlled by a lots of Microcontrollers.

Just use 5v input signal to control.

Equiped with high-current relay, AC250V 10A, AC150V 10A; DC30V 10A , DC28V 10A.

size:3.9cm x 5.1cm (1.54inch x 2.01inch).


* Contents

- Key Code

#define RELAY1  8                        

#define RELAY2  9                        


void setup()

{    

  pinMode(RELAY1, OUTPUT);       

  pinMode(RELAY2, OUTPUT);

}

 

 void loop()

{

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

   delay(500);                         // Wait 

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

 

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

   delay(500);                         // Wait

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

}



Posted by RDIoT
|

5V Relay Module (KY-019) [S076]




https://www.youtube.com/watch?v=nW7LC4X-6sc


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


* Specs

The company produces relay module can be connected to 240V AC or 28V DC power into a variety of other electrical parts. The relay can be used in anti-theft alarm, toys, etc. Relay is an electrically controlled device. It has a control system (also known as the input circuit) and the control system (Also known as the output circuit).

Commonly used in automation control circuit, it is actually a small Current to control a large current operation "automatic switch." Therefore, the circuit automatically adjusts the play, safety protection, transfer Conversion circuit and so on. Particularly suitable for single-chip control strong electric devices. In the control and use is also very convenient, just give input corresponding output relay different levels, you can Achieved by controlling the relay control purposes other devices, in addition, in the multi-channel relay PCB layout on the use of two lines Layout, user-lead connections. While in the circuit of a DC diode added greatly improved relay

Module to engage current ability to prevent the transistor being burned. In addition, we added a relay this power indicator Lights (except relay all the way), the indicator is red. In brightest relay also adds a status indicator.


* Contents

- Connect

Left

Middle ----- Connect

Right ----- Connect


S ----- D10

+ ----- 5V

- ----- GND


- Key Code

#include <Wire.h> 

#include <LiquidCrystal_I2C.h>


LiquidCrystal_I2C lcd(0x27,20,4);  // LCD2004

int pin = 10;


void setup()

{

  lcd.init();  // initialize the lcd 

  lcd.backlight();

  lcd.print("start LCD2004");


  pinMode(pin,OUTPUT);

  delay(1000);


  lcd.clear();

}


void loop()

{

 

  lcd.setCursor(0,0);

  lcd.print("S076:5V relay KY-019");


  lcd.setCursor(0,1);

  digitalWrite (pin, HIGH); // relay conduction;

  lcd.print("D10=" + (String)digitalRead(pin) + " - HIGH");

  delay (2000);

 

  lcd.setCursor(0,1); 

  digitalWrite (pin, LOW); // relay switch is turned off;

  lcd.print("D10=" + (String)digitalRead(pin) + " - LOW ");

  delay (2000);


}

Posted by RDIoT
|