컨텐츠 메뉴
● 하중 셀 이해
● 로드 셀 배선
● 구경 측정
● 설정 테스트
● 결론
● FAQ
>> 3. 하나의 Arduino와 함께 여러로드 셀을 사용할 수 있습니까?
>> 4.로드 셀에 대한 일반적인 응용 분야는 무엇입니까?
>> 5. 부하 셀에서 정확한 판독 값을 어떻게 보장합니까?
● 인용 :
인터페이스 a Arduino가있는 100kg 장력 하중 셀은 무게를 측정하거나 정확하게 측정 할 수있는 간단한 프로세스입니다. 이 안내서에서는 Arduino와 함께로드 셀을 설정하는 데 필요한 필요한 구성 요소, 배선, 코딩 및 교정 단계를 통과합니다.
로드 셀은 힘을 전기 신호로 변환하는 트랜스 듀서 유형입니다. 계량 응용 분야에 사용되는 가장 일반적인 유형은 스트레인 게이지 부하 셀이며, 이는 스트레인 게이지가 부착 된 금속 구조로 구성됩니다. 하중이 적용되면 구조가 약간 변형되어 스트레인 게이지에서 저항이 변화합니다. 그런 다음이 변경은 Arduino와 같은 마이크로 컨트롤러에 의해 읽을 수있는 전기 신호로 변환됩니다.
Arduino와 100kg 장력 하중 셀을 인터페이스하려면 다음 구성 요소가 필요합니다.
-100kg로드 셀 : 장력을 측정하는 센서입니다.
-HX711 앰프 모듈 :이 모듈은로드 셀의 작은 신호를 증폭시킵니다.
-Arduino Board : Arduino Uno 또는 Nano와 같은 모든 모델이 작동합니다.
- 빵 보드 및 점퍼 와이어 : 연결을위한.
- 전원 공급 장치 : 일반적으로 HX711 및 Arduino의 경우 5V.
배선 전에로드 셀에서 와이어의 일반적인 색상 코딩을 이해하는 것이 필수적입니다.
- 빨간색 와이어 : 여기 (+)
- 블랙 와이어 : 여기 (-)
- 흰색 와이어 : 신호 (+)
- 녹색 와이어 : 신호 (-)
1. 하중 셀의 빨간색 와이어를 HX711 모듈의 E+ 터미널에 연결하십시오.
2. 하중 셀의 검은 와이어를 HX711 모듈의 E- 터미널에 연결하십시오.
3. 하중 셀의 흰색 와이어를 HX711 모듈의 A+ 터미널에 연결하십시오.
4. 하중 셀의 녹색 와이어를 HX711 모듈의 A- 터미널에 연결하십시오.
1. Arduino에서 HX711의 VCC 핀을 5V로 연결하십시오.
2. Arduino에서 HX711의 GND 핀을 GND에 연결하십시오.
3. Arduino의 HX711의 DT 핀을 Digital PIN 2에 연결하십시오.
4. Arduino의 HX711의 SCK 핀을 Digital PIN 3에 연결하십시오.
로드 셀의 데이터를 읽으려면 HX711에 적절한 라이브러리를 사용하여 간단한 프로그램을 작성해야합니다. 먼저 Arduino IDE 라이브러리 관리자에서 HX711 라이브러리를 설치하십시오.
기본 코드 스 니펫은 다음과 같습니다.
#include 'hx711.h '
HX711 스케일;
const int loadcell_dout_pin = 2; // 데이터 핀
const int loadcell_sck_pin = 3; // 시계 핀
void setup () {
Serial.begin (9600);
scale.begin (loadcell_dout_pin, loadcell_sck_pin);
scale.set_scale (); // 스케일 팩터를 설정합니다
scale.tare (); // 스케일을 0으로 재설정합니다
}
void loop () {
serial.print ( 'weight : ');
serial.print (scale.get_units (10), 1); // 평균 10 개 이상의 판독 값
serial.println ( 'kg ');
지연 (1000);
}
정확한 무게 측정에 교정이 중요합니다. 로드 셀을 보정하려면 :
1.로드 셀 (예 : 1kg)에 알려진 무게를 놓습니다.
2. 정확한 판독 값을 얻을 때까지 코드에서 보정 요소를 조정하십시오.
교정 계수를 다음과 같이 설정할 수 있습니다.
float calibration_factor = -7050; // 예제 값; 교정에 따라 조정하십시오
scale.set_scale (calibration_factor);
모든 것이 연결되고 보정되면 :
1. 코드를 Arduino에 업로드하십시오.
2. IDE에서 직렬 모니터를 엽니 다 (보드 속도를 9600으로 설정).
3. 부하 셀에 무게를 놓고 판독 값을 관찰하십시오.
100kg 장력로드 셀을 인터페이스하는 동안 문제가 발생하면 문제 해결 팁을 고려하십시오.
- 연결 확인 : 배선 지침에 따라 모든 와이어가 단단히 연결되어 있는지 확인하십시오.
- 전원 공급 장치 : Arduino와 HX711이 모두 올바르게 전원을 공급해야합니다.
- 교정 계수 : 판독 값이 부정확 한 경우 교정 계수를 다시 확인하고 그에 따라 조정하십시오.
- 소음 및 변동 : 소음을 최소화하기 위해 안정적인 전원 공급 장치와 적절한 접지를 보장합니다.
Arduino와 100kg 장력 하중 셀을 인터페이스하면 정확한 체중 측정 시스템을 만들 수있는 훌륭한 기회가 제공됩니다. 이 안내서를 따르면 프로젝트를 성공적으로 설정하고 정확하게 측정을 시작할 수 있습니다.
로드 셀은 힘 또는 중량을 전기 신호로 변환하는 트랜스 듀서입니다.
교정하려면 알려진 무게를 적용하고 판독 값이 예상 값과 일치 할 때까지 코드에서 보정 요소를 조정하십시오.
예,하지만 각 모듈은 한 번에 하나씩 만 처리 할 수 있으므로 각로드 셀에 대해 별도의 HX711 모듈이 필요합니다.
로드 셀은 계량 저울, 산업 자동화, 힘 측정 장치 등과 같은 다양한 응용 분야에서 사용됩니다.
적절한 접지 기술을 사용하여로드 셀을 정기적으로 교정하고 기계적 안정성을 확인하고 전기 소음을 최소화하십시오.
[1] https://sharpweighingscale.com/how-to-interface-a-100kg-load-cell-with-arduino-for-precision-weighing/
[2] https://www.instructables.com/arduino-bathroom-scale-with-50-kg-load-cells-and-h/
[3] https://sharpweighingscale.com/a-complete-guide-to-using-a-100kg-load-cell-with-arduino/
[4] https://www.fibossensor.com/how-tonterface-load-cell-with-arduino.html
[5] https://www.fibossensor.com/how-to-use-a-load-cell-with-arduino.html
[6] https://sharpweighingscale.com/the-ultimate-guide-to-using-a-100kg-load-cell-with-arduino/
[7] https://www.youtube.com/watch?v=sxzoagf1koo
[8] https://randomnerdtutorials.com/arduino-load-cell-hx711/
[9] https://circuitdigest.com/microcontroller-projects/arduino-weight-measurement-using-load-cell
[10] https://justdoelectronics.com/load-cell-hx711-module-with-arduino-nano/
[11] https://www.youtube.com/watch?v=sxzoagf1koo
[12] https://randomnerdtutorials.com/arduino-load-cell-hx711/
[13] https://www.instructables.com/how-to-interface-hx711-balance-module-with-load-ce/
[14] https://www.researchgate.net/figure/diagram-for-load-cell_fig3_327471393
[15] https://forum.arduino.cc/t/arduino-and-hx711/660867
[16] https://community.robotshop.com/forum/t/interfacing-a-load-cell-with-an-arduino-board-bobotshop-community/31034?page=9
[17] https://www.instructables.com/arduino-bathroom-scale-with-50-kg-load-cells-and-h/
[18] https://www.youtube.com/watch?v=liuf2egmioa
[19] https://www.instructables.com/arduino-scale-with-5kg-load-cell-and-hx711-mplifi/
[20] https://www.youtube.com/watch?v=gnencd20vk4
[21] https://learn.sparkfun.com/tutorials/load-cell-amplifier-hx711-breakout-hookup-guide/all
[22] https://www.tinytronics.nl/en/sensors/weight-pressure-force/load-cells/load-cell-100kg
[23] https://randomnerdtutorials.com/esp8266-load-cell-hx711/
[24] https://forum.arduino.cc/t/load-cell-weight-questions/1121932
[25] https://forum.arduino.cc/t/4-wire-load-cell-wiring-hx711/1045547/7
[26] https://sharpweighingscale.com/the-ultimate-guide-to-using-a-100kg-load-cell-with-arduino/
[27] https://electropeak.com/learn/interfacing-hx711-load-cell-mplifier-module-with-arduino/
[28] https://forum.arduino.cc/t/help-with-load-cell-wiring/1137734
[29] https://www.reddit.com/r/arduino/comments/133sxk6/load_cell_weight_questions/
[30] https://electronics.stackexchange.com/questions/tagged/load-cell
[31] https://forum.arduino.cc/t/questions-about-load-cells/373121
[32] https://www.reddit.com/r/arduino/comments/1c4qy1c/load_cell_questions/
[33] https://electronics.stackexchange.com/questions/38688/how-to-connect-load-cell-to-arduino
[34] https://probots.co.in/industrial-grade-load-cell-type-100-kg-weight-sensor-s-bar.html
[35] https://www.fibossensor.com/how-tonterface-load-cell-with-arduino.html
[36] https://www.robotics.org.za/yzc-516-100kg
[37] https://forum.arduino.cc/t/load-cell-help/76715
콘텐츠가 비어 있습니다!
연락처 :
전화 : +86 18921011531
이메일 : nickinfo@fibos.cn
추가 : 12-1 Xinhui Road, Fengshu Industrial Park, Changzhou, China