Cảm biến loadcell 50kg
Cảm biến loadcell 50kg
- Hàng trong kho: 30
- Nhà sản xuất: Nhập khẩu
- Khối lượng: 0.10kg
- Mã kho: 724
- Vị trí: 1F4
Số lượng đã bán: 15
Lượt xem: 2935
14.000đ
Giới thiệu:
Cảm biến loadcell50kg là sản phẩm chuyên sử dụng để đo khối lượng và để sử dụng để làm cân điện tử và rất nhiều ưng dụng liên quan trọng lượng ....vv
cam bien loadcell 50kg
Thông
số kỹ thuật:
- Tải Trọng : 50kg
- Kích thước : 34x34mm
- Điện Áp hoạt động : 5V
- Cảm biến dùng chung với module chuyển đổi ADC 24bit HX711
- Có thể kết hợp nhiều cảm biến để đo
Link thư viện HX711: https://github.com/bogde/HX711
Code tham khảo :
#include <HX711_ADC.h>
long t = 0;
//HX711 constructor (dout pin, sck pin)
HX711_ADC LoadCell_1(D8, D7); //HX711 1
void setup() {
Serial.begin(115200);
Serial.println("");
LoadCell_1.begin();
long stabilisingtime = 2000; // tare preciscion can be improved by adding a few seconds of stabilising time
byte loadcell_1_rdy = 0;
if (LoadCell_1.getTareTimeoutFlag()) {
Serial.println("Tare timeout, check MCU>HX711 no.1 wiring and pin designations");
}
LoadCell_1.setCalFactor(calValue_1); // user set calibration value (float)
}
void loop(){
LoadCell_1.update();
float a = LoadCell_1.getData();
Serial.print("Load_cell 1 output val: ");
Serial.print(a);
//receive from serial terminal
if (Serial.available() > 0) {
float i;
char inByte = Serial.read();
if (inByte == 't') {
LoadCell_1.tareNoDelay();
}
}
//check if last tare operation is complete
if (LoadCell_1.getTareStatus() == true) {
Serial.println("Tare load cell 1 complete");
}
}