Computers
Computer Parts
Custom PC Builder
DIY/ Maker
{$smarty.capture.menu}
Activity
Categories
Discussions
Computers
Computer Parts
Custom PC Builder
DIY/ Maker
Inland 5V Relay Module - Micro Center
<main> <article class="userContent"> <h2 data-id="inland-5v-relay-module"><strong>Inland 5V Relay Module</strong></h2><div class="embedExternal embedImage display-large float-none"> <div class="embedExternal-content"> <a class="embedImage-link" href="https://us.v-cdn.net/6031942/uploads/68WGRSVGZ5AP/image.png" rel="nofollow noreferrer noopener ugc" target="_blank"> <img class="embedImage-img" src="https://us.v-cdn.net/6031942/uploads/68WGRSVGZ5AP/image.png" alt="image.png" height="583" width="899" loading="lazy" data-display-size="large" data-float="none"></img></a> </div> </div> <h2 data-id="introduction"><strong>Introduction</strong></h2><p>This single relay module can be used in interactive projects. It is active HIGH level. This module uses SONGLE 5v high-quality relay. It can also be used to control lighting, electrical and other equipment. The modular design makes it easy to expand with the Arduino board (not included). The relay output is by a light-emitting diode. It can be controlled through digital IO port, such as solenoid valves, lamps, motors and other high current or high voltage devices.</p><h2 data-id="specification"><strong>Specification</strong></h2><ul><li>Type: Digital</li><li>Rated current: 10A (NO) 5A (NC)</li><li>Maximum switching voltage: 150VAC 24VDC</li><li>Digital interface</li><li>Control signal: TTL level</li><li>Rated load: 8A 150VAC (NO) 10A 24VDC (NO), 5A 250VAC (NO/NC) 5A 24VDC (NO/NC)</li><li>Maximum switching power: AC1200VA DC240W (NO) AC625VA DC120W (NC)</li><li>Contact action time: 10ms</li></ul><h2 data-id="connection-diagram"><strong>Connection Diagram</strong></h2><p>Firstly you need to prepare the following parts by yourself before testing.</p><ul><li>Arduino Board*1</li><li>Single relay module*1</li><li>USB Cable*1</li><li>Jumper Wire*3</li></ul><div class="embedExternal embedImage display-large float-none"> <div class="embedExternal-content"> <a class="embedImage-link" href="https://us.v-cdn.net/6031942/uploads/F3YD507UO8F2/image.png" rel="nofollow noreferrer noopener ugc" target="_blank"> <img class="embedImage-img" src="https://us.v-cdn.net/6031942/uploads/F3YD507UO8F2/image.png" alt="image.png" height="608" width="899" loading="lazy" data-display-size="large" data-float="none"></img></a> </div> </div> <h2 data-id="sample-code"><strong>Sample Code</strong></h2><pre class="code codeBlock" spellcheck="false" tabindex="0">int Relay = 8; void setup() { pinMode(Relay, OUTPUT); //Set Pin3 as output } void loop() { digitalWrite(Relay, HIGH); //Turn off relay delay(2000); digitalWrite(Relay, LOW); //Turn on relay delay(2000); } </pre><h2 data-id="test-result"><strong>Test Result</strong></h2><p>This relay module is active HIGH level. Wire it up well, powered up, then upload the above code to the board. You will see the relay is turned on (ON connected, NC disconnected) for two seconds, then turned off for two seconds (NC closed, ON disconnected), repeatedly and circularly.</p> </article> </main>