5A AC Current Sensor Transformer Module
32,00 ₪
Overview:
What is an electronic brick? An electronic brick is an electronic module which can be assembled like Lego bricks simply by plugging in and pulling out. Compared to traditional universal boards and circuit modules assembled with various electronic components, electronic brick has standardized interfaces, plug and play, simplifying construction of prototype circuit on one’s own. There are many types of electronic bricks, and we provide more than twenty types with different functions including buttons, sensors, Bluetooth modules, etc, whose functions cover from sensor to motor drive, from Ethernet to wireless communication via Bluetooth, and so on. We will continue to add more types to meet the various needs of different projects.
Electronic brick of electricity sensor is based on TA12-100 current transformer, which can transform AC signals of large current into small amplitude signals. The maximum current that can be detected can reach 5A, and the present current signal can be read via analog I/O port.
Features:
1. Plug and play, easy to use. Compatible with the mainstream 2.54 interfaces and 4-Pin Grove interfaces in the market.
2. With use of M4 standard fixed holes, compatible with M4-standard kits such as Lego and Makeblock.
Specifications:
1. PCB size:30.0mm X 24.0mm X 1.6mm
2. Compatible interfaces:2.54 3-pin interface and 4-pin Grove interface(1)
Note: S for analog output port, G for ground, and N for not used pin.
You can use like this:
?
![](https://ae01.alicdn.com/kf/HTB1uScSIFXXXXbdXFXXq6xXFXXXa/224361831/HTB1uScSIFXXXXbdXFXXq6xXFXXXa.jpg?size=102179&height=628&width=729&hash=9ca207c8a46c8eb097b9d97c65d5d986)
?
Text code:
Link the S port of this sensor connect to A0 port of the board, use the following procedure to read analog values. And then display on the computer through the serial port.
#define ELECTRICITY_SENSOR A0 //
float amplitude_current; //
float effective_value; //
void setup()
{
Serial.begin(9600);
pins_init();
}
void loop()
{
int sensor_max;
sensor_max = getMaxValue();
Serial.print(“sensor_max = “);
Serial.println(sensor_max);
//the VCC on the Grove interface of the sensor is 5v
amplitude_current=(float)sensor_max/1024*5/200*1000000;
effective_value=amplitude_current/1.414;
//Minimum current value can be detected=1/1024*5/200*1000000/1.414=24.4(mA)
//Only for sinusoidal alternating current
Serial.println(“The amplitude of the current is(in mA)”);
Serial.println(amplitude_current,1);//Only one number after the decimal point
Serial.println(“The effective value of the current is(in mA)”);
Serial.println(effective_value,1);
}
void pins_init()
{
pinMode(ELECTRICITY_SENSOR, INPUT);
}
/*Function: Sample for 1000ms and get the maximum value from the SIG pin*/
int getMaxValue()
{
int sensorValue; //value read from the sensor
int sensorMax = 0;
uint32_t start_time = millis();
while((millis()-start_time) < 1000)//sample for 1000ms
{
sensorValue = analogRead(ELECTRICITY_SENSOR);
if (sensorValue > sensorMax)
{
/*record the maximum sensor value*/
sensorMax = sensorValue;
}
}
return sensorMax;
}
?
![](https://ae01.alicdn.com/kf/HTB1j0QNJVXXXXauXFXXq6xXFXXX7/224361831/HTB1j0QNJVXXXXauXFXXq6xXFXXX7.jpg?size=195756&height=1000&width=1000&hash=0303cb1257c7d6733830c1fabcc33de9)
??
![](https://ae01.alicdn.com/kf/HTB1zm.9JVXXXXXUXXXXq6xXFXXXN/224361831/HTB1zm.9JVXXXXXUXXXXq6xXFXXXN.jpg?size=221862&height=1000&width=1000&hash=c98c7a7e1f386b1083c24e4603f125d4)
??
![](https://ae01.alicdn.com/kf/HTB1qFAMJVXXXXcwXpXXq6xXFXXXL/224361831/HTB1qFAMJVXXXXcwXpXXq6xXFXXXL.jpg?size=181661&height=1000&width=1000&hash=1bca27861e6058c688ccc2170a2f46b4)
منتجات ذات صلة
RTD PT100 Temperature Sensors 1/2 Inch NPT Threads With Detachable Connector 2M
Available on backorder
RTD PT100 Temperature Sensor Thread M8 Cable 1M Thermocouple Probe 100mm
Available on backorder