Allegro ACS712 User Manual

Allegro ACS712 User Manual

20a range current sensor module for arduino(me067)

Advertisement

IDUINO for maker's life
User Manual
For
ACS712 20A Range Current Sensor
Module for Arduino(ME067)
www.openplatform.cc

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the ACS712 and is the answer not in the manual?

Questions and answers

Subscribe to Our Youtube Channel

Summary of Contents for Allegro ACS712

  • Page 1 IDUINO for maker’s life User Manual ACS712 20A Range Current Sensor Module for Arduino(ME067) www.openplatform.cc...
  • Page 2 IDUINO for maker’s life Description: The Allegro® ACS712 provides economical and precisesolutions for AC or DC current sensing in industrial,commercial, and communications systems. The device package allows for easy implementation by the customer.Typical applications include motor control, load detection and management, switched-mode power supplies, and overcurrent fault protection.
  • Page 3 This module has three ranges for different sensor chip: Pinout: Tutorial: What You Will Need?  An Arduino UNO  An ACS712 Current Sensor Module  A Load  A Power Source  A Bench Supply The ACS712 Sample Project Schematic The drawing below shows I hooked things up.
  • Page 4 IDUINO for maker’s life You can copy and paste the code you see below. ****** Code Begin****** Measuring Current Using ACS712 const int analogIn = A0; int mVperAmp = 185; // use 100 for 20A Module and 66 for 30A Module int RawValue= 0;...
  • Page 5 IDUINO for maker’s life Serial.print("Raw Value = " ); // shows pre-scaled value Serial.print(RawValue); Serial.print("\t mV = "); // shows the voltage measured Serial.print(Voltage,3); // the '3' after voltage allows you to display 3 digits after decimal point Serial.print("\t Amps = "); // shows the voltage measured Serial.println(Amps,3);...

Table of Contents