Arduino & Relays

From Interaction Station Wiki
(Redirected from Arduino and relays)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Introducing the Relay Module

Relay02.jpg

A relay is an electrically operated switch of mains voltage. It means that it can be turned on or off, letting the current go through or not.

Controlling a relay module with Arduino

Controlling a relay with the Arduino is as simple as controlling an output such as an LED.

Notice the writing on the module terminals

COM: common pin
NO (Normally Open): There is no contact between the common pin and the normally open pin. So, when you trigger the relay, it connects to the COM pin and supply is provided to a load
NC (Normally Closed): There is contact between the common pin and the normally closed pin. There is always connection between the COM and NC pins, even when the relay is turned off. When you trigger the relay, the circuit is opened and there is no supply provided to a load.
If you want to control a lamp for example, it is better to use a normally-open circuit, because we just want to light up the lamp occasionally.

Wiring

Relay wiring.png
It is very straightforward as you can see. But always double-check the relay module connections before you plug things together.
COM goes to the power supply/mains
NO goes to your device
Arduino connection:
GND or DC- goes to ground
VCC or DC+ goes to 5V
IN: goes to a digital pin (you can pick the one you prefer)

OK, but maybe you want to control more than one thing??
Then no problem:
6-Channel-12V-Relay-Module.jpg
Here are 16 channels:)
You can easily find Relay modules with different amounts of channels, accordingly to your needs. Wiring is the same, you will just need 16 digital pins on the Arduino

Conrad Relay Modules

The Conrad relay modules in the Station require higher that 5V voltage to operate, so we will use a 9V battery as a power source and switch it with an Arduino trough a BC547 transistor.
The modules look like this:
Relay modules.jpg

On the printed pcb modules there is a small separate circuit, where the transistor is.
The small circuit looks like this in detail:
Relay addon.jpg
This is the BC547 pinout:
BC547.jpg
The Arduino is connected trough a resistor to the Base of the Transistor. So the signal is to be connected onto the pin that is next to the resistor (look above)
When the Arduino pin is High, then voltage flows from the Emitter to the Collector, therefore it switches the relay on trough the battery.
There are some boards that are not printed PCBs. They look like this:
Relay diy01.jpg
The transistor is placed directly on the board in this case. The logic is the same. Looks like this (always check the resistor from the Base, the pin it is connected to is the Arduino pin)
Relay diy02.jpg