-LC 5A 12V Overcurrent Protection AC Current Detection Sensor Module uses a current transformer to gather the AC sign to reap the relay over-contemporary sign output inside 0-5A.
-Relay pull at the same time as over-current, relay released whilst no longer over-modern-day.
Users can use the relay COM; NC, NO 3 ports to govern the external circuit on and off, that allows you to gain over-contemporary safety.
Functions:
Current detection resolution can trade the parameter of resistance parameters;
Output over-modern-day switching signal output;
The over-cutting-edge sign placing important point adjustable.
Using Instructions:
By putting the potentiometer to set the overcurrent protection factor, the clockwise adjustment reduces the detection modern-day.
As bellows:
Measured the cord via the present day transformer, connect VCC and GND to the DC12V energy supply;
Adjust the potentiometer, while you hear the sound of the relay pull (can be measured with a multimeter COM and NO whether turned into turned on; is attached to the relay manner activated), then lessen or reduce off the contemporary flowing that via the tested wire; if the relay release right now that over-contemporary protection factor has been identified (to be had to multimeter COM and NC dimension whether or not is attached; is hooked up to the relay approach it release);
When lessen or reduce off the present day flowing through the wire; the relay isn't released, will nevertheless need to keep to adjust the potentiometer to locate the over-present day safety point."
SPECIFICATIONS: |
|
Operating voltage |
DC12V |
Operating current |
<20MA |
Operating frequency range |
20Hz ~ 400Hz |
Output mode |
Switch signal output |
Maximum detection wire diameter |
5.2mm |
Operating environment |
-40 ??~ +85 ??/span> |
The current detection range |
AC0.3A-5A |
|
|
OVERVIEW:
LC 5A Over-current protection Sensor module uses a current transformer to collect the AC signal to achieve the relay over-current signal output within 0-5A. Relay pull while over-current, relay released while not over-current
PACKAGE INCLUDES:
1 PCS x 5A 12V Overcurrent Protection Ac Current Detection Sensor Module
//SOURCE CODE TAKEN FROM BELOW LINK
//https://innovatorsguru.com/zmct102/
#include “EmonLib.h” // Include Emon Library
EnergyMonitor emon1; // Create an instance</p>
void setup()
{
Serial.begin(9600);
emon1.current(1, 111.1); // Current: input pin, calibration.
}
void loop()
{
double Irms = emon1.calcIrms(1480); // Calculate Irms only
Serial.print(Irms*230.0); // Apparent power
Serial.print(” “);
Serial.println(Irms); // Irms
}