艺术
美容与健康
工艺
文化与历史
娱乐
环境
食品与饮料
绿色未来
逆向工程
科学
体育
技术
可穿戴设备
Using Relays — SIK Circuit 13
Ed

创建者

Ed

17. 三月 2026FI
36
0
0
0
0

Using Relays — SIK Circuit 13

Control a relay with a transistor to switch between two LEDs. Learn about electromechanical switching, SPDT relays, Normally Open vs Normally Closed contacts, and flyback protection.

说明

1

Parts & Introduction

A relay is an electrically-operated mechanical switch. A small current energizes a coil that physically moves a contact arm, switching a separate circuit. Relays can control high-power devices (motors, lights, appliances) from low-power Arduino signals. This experiment uses an SPDT (Single Pole Double Throw) relay to alternate between two LEDs.

Parts Needed

  • 1x Arduino Uno + USB cable
  • 1x Breadboard
  • 1x SPDT Relay
  • 1x NPN Transistor (P2N2222A)
  • 1x Diode (1N4148)
  • 2x LEDs (different colors)
  • 2x 330Ω Resistors
  • 14x Jumper Wires

此步骤所需材料:

SparkFun Inventors Kit - V3.2SparkFun Inventors Kit - V3.21 套件
Arduino Uno R3Arduino Uno R31
BreadboardBreadboard1
SPDT Relay1
NPN Transistor (P2N2222A)NPN Transistor (P2N2222A)1
Diode (1N4148)Diode (1N4148)1
5mm LED5mm LED1
330 Ohm Resistor330 Ohm Resistor2
Jumper WiresJumper Wires8

所需工具:

Computer with Arduino IDE
2

Hardware Hookup

Wiring Instructions

Transistor + Relay Coil
  1. Connect transistor Base through 330Ω resistor to Arduino Digital Pin 2.
  2. Connect transistor Emitter to GND.
  3. Connect one side of the relay coil to transistor Collector.
  4. Connect other side of relay coil to 5V.
  5. Flyback Diode: Band (cathode) to 5V, anode to Collector.
Relay Contacts + LEDs
  1. Connect relay COMMON through a 330Ω resistor to 5V.
  2. Connect relay NC (Normally Closed) to LED 1 positive leg.
  3. Connect relay NO (Normally Open) to LED 2 positive leg.
  4. Connect both LED negative legs to GND.

此步骤所需材料:

SPDT Relay1
NPN Transistor (P2N2222A)NPN Transistor (P2N2222A)1
Diode (1N4148)Diode (1N4148)1
5mm LED5mm LED1
330 Ohm Resistor330 Ohm Resistor2
BreadboardBreadboard1
Jumper WiresJumper Wires8
3

Arduino Code

Open the Arduino IDE and upload the following sketch to your Arduino board.

relay.inoarduino
/*
SparkFun Inventor's Kit
Example sketch 13 — RELAYS

Use a transistor to drive a relay, alternating two LEDs.

Hardware connections:
  Transistor BASE through 330 ohm resistor to digital pin 2
  Transistor EMITTER to GND
  Relay coil: one side to COLLECTOR, other to 5V
  Flyback diode: band to 5V, anode to COLLECTOR
  Relay COMMON through 330 ohm to 5V
  Relay NC to LED 1 positive, Relay NO to LED 2 positive
  Both LED negatives to GND

This code is completely free for any use.
*/

const int relayPin = 2;
const int timeDelay = 1000;

void setup()
{
  pinMode(relayPin, OUTPUT);
}

void loop()
{
  digitalWrite(relayPin, HIGH);  // Relay on (COM connects to NO)
  delay(timeDelay);

  digitalWrite(relayPin, LOW);   // Relay off (COM connects to NC)
  delay(timeDelay);
}

此步骤所需材料:

Arduino Uno R3Arduino Uno R31

所需工具:

Computer with Arduino IDE
4

Test & Experiment

What You Should See

You should hear the relay clicking, and see the two LEDs alternating — one on, one off — switching every second.

Troubleshooting

  • LEDs not lighting: Check LED polarity — longer leg is positive.
  • No clicking sound: The transistor or coil circuit isn't working. Verify transistor orientation and coil connections.
  • Relay not making good contact: The SIK relay is designed for soldering, not breadboarding. Press it firmly to ensure all pins contact.
  • Confusion: Don't mix up the TMP36 temperature sensor with the transistor!

Experiments to Try

  • Replace the LEDs with a motor on the NO contact — use the relay as a motor on/off switch.
  • Use a button to control when the relay toggles.
  • Add variable delay to create morse code patterns.

材料

9

所需工具

1
  • Computer with Arduino IDE
估计总额
$181.00

CC0 公共领域

此蓝图以 CC0 协议发布。你可以自由复制、修改、分发和使用此作品,无需征得许可。

通过购买蓝图中的产品支持创客,他们将获得 创客佣金 (由供应商设定),或创建此蓝图的新版本并将其作为连接包含在你自己的蓝图中以分享收入。

讨论

(0)

登录 加入讨论

加载评论中...