Wish List 0

Current Sensor Breakout Acs723

Rs. 619.00 Rs. 743.00

-The Current Sensor Breakout – ACS723 is a high accuracy board that utilizes the ACS723 for moderate AC and DC modern sensing packages.
-The ACS723 sensor makes use of a Hall effect sensor to output a voltage relative to the cutting-edge flowing through the IP+ and IP- pins at the board.
-The advantage of the usage of a Hall impact sensor, specially, is that the circuit being sensed and the circuit studying the sensor are electrically isolated that means that, even though your Arduino is jogging on 5V, the sensed circuit can be operating at higher DC or AC voltages!

-The Current Sensor Breakout measures each DC and AC currents all the manner as much as 5A, has complete electrical isolation of measured and sensed circuits, and has a base sensitivity of 400mV/A. -Although the analog output is adjustable to 80kHz, the bandwidth on the ACS723 Sensor Breakout width filter has been set to 20kHz to reduce noise when using at high gains.
-The full 80KHz bandwidth that the sensor is able to can be recovered by way of final the JP1 (Bandwidth Select) jumper on the lower back of the board.

Features:
-Analog output with bandwidth adjustable to 80kHz.
-The bandwidth on the ACS723 Sensor Breakout width filter has been set to 20kHz to reduce noise when using at high gains.
       - The full 80KHz bandwidth that the sensor is capable of can be recovered by closing the JP1 (Bandwidth Select) jumper on the back of the board.
       - See either the ACS723 schematic or the ACS723 Low Current schematic for more details.
       - Measures DC and AC currents.
       - Full electrical isolation of measured and sensed circuits.
       - The version without the op-amp has a base sensitivity of 400mV/A.


SPECIFICATIONS:
Operating voltage (VDC)             12:00 AM
Current Sensing Range (AC and DC)   10mA up to 5A

OVERVIEW:

-Analog output with bandwidth adjustable to 80kHz.

-Measures DC and AC currents up to 10 mA ~ 5A.

-Full electrical isolation of measured and sensed circuits.

-The version without the op-amp has a base sensitivity of 400mV/A.


PACKAGE INCLUDES:

1 PCS x 5A Current Sensor Breakout Acs723


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.electronicshub.org/interfacing-acs712-current-sensor-with-arduino/


#include <LiquidCrystal.h>


LiquidCrystal lcd(7, 6, 5, 4, 3, 2);

 

const int currentPin = A0;

int sensitivity = 66;

int adcValue= 0;

int offsetVoltage = 2500;

double adcVoltage = 0;

double currentValue = 0;

 

void setup() 

{

  Serial.begin(9600);

  lcd.begin(16, 2);

  lcd.print(" Current Sensor ");

  lcd.setCursor(0,1);

  lcd.print("  with Arduino  ");

  delay(2000);

}

 

void loop()

{

  adcValue = analogRead(currentPin);

  adcVoltage = (adcValue / 1024.0) * 5000;

  currentValue = ((adcVoltage - offsetVoltage) / sensitivity);

  

  Serial.print("Raw Sensor Value = " );

  Serial.print(adcValue);

 

  lcd.clear();

  delay(1000);

  //lcd.display();

  lcd.setCursor(0,0);

  lcd.print("ADC Value =     ");

  lcd.setCursor(12,0);

  lcd.print(adcValue);


  delay(2000);


  Serial.print("\t Voltage(mV) = ");

  Serial.print(adcVoltage,3);

  

  lcd.setCursor(0,0);

  lcd.print("V in mV =       ");

  lcd.setCursor(10,0);

  lcd.print(adcVoltage,1);


  delay(2000);

 

  Serial.print("\t Current = ");

  Serial.println(currentValue,3);

 

  lcd.setCursor(0,0);

  lcd.print("Current =       ");

  lcd.setCursor(10,0);

  lcd.print(currentValue,2);

  lcd.setCursor(14,0);

  lcd.print("A");

  delay(2500);

}

15 days

Write a review

Please login or register to review