The Omron G3MB-202P Solid State Relay (SSR) is an electronic switching device that enables control of high power circuits using a low power signal. Unlike mechanical relays, SSRs use semiconductor devices to switch the load, providing silent, fast, and reliable operation. This SSR is commonly used in industrial automation, home appliances, and HVAC systems where precise control of high current loads is required with minimal electromagnetic interference (EMI).
Pin Number | Description | Notes |
---|---|---|
1 | Input Terminal (+) | Connect to positive control signal |
2 | Input Terminal (-) | Connect to negative control signal |
3 | Load Terminal (AC) | Connect to one side of the AC load |
4 | Load Terminal (AC) | Connect to the other side of the AC load |
Control Signal Connection:
Load Connection:
Power Supply:
Q: Can I use the G3MB-202P SSR with a DC load? A: No, the G3MB-202P is designed for AC loads only.
Q: What is the maximum current the G3MB-202P can handle? A: The maximum load current is 2A. Ensure the load does not exceed this rating.
Q: How do I know if the SSR is functioning properly? A: When a control signal is applied, you should be able to measure the load voltage across Pins 3 and 4. If not, the SSR may be faulty.
// Example code to control Omron G3MB-202P SSR with an Arduino UNO
const int ssrPin = 7; // Connect to Pin 1 of SSR
void setup() {
pinMode(ssrPin, OUTPUT); // Set the SSR pin as an output
}
void loop() {
digitalWrite(ssrPin, HIGH); // Turn on the SSR (activate the connected AC load)
delay(5000); // Keep the load on for 5 seconds
digitalWrite(ssrPin, LOW); // Turn off the SSR (deactivate the connected AC load)
delay(5000); // Keep the load off for 5 seconds
}
Note: Ensure that the Arduino's ground is connected to Pin 2 of the SSR, and the digital output pin is connected to Pin 1. The SSR should be connected to an AC load as per the usage instructions. Always exercise caution when working with high voltage AC circuits.