UNIT SSR Solid-state relays are different from traditional electromagnetic relays in that their switching life are much longer than that of electromagnetic relays. With integrated MOC3043M optocoupler isolation and zero-crossing detection,It supports input 3.3-5V DC control signal, and control output single-phase 220-250V AC power.
UNIT SSR are controlled by power semiconductor devices, with microsecond on/off speed and built-in over-current protection. Extensively used in lighting control, CNC machine tools, etc., where frequent on/off lines and fast response are required.
Resources | Parameter |
---|---|
SCR Model | BT136S |
Optocoupler Isolation Model | MOC3043 |
Control Signal | 3.3-5V DC |
On/Off Voltage | single-phase AC: 220-250V |
Max. load current | 2A |
Number of control channels | 1 |
Over-current protection | Fuse: 2A |
Operating Temperature | -10 to +80°C |
Net Weight | 52g |
Gross Weight | 70g |
Product Dimensions | 54 x 54 x 16mm |
Package Size | 75 x 60 x 20mm |
Control the relay to switch on and off
set COM connect ON Control relay closure
set COM connect OFF Control relay disconnect
#include <M5Stack.h>
void setup() {
M5.begin();
M5.Power.begin();
M5.Lcd.clear(BLACK);
M5.Lcd.setTextFont(4);
M5.Lcd.setTextColor(YELLOW, BLACK);
M5.Lcd.setCursor(50, 0, 4);
M5.Lcd.println(("SSR Example"));
//disable the speak noise
dacWrite(25, 0);
pinMode(26, OUTPUT);
}
void loop(void) {
digitalWrite(26, HIGH);
delay(500);
digitalWrite(26, LOW);
delay(500);
}