Wish List 0

Gy 471 3A Range Current Sensor Module Professional Max471 Module For Arduino Rs1472

Rs. 186.00 Rs. 224.00

-This module may be used to test the current and voltage.
-The principle of voltage check based totally at the principle of resistive voltage divider design could make the pink terminal connector enter voltage to 5 instances smaller.
-Analog input voltages as much as 5V, the voltage detection module enter voltage not more than 5Vx5 = 25V (if the usage of 3.3V systems, enter voltage not greater than 3.3Vx5 = 16.5V).
-AVR chips have 10-bit AD, so this module simulates a resolution of zero.00489V (5V / 1023), so the minimal voltage of the enter voltage detection module is 0.00489 Vx5 = 0.02445V.
-The MAX471 chip on the board used to test the fed on modern of the burden.

SPECIFICATIONS:
Product code             HCSENS0041
Current sensor max         +/- 3A
Current sensor voltage   3 to 25V
Sensor output            1V / Amp
Dimensions               20mm x 19.5mm

OVERVIEW:

-Complete High-Side Current Sensing

-Precision Internal Sense Resistor (MAX471)

-2% Accuracy Over Temperature

-Monitors Both Charge and Discharge

-3A Sense Capability with Internal Sense Resistor(MAX471)

-Higher Current-Sense Capability with External

-Sense Resistor (MAX472)

-100µA Max Supply Current

-18µA Max Shutdown Mode

-3V to 36V Supply Operation

-8-Pin DIP/SO Packages

PACKAGE INCLUDES:

1 PCS x Gy 471 3A Range Current Sensor Module Professional Max471 Module For Arduino Rs1472




//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.electronoobs.com/eng_arduino_tut81.php


#include <Wire.h>

#include <LiquidCrystal_I2C.h>


// Set the LCD address to 0x27 or 0x3f for a 16 chars and 2 line display

LiquidCrystal_I2C lcd(0x27, 20, 4);

const int max471In = A0;


int RawValue= 0;

float Current = 0;


void setup(){  

  lcd.init();

  lcd.backlight();

  pinMode(max471In, INPUT);

  Serial.begin(9600);

}


void loop(){  

  RawValue = analogRead(max471In); 

  Current = (RawValue * 5.0 )/ 1024.0; // scale the ADC  

       

  Serial.print("Current = "); // shows the voltage measured     

  Serial.print(Current,3); //3 digits after decimal point

  Serial.println(" amps DC"); //3 digits after decimal point  

  lcd.clear();

  lcd.setCursor(0,0);

  lcd.print("    Current:    ");

  lcd.setCursor(6,1);

  lcd.print(Current);

  delay(200);  

}

15 days

Write a review

Please login or register to review