// 이프로그램은 잘 동작합니다. 100ms이상으로 샘플링하세요
// V+, V-는 GPIO %, 18번으로 연결되어야 하며 다른데 연결되어 있으면 PIN번호를 바꾸세요!
#include "HX711.h"
// HX711 circuit wiring
const int LOADCELL_DOUT_PIN = 5;
const int LOADCELL_SCK_PIN = 18;
//Reading voltage = -0.5 ~ + 0.5 Volt
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.");
}
delay(100);
}
여기서 delay 값을 100이하로 하면 데이터를 많이 가져 오지 못하는 현상이 발생하므로
너무빨리 가져 오려고 delay값을 100이하로 줄이지 마세요