Wish List 0

Ina169 High Precision Analog Current Sensor Module

Rs. 236.00 Rs. 270.00

Features:
-The INA139 and INA169 are high-side, unipolar, current shunt monitors.
-Wide input common-mode voltage range, high-speed, low quiescent current, and tiny SOT-23 packaging enable use in a variety of applications.
-Input common-mode and power-supply voltages are independent and can range from 2.7 V to 40 V for the INA139 and 2.7 V to 60 V for the INA169.
-Quiescent current is only 60 µA, which permits connecting the power supply to either side of the current measurement shunt with minimal error.
-The device converts a differential input voltage to a current output.
-This current is converted back to a voltage with an external load resistor that sets any gain from 1 to over 100.
-Although designed for current shunt measurement, the circuit invites creative applications in measurement and level shifting.
-Both the INA139 and INA169 are available in 5-pin SOT-23 packages.
-The INA139 device is specified for the –40°C to +125°C temperature range, and the INA169 is specified from –40°C to +85°C.
-This module is very easy to use, it is only necessary to connect a power supply between 2.7 V to 60 V, connect V + to V- from the positive supply and ground.
-Then measure the output using a multi meter.
-Complete Unipolar High-Side Current Measurement Circuit
-Wide Supply and Common-Mode Range
-INA139: 2.7 V to 40 V
-INA169: 2.7 V to 60 V
-Independent Supply and Input Common-Mode Voltages
-Single Resistor Gain Set
-Low Quiescent Current: 60 µA (Typical)
-5-Pin, SOT-23 Packages


SPECIFICATIONS:
Size       GY-169 INA169
Feature    High Precision
Power      Analog quantity
Model      Current Converter

OVERVIEW:

-COMPLETE UNIPOLAR HIGH-SIDE

-CURRENT MEASUREMENT CIRCUIT

-WIDE SUPPLY AND COMMON-MODE RANGE

-INA139: 2.7V to 40V

-INA169: 2.7V to 60V

-INDEPENDENT SUPPLY AND INPUT COMMONMODE VOLTAGES

-SINGLE RESISTOR GAIN SET

-LOW QUIESCENT CURRENT (60µA typ)

-SOT23-5 PACKAGE

PACKAGE INCLUDES:

1 PCS x Ina169 High Precision Analog Current Sensor Module



//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.openimpulse.com/blog/products-page/product-category/ina169-current-sensor-module/

/*

 Hardware connections:


 Uno Pin    INA169 Board    Function


 +5V        VCC             Power supply

 GND        GND             Ground

 A0         VOUT            Analog voltage measurement


 VIN+ and VIN- need to be connected inline with the positive

 DC power rail of a load (e.g. an Arduino, an LED, etc.).


 */


// Constants

const int SENSOR_PIN = A0;  // Input pin for measuring Vout

const int RS = 10;          // Shunt resistor value (in ohms)

const int VOLTAGE_REF = 5;  // Reference voltage for analog read


// Global Variables

float sensorValue;   // Variable to store value from analog read

float current;       // Calculated current value


void setup() {


  // Initialize serial monitor

  Serial.begin(9600);


}


void loop() {


  // Read a value from the INA169 board

  sensorValue = analogRead(SENSOR_PIN);


  // Remap the ADC value into a voltage number (5V reference)

  sensorValue = (sensorValue * VOLTAGE_REF) / 1023;


  // Follow the equation given by the INA169 datasheet to

  // determine the current flowing through RS. Assume RL = 10k

  // Is = (Vout x 1k) / (RS x RL)

  current = sensorValue / (10 * RS);


  // Output value (in amps) to the serial monitor to 3 decimal

  // places

  Serial.print(current, 3);

  Serial.println(" A");


  // Delay program for a few milliseconds

  delay(500);


15 days

Write a review

Please login or register to review