ACS712T Current Sensor Module 20A (ACS712T) [B039]



https://www.youtube.com/watch?v=6NuyGoSPYO4


* Specs

Supply Voltage (VCC) 5Vdc Nominal

Measurement Range -20 to +20 Amps

Voltage at 0A VCC/2 (nominally 2.5Vdc)

Scale Factor 100 mV per Amp

Chip ACS712ELC-10A


* Contents

- Connect

VCC ---- 5V 

OUT ----- A0 

GND ----- GND 


Power+VCC -> Load/Sensor -> ACS712T (UP)

Power GND  ---------------> ACS712T (DOWN)


- Key Code

#include <Wire.h> 

#include <LiquidCrystal_I2C.h>


LiquidCrystal_I2C lcd(0x27,20,4);  // LCD2004


const int analogIn = A0;

int mVperAmp = 100; // use 100 for 20A Module and 66 for 30A Module

int RawValue= 0;

int ACSoffset = 2512; // default 2500 but i checked when this is disconnected to 2512

double Voltage = 0;

double Amps = 0;


void setup()

{

  lcd.init();  // initialize the lcd 

  lcd.backlight();

  lcd.print("start LCD2004");


  pinMode(analogIn,INPUT);

  delay(1000);


  lcd.clear();

}


void loop()

{

 

  lcd.setCursor(0,0);

  lcd.print("B039:ACS712T Current");


  RawValue = analogRead(analogIn);

  Voltage = (RawValue / 1023.0) * 5000; // Gets you mV

  Amps = ((Voltage - ACSoffset) / mVperAmp);


  lcd.setCursor(0,1);

  lcd.print("RawValue=" + (String)RawValue + "  ");


  lcd.setCursor(0,2);

  lcd.print("Voltage=" + (String)Voltage + "");


  lcd.setCursor(0,3);

  lcd.print("=>Current=" + (String)Amps + " A ");  


  delay(1500);

}

Posted by RDIoT
|

USB Voltage Current Meter [B037]



https://www.youtube.com/watch?v=ZEU8NXHy-Sc


* Specs

eatures:

100% Brand New and High Quality

Display data: Voltage Current Capacity Time

Specification:

1.Input USB

2.RTZ, Reset button, press it three seconds will Reset

3.Out USB

4.Voltage: 3V-9V ( 1% accuracy )

5.Current: 0-3A ( accuracy of 0.4% )

6.Battery Capacity (0-99999mah)

7.Working time (0-99Hour)

8.The working time and Capacity have Memory function when power off

Color:As the picture show

Size: 7.3cm*2.3cm*1.35cm (LXWXH)

Quantity:1 Pcs

Net Weight: 25g 



Posted by RDIoT
|

Dual Digital Volt Meter 100V 10A [B030]



https://www.youtube.com/watch?v=ooUc6LTzRNI


* Specs

Working voltage:4.5-30V DC

Note: The maximum input voltage can not exceed 30V, otherwise there is the danger of burning

Working current:≤20mA

Display: 0.28" Two color blue and red

Measuring range: DC 0-100V 0-10A

Minimum resolution (V): 0.1V

Refresh rate: ≥100mS / times

Measure accuracy: 1% (± 1 digit)

Minimum resolution (A): 0.01A 

Operating temperature: -15 to 70° c

Working pressure: 80 to 106 kPa

size :47×28×16 mm/1.85*1.10*0.63"

Net Weight:19 g

Weight:29 g


* Contents

- Connect

2Line (Power)

Red ----- 5V (4.5V ~ 30V)

Black ----- GND

 

3Line

Red ----- External Power +=========> Load (+)

Black ----- External Power GND

Blue =============================> Load (-)

Posted by RDIoT
|