Wish List 0

Hx711 Dual Channel 24 Bit Precision A D Weight Pressure Sensor

Rs. 39.00 Rs. 45.00

  • Brand: http://en.aviaic.com/detail/730856.html
  • Product Code: SEN-AMP-LOAD
  • SKU - SE-2906
  • Availability: In Stock
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-The HX711 Dual-Channel 24 Bit Precision A/D weight Pressure Sensor Load Cell Amplifier and ADC Module is a small breakout board for the HX711 IC that allows you to easily read load cells to measure weight.
-By connecting the module to your microcontroller you will be able to read the changes in the resistance of the load cell and with some calibration.
-You’ll be able to get very accurate weight measurements.
-This can be handy for creating your own industrial scale, process control, or simple presence detection.
-The HX711 Weighing Sensor uses a two-wire interface (Clock and Data) for communication.
-Any microcontroller’s GPIO pins should work and numerous libraries have been written making it easy to read data from the HX711.
-Check the hookup guide below for more information.
-Load cells use a four-wire Wheatstone bridge to connect to the HX711.
-These are commonly color RED, BLK, WHT, GRN, and YLW.
-Each color corresponds to the conventional color coding of load cells :
-Red (Excitation+ or VCC).
-Black (Excitation- or GND).
-White (Amplifier+, Signal+, or Output+).
-Green (A-, S-, or O-).
-Yellow (Shield).
-The YLW pin acts as an optional input that not hook up to the strain gauge but is utilized to ground and shield against outside EMI (electromagnetic interference).
-Please keep in mind that some load cells might have variations in color-coding.

Pinouts:
Analog Side:
E+: Excitation positive.
E-: Excitation negative.
A-: Channel A Negative Input.
A+: Channel A positive Input.
B-: Channel B Negative Input.
B+: Channel B positive Input.

Digital Side:
GND: 0V / Ground Power Connection.
DT: Data IO Connection.
SCK: Serial Clock Input.
VCC: Power Input.

 Features:
-Recommended excitation voltage: 5-10V.
-Two selectable differential input channels.
-On-chip active low noise PGA with a selectable gain of 32, 64 and 128.
-On-chip power supply regulator for load-cell and ADC analog power supply.
-Selectable 10SPS or 80SPS output data rate.
-On-chip oscillator requiring no external component with optional external crystal.
-On-chip power-on-reset.
-Simple digital control and serial interface: pin-driven controls, no programming needed.
-Simultaneous 50 and 60Hz supply rejection.
SPECIFICATIONS:
Operating voltage (v)         5 ~ 10
Current consumption           normal operation < 1.5mA
Operating Temperature (°C)   -40 ~ +85
Shipment Weight               0.115 kg
Shipment Dimensions           10 × 8 × 6 cm

OVERVIEW:

-Output Sensitivity: 1.0 ± 0.1 mV / V.

-Two selectable differential input channels.

-On-chip active low noise PGA with the selectable gain of 32, 64 and 128.

-On-chip oscillator requiring no external component with optional external crystal.

-On-chip power-on-reset.

-Measurement Resolution: 24 bit.

-₹ 120.00 (inc GST)

-₹ 101.69 (+18% GST extra)

PACKAGE INCLUDES:

1 PCS x Hx711 Dual Channel 24 Bit Precision A D Weight Pressure Sensor


/*SOURCE CODE TAKEN FROM BELOW LINK

//https://www.instructables.com/Arduino-Scale-With-5kg-Load-Cell-and-HX711-Amplifi/

 Example using the SparkFun HX711 breakout board with a scale

 By: Nathan Seidle

 SparkFun Electronics

 Date: November 19th, 2014

 License: This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license).


 This example demonstrates basic scale output. See the calibration sketch to get the calibration_factor for your

 specific load cell setup.


 This example code uses bogde's excellent library:"https://github.com/bogde/HX711"

 bogde's library is released under a GNU GENERAL PUBLIC LICENSE


 The HX711 does one thing well: read load cells. The breakout board is compatible with any wheat-stone bridge

 based load cell which should allow a user to measure everything from a few grams to tens of tons.

 Arduino pin 2 -> HX711 CLK

 3 -> DAT

 5V -> VCC

 GND -> GND


 The HX711 board can be powered from 2.7V to 5V so the Arduino 5V power should be fine.


*/


#include "HX711.h"


#define calibration_factor -7050.0 //This value is obtained using the SparkFun_HX711_Calibration sketch


#define LOADCELL_DOUT_PIN  3

#define LOADCELL_SCK_PIN  2


HX711 scale;


void setup() {

  Serial.begin(9600);

  Serial.println("HX711 scale demo");


  scale.begin(LOADCELL_DOUT_PIN, LOADCELL_SCK_PIN);

  scale.set_scale(calibration_factor); //This value is obtained by using the SparkFun_HX711_Calibration sketch

  scale.tare(); //Assuming there is no weight on the scale at start up, reset the scale to 0


  Serial.println("Readings:");

}


void loop() {

  Serial.print("Reading: ");

  Serial.print(scale.get_units(), 1); //scale.get_units() returns a float

  Serial.print(" lbs"); //You can change this to kg but you'll need to refactor the calibration_factor

  Serial.println();

}

15 days

Write a review

Please login or register to review