It is a 5V 1 Channel Without Light Coupling Relay. The relay normally open interface maximum load: AC 250V/10A, DC 30V/10A. It has a trigger current of 5mA, and module working voltage of DC 5V. Each channel of the module can be triggered by a jumper to set a high level or a low level. Fault-tolerant design, even if the control line is disconnected, the relay will not move. With status indicator: power (green), 1-channel relay status indicator (red). All module size interfaces can be directly connected through the terminal block, which is convenient and practical.
Features:
The 8550 transistor drive, driveability.
A fixed bolt holes for easy installation.
It has a relay status indicator led Power LED(Green), 1 relay status indicator LED(Red)
Relay control interface by single-chip IO.
Low-level suction close, high-level release.Easy to use, simple 3 line structure
5// Relay IN pins on STM32: PA0. Most cheap relay boards are ACTIVE-LOW (LOW = relay energized) - check yours.
6constint NUM_RELAYS = 1;
7int relayPins[NUM_RELAYS] = {PA0};
8
9voidsetup() {
10for (int i = 0; i < NUM_RELAYS; i++) {
11pinMode(relayPins[i], OUTPUT);
12digitalWrite(relayPins[i], HIGH); // start OFF (active-low boards: HIGH = off)
13 }
14}
15
16voidloop() {
17for (int i = 0; i < NUM_RELAYS; i++) {
18digitalWrite(relayPins[i], LOW); // turn ON
19delay(500);
20digitalWrite(relayPins[i], HIGH); // turn OFF
21delay(200);
22 }
23delay(1000);
24}
📄 File: 5v_1_channel_relay_active_low_-_raspberry_pi_pico.inoRaspberry Pi Pico
635 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Relay IN pins on Raspberry Pi Pico: 10. Most cheap relay boards are ACTIVE-LOW (LOW = relay energized) - check yours.
6constint NUM_RELAYS = 1;
7int relayPins[NUM_RELAYS] = {10};
8
9voidsetup() {
10for (int i = 0; i < NUM_RELAYS; i++) {
11pinMode(relayPins[i], OUTPUT);
12digitalWrite(relayPins[i], HIGH); // start OFF (active-low boards: HIGH = off)
13 }
14}
15
16voidloop() {
17for (int i = 0; i < NUM_RELAYS; i++) {
18digitalWrite(relayPins[i], LOW); // turn ON
19delay(500);
20digitalWrite(relayPins[i], HIGH); // turn OFF
21delay(200);
22 }
23delay(1000);
24}
Single-channel relay module.
نظرة عامة ومواصفات المنتج — بالعربية
5V 1 Channel Relay Active low متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Electronic Modules وRelay Modules، بسعر 40,00 EGP. كود المنتج لدينا: EK347. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.
أهم المواصفات الفنية:
جهد التشغيل (فولت): 3 ~ 5
Trigger Current Ma: 20
Switching Voltage Vac: 250@10A
Switching Voltage Vdc: 30@10A
Operating Temperature C: -40 to 85
Opt Relative Humidityrh: 20% ~ 85%
Storage Condition %E2%84%83: – 65 to 175
الوزن: 14 g
هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.