Wish List 0

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 - SE-2908
  • 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
● AB twin channel layout, every channel has  working modes to pick from, to satisfy the desires of different users. (For details, see the module preparation manual, there may be a link above)

● Default baud price:9600bps Parity: None Stop bits: 1-bit    protocol overall duration: 10 bytes

● Volume: duration 3.3cm* width 2cm* peak 0.3cm.

● The new addition of 47uf black large capacitor tantalum capacitors, the stability is considerably improved. 

● Built-in unmarried-chip microcomputer, peeling, correction and different N command manipulate, effective. Save on the underlying development time .

● The HX711 on-chip voltage regulator circuit can immediately deliver strength to the outside stress sensor.

●Simple serial conversation, TTL to USB connection to the pc for records transmission , very convenient.

● It can synchronously suppress power interference of 50Hz and 60Hz.

●The strength intake is very small, and the everyday operating cutting-edge is 12mA.

● Operating voltage range: DC four.7~five.5V.

● Operating temperature variety: -20  °C  ~ +85  °C

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


//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

Write a review

Please login or register to review