• On sale!
  • -€1.50

4duino Current Sensor ACS712 30A

:SEN14001
€6.20
€4.70 Save €1.50
Tax included
  • 5V power supply
  • On-board power indicator
  • Bidirectional current measurement up to 30A
  • Analog output with a sensitivity of 66mV/A
Quantity

If you have any questions on this product please feel free to contact us.

*Disclaimer: The images are merely illustrative.

This module is based on the ACS712ELC-30A integrated circuit, a high performance hall current sensor.

 

ACS712 Arduino AC Current

Features

  • 5V power supply
  • On-board power indicator
  • Bidirectional current measurement up to 30A
  • Analog output with a sensitivity of 66 mV / A

Downloads

 

Code:

/*
Measuring AC Current Using ACS712
*/
const int sensorIn = A0;
int mVperAmp = 185; // use 100 for 20A Module and 66 for 30A Module


double Voltage = 0;
double VRMS = 0;
double AmpsRMS = 0;



void setup(){ 
 Serial.begin(9600);
}

void loop(){


 Voltage = getVPP();
 VRMS = (Voltage/2.0) *0.707; 
 AmpsRMS = (VRMS * 1000)/mVperAmp;
 Serial.print(AmpsRMS);
 Serial.println(" Amps RMS");

}

float getVPP()
{
 float result;

 int readValue; //value read from the sensor
 int maxValue = 0; // store max value here
 int minValue = 1024; // store min value here

 uint32_t start_time = millis();
 while((millis()-start_time) < 1000) //sample for 1 Sec
 {
 readValue = analogRead(sensorIn);
 // see if you have a new maxValue
 if (readValue > maxValue) 
 {
 /*record the maximum sensor value*/
 maxValue = readValue;
 }
 if (readValue < minValue) 
 {
 /*record the maximum sensor value*/
 minValue = readValue;
 }
 }

 // Subtract min from max
 result = ((maxValue - minValue) * 5.0)/1024.0;

 return result;
 }

 

SEN14001

You might also like