Ks0264 keyestudio Two-channel Solid State Relay Module: Difference between revisions
Keyestudio (talk | contribs) |
Keyestudio (talk | contribs) No edit summary |
||
Line 3: | Line 3: | ||
<br>[[File:KS0264-.jpg|500px|frameless|thumb]]<br> | <br>[[File:KS0264-.jpg|500px|frameless|thumb]]<br> | ||
<br> | |||
==Introduction== | ==Introduction== | ||
Keyestudio two-channel solid state relay is a low level effective solid state relay, that is to say, the input control signals is the low level (0-1.5 V), the relay is on; while the input control signal is high level (3-5 V), the relay is off. <br> | |||
Keyestudio two-channel solid state relay is a low level effective solid state relay, that is to say, the input control signals is the low level (0-1.5 V), the relay is on; while the input control signal is high level (3-5 V), the relay is off. Solid State Relay is a new kind of contactless switching device which is composed of all solid state electronic components. Compared with the electromagnetic relay, its reliability is more higher, with the features of non-contact, long service life, fast and less outside interference. The output control terminal of the keyestudio solid-state relay must be connected to the circuit, and its working current needs to be bigger than 50mA, so that the solid state relay can be disconnected normally. | Solid State Relay is a new kind of contactless switching device which is composed of all solid state electronic components. Compared with the electromagnetic relay, its reliability is more higher, with the features of non-contact, long service life, fast and less outside interference. <br> | ||
The output control terminal of the keyestudio solid-state relay must be connected to the circuit, and its working current needs to be bigger than 50mA, so that the solid state relay can be disconnected normally.<br> | |||
<br>[[File:KS0264-2.jpg|500px|frameless|thumb]]<br> | <br>[[File:KS0264-2.jpg|500px|frameless|thumb]]<br> | ||
<br> | |||
==Performance Parameters== | ==Performance Parameters== | ||
* Electrical parameters: | * Electrical parameters:<br> | ||
{| class="wikitable" border="1" | {| class="wikitable" border="1" | ||
|- | |- | ||
Line 33: | Line 36: | ||
| 2mA | | 2mA | ||
|} | |} | ||
* Output port: AC240V/2A | |||
<br> | |||
==Connection Diagram == | ==Connection Diagram == | ||
<br>[[File:KS0264.png| | <br>[[File:KS0264.png|600px|frameless|thumb]]<br> | ||
<br> | |||
==Sample Code== | ==Sample Code== | ||
<pre> | <pre> | ||
Line 65: | Line 69: | ||
} | } | ||
} | } | ||
</pre> | </pre> | ||
<br> | |||
==Result== | ==Result== | ||
Wiring as the above diagram, after powered-on, the two-channel solid state relay is first connected and then disconnected successively, repeating alternately.<br> | |||
<br> | |||
==Resource == | ==Resource == | ||
'''PDF:''' <br> | * '''PDF:''' <br> | ||
https://drive.google.com/open?id=1L_9MQoeBzdrVKn2q5G62mv0ir8x0VkjH | https://drive.google.com/open?id=1L_9MQoeBzdrVKn2q5G62mv0ir8x0VkjH | ||
'''VIDEO:''' <br> | * '''VIDEO:''' <br> | ||
http:// | http://video.keyestudio.com/ks0264/ | ||
<br> | |||
==Buy from == | ==Buy from == | ||
*[https://www.keyestudio.com/keyestudio-two-channel-solid-state-relay-module-for-arduino-p0275-p0275.html '''Official Website'''] | |||
*[https://www.aliexpress.com/store/product/Free-shipping-two-Channel-Solid-State-Relay-Module-red-for-arduino/1452162_32347919230.html?spm=2114.12010615.8148356.15.513973a5GQGFM4 Shop on aliexpress ] | |||
[[Category:Module]] | [[Category:Module]] |
Revision as of 16:44, 18 April 2019
Keyestudio Two-channel Solid State Relay Module
Introduction
Keyestudio two-channel solid state relay is a low level effective solid state relay, that is to say, the input control signals is the low level (0-1.5 V), the relay is on; while the input control signal is high level (3-5 V), the relay is off.
Solid State Relay is a new kind of contactless switching device which is composed of all solid state electronic components. Compared with the electromagnetic relay, its reliability is more higher, with the features of non-contact, long service life, fast and less outside interference.
The output control terminal of the keyestudio solid-state relay must be connected to the circuit, and its working current needs to be bigger than 50mA, so that the solid state relay can be disconnected normally.
Performance Parameters
- Electrical parameters:
Voltage | Static Current | Working Current | Trigger Voltage | Trigger Current | |
---|---|---|---|---|---|
Channel 1 | DC 5V | 0mA | 12.5mA | 0-1.5V | 2mA |
Channel 2 | DC 5V | 0mA | 12.5mA | 0-1.5V | 2mA |
- Output port: AC240V/2A
Connection Diagram
Sample Code
int BASE = 3 ; //The first relay I/O port int NUM = 2; //Total number of relay void setup() { for (int i = BASE; i < BASE + NUM; i ++) { pinMode(i, OUTPUT); //Set the digital I/O port to output } } void loop() { for (int i = BASE; i < BASE + NUM; i ++) { digitalWrite(i, LOW); //Set the digital I/O port outputs to "low", that is, gradually open relay delay(200); //delay } for (int i = BASE; i < BASE + NUM; i ++) { digitalWrite(i, HIGH); //Set the digital I/O port outputs to "high", that is, gradually close relay delay(200); //delay } }
Result
Wiring as the above diagram, after powered-on, the two-channel solid state relay is first connected and then disconnected successively, repeating alternately.
Resource
- PDF:
https://drive.google.com/open?id=1L_9MQoeBzdrVKn2q5G62mv0ir8x0VkjH
- VIDEO:
http://video.keyestudio.com/ks0264/