Hx711Ad Serial Port Module Electronic Scale Weighing Sensor 24 Bit Precision Pressure Sensor
Rs. 287.00 Rs. 328.00
- Brand: http://en.aviaic.com/detail/730856.html
- Product Code: SEN-AMP-LOAD
- SKU -
- Availability: In Stock
- Price in reward points: 4
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATION:
-Two selectable differential input channels:
-On-chip active low noise PGA with selectable gain of 32, 64 and 128
-On-chip power supply regulator for load-cell and ADC analog power supply
-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
-Selectable 10SPS or 80SPS output data rate
-Simultaneous 50 and 60Hz supply rejection
-Current consumption including on-chip analog
power supply regulator:-
-normal operation < 1.5mA, power down < 1uA
-Operation supply voltage range: 2.6 ~ 5.5V
-Operation temperature range: -40 ~ +85℃
-16 pin SOP-16 packag
OVERVIEW:
-Embedded 24 bit A/D converter HX711
-Weight module with high precision
-Input differential voltage: 40mV
-Operating voltage: 5V
-Operating current: <10mA
-Bolt holes for easy installation
-Arduino compatible
PACKAGE INCLUDES:
1 PCS x Hx711Ad Serial Port Module Electronic Scale Weighing Sensor 24 Bit Precision Pressure Sensor
http://en.aviaic.com/detail/730856.html
//SOURCE CODE TAKEN FORM BELOW LINK
//https://github.com/bogde/HX711/blob/master/examples/HX711_basic_example/HX711_basic_example.ino
#include "HX711.h"
// HX711 circuit wiring
const int LOADCELL_DOUT_PIN = 2;
const int LOADCELL_SCK_PIN = 3;
HX711 scale;
void setup() {
Serial.begin(57600);
scale.begin(LOADCELL_DOUT_PIN, LOADCELL_SCK_PIN);
}
void loop() {
if (scale.is_ready()) {
long reading = scale.read();
Serial.print("HX711 reading: ");
Serial.println(reading);
} else {
Serial.println("HX711 not found.");
}
15 days