
- HX711 로드셀 무게 측정 센서 모듈 with 로드셀 C50-1

이 제품은 로드셀의 미세한 신호를 증폭하고 디지털 값으로 변환하는 HX711 앰프 모듈과 1kg 로드셀(무게 센서)이 함께 구성된 무게 측정 센서이다.
24비트의 높은 분해능을 통해 정밀한 무게 측정이 가능하며,
아두이노 라이브러리를 지원하여 전자저울이나 산업용 무게 측정 장치 등에 쉽게 적용할 수 있다.



- 고정밀 무게 측정: 24비트 고해상도 A/D 변환기(HX711)를 탑재하여 로드셀의 신호를 정밀하게 측정한다.
- 일체형 모듈 구성: 로드셀 연결에 필요한 휘트스톤 브리지 회로가 내장되어 있으며, 1kg 측정용 로드셀이 함께 제공된다.
- 간단한 2-Wire 인터페이스: 클럭(Clock)과 데이터(Data) 2개의 선만으로 마이크로컨트롤러와 통신할 수 있다.
- 듀얼 채널 입력: 2채널의 로드셀 입력을 지원하여 여러 개의 센서를 동시에 연결할 수 있다.
- 크기: 29mm X 17mm X 4mm
- 모듈 동작 전압: DC 4.8V ~ 5.5 V
- 동작 온도: -20도 ~ 85도

- PCB크기 29mm X 17mm X 4mm

- 로드셀 센서 1KG * 1pcs
- HX711 로드셀 무게측정 C50 * 1pcs

|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#include "HX711.h"
#define DOUT 3 // 데이터 핀 3번핀
#define CLK 2 // 클럭 핀 2번핀
HX711 scale(DOUT, CLK);
float calibration_factor = -7050; // 로드셀 종류나 상황에 따라 적당한 값으로 시작
void setup() {
Serial.begin(9600);
Serial.println("HX711 calibration sketch");
Serial.println("Remove all weight from scale");
Serial.println("After readings begin, place known weight on scale");
Serial.println("Press + or a to increase calibration factor");
Serial.println("Press - or z to decrease calibration factor");
scale.set_scale();
scale.tare(); // Reset the scale to 0
long zero_factor = scale.read_average(); // Get a baseline reading
Serial.print("Zero factor: ");
Serial.println(zero_factor);
}
void loop() {
scale.set_scale(calibration_factor); // Adjust to this calibration factor
Serial.print("Reading: ");
Serial.print(scale.get_units(), 1);
Serial.print(" kg"); // Change this to kg and re-adjust the calibration factor-
Serial.print(" calibration_factor: "); if you follow SI units like a sane person
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;
}
}
| cs |

| 품명/모델명 | [상세설명참조] / [상세설명참조] | ||
|---|---|---|---|
| 인증유형/인증번호 | 해당없음 | ||
| 정격전압/소비전력 | [상세설명참조] / [상세설명참조] | ||
| 제조년월 | [상세설명참조] | ||
| 제조자/수입품여부/수입자 | [상세설명참조] | ||
| 제조국 | [상세설명참조] | ||
| 크기/무게 | [상세설명참조] / [상세설명참조] | ||
| 주요 사양 | [상세설명참조] | ||
| 품질보증기준 | [상세설명참조] | ||
| A/S 책임자와 전화번호 | [상세설명참조] | ||
상품이 장바구니에 담겼습니다.
바로 확인하시겠습니까?