-
-
-
Tổng tiền thanh toán:
-
Bộ Cảm Biến Cân Nặng Loadcell 20kg + Khung Bàn Cân Mica thường được sử dụng để làm cân điện tử , kết hợp với vi điều khiển để làm mô hình phân loại sản phẩm, mô hình máy tính tiền tự động…, Cảm biến có thể đo khối lượng của vật thể tối đa 20kg, cảm biến làm bằng kim loại với thiết kế nhỏ gọn, dễ dàng lắp đặt, độ chính xác cao. Sản phẩm tích hợp module chuyển đổi HX711 giúp dễ dàng giao tiếp với vi điều khiển. Khung bàn cân mica nhỏ gọn, trọng lượng nhẹ, dễ dàng sử dụng và mang theo.
Module chuyển đổi HX711
Cảm biến loadcell 20kg
Khung bàn cân Mica
Dây cắm testboard
Lưu ý: sản phẩm chưa lắp ráp sẵn
Tải trọng: max 20kg
Rated Output ( mV/V): 1.0 +- 0.15
Độ lệch tuyến tính (%): 0.05
Creep (5min) %: 0.1
Ảnh hưởng nhiệt độ tới độ nhạy %RO/ độ C: 0.003
Ảnh hưởng nhiệt độ tới điểm không %RO/ độ C: 0.02
Độ cân bằng điểm không %RO: +-0.1
Trở kháng đầu vào (Ω ): 1066 +- 20
Trở kháng ngõ ra (Ω ): 1000 +- 20
Trở kháng cách li (MΩ) 50V: 2000
Điện áp hoạt động: 5V
Nhiệt độ hoạt động: -20 ~ 65 độ C
Chất liệu cảm biến: nhôm
Kích thước bàn cân:
Đường kính: 100mm
Chiều cao: 35mm
Trọng lượng trọn bộ sản phẩm: 88g
#include "HX711.h"
#define DOUT 2
#define CLK 3
HX711 scale(DOUT, CLK);
float calibration_factor = -103525;
//=============================================================================================
// SETUP
//=============================================================================================
void setup() {
Serial.begin(9600);
Serial.println("HX711 Calibration");
Serial.println("Remove all weight from scale");
Serial.println("After readings begin, place known weight on scale");
Serial.println("Press a,s,d,f to increase calibration factor by 10,100,1000,10000 respectively");
Serial.println("Press z,x,c,v to decrease calibration factor by 10,100,1000,10000 respectively");
Serial.println("Press t for tare");
scale.set_scale();
scale.tare(); //Reset the scale to 0
long zero_factor = scale.read_average(); //Get a baseline reading
Serial.print("Zero factor: "); //This can be used to remove the need to tare the scale. Useful in permanent scale projects.
Serial.println(zero_factor);
}
//=============================================================================================
// LOOP
//=============================================================================================
void loop() {
scale.set_scale(calibration_factor); //Adjust to this calibration factor
Serial.print("Reading: ");
Serial.print(scale.get_units(), 3);
Serial.print(" kg"); //Change this to kg and re-adjust the calibration factor if you follow SI units like a sane person
Serial.print(" calibration_factor: ");
Serial.print(calibration_factor);
Serial.println();
if(Serial.available())
{
char temp = Serial.read();
if(temp == '+' || temp == 'a')
calibration_factor += 10;
else if(temp == '-' || temp == 'z')
calibration_factor -= 10;
else if(temp == 's')
calibration_factor += 100;
else if(temp == 'x')
calibration_factor -= 100;
else if(temp == 'd')
calibration_factor += 1000;
else if(temp == 'c')
calibration_factor -= 1000;
else if(temp == 'f')
calibration_factor += 10000;
else if(temp == 'v')
calibration_factor -= 10000;
else if(temp == 't')
scale.tare(); //Reset the scale to zero
}
}
Đã có tài khoản đăng nhập Tại đây