/**
*
* HX711 library for Arduino - example file
* https://github.com/bogde/HX711
*
* MIT License
* (c) 2018 Bogdan Necula
*
*ひずみゲージ(L3M2R)、複数ゲージ用に修正、2024
**/
#include "HX711.h"
// HX711 circuit wiring
const int LOADCELL_DOUT_PIN_2 = 2;
const int LOADCELL_SCK_PIN_3 = 3;
const int LOADCELL_DOUT_PIN_4 = 4;
const int LOADCELL_SCK_PIN_5 = 5;
const int LOADCELL_DOUT_PIN_6 = 6;
const int LOADCELL_SCK_PIN_7 = 7;
const int LOADCELL_DOUT_PIN_8 = 8;
const int LOADCELL_SCK_PIN_9 = 9;
HX711 scale1;
HX711 scale2;
HX711 scale3;
HX711 scale4;
void setup() {
Serial.begin(38400);
Serial.println("HX711 Demo");
Serial.println("Initializing the scale");
// Initialize library with data output pin, clock input pin and gain factor.
// Channel selection is made by passing the appropriate gain:
// - With a gain factor of 64 or 128, channel A is selected
// - With a gain factor of 32, channel B is selected
// By omitting the gain factor parameter, the library
// default "128" (Channel A) is used here.
scale1.begin(LOADCELL_DOUT_PIN_2, LOADCELL_SCK_PIN_3);
scale2.begin(LOADCELL_DOUT_PIN_4, LOADCELL_SCK_PIN_5);
scale3.begin(LOADCELL_DOUT_PIN_6, LOADCELL_SCK_PIN_7);
scale4.begin(LOADCELL_DOUT_PIN_8, LOADCELL_SCK_PIN_9);
Serial.println("Before setting up the scale:");
Serial.println("read:");
Serial.println(scale1.read()); // print a raw reading from the ADC
Serial.println(scale2.read());
Serial.println(scale3.read());
Serial.println(scale4.read());
Serial.println("read average:");
Serial.println(scale1.read_average(100)); // print the average of 20 readings from the ADC
Serial.println(scale2.read_average(100));
Serial.println(scale3.read_average(100));
Serial.println(scale4.read_average(100));
Serial.println("get value:");
Serial.println(scale1.get_value(20)); // print the average of 5 readings from the ADC minus the tare weight (not set yet)
Serial.println(scale2.get_value(20));
Serial.println(scale3.get_value(20));
Serial.println(scale4.get_value(20));
Serial.println("get units:");
Serial.println(scale1.get_units(20), 1); // print the average of 5 readings from the ADC minus tare weight (not set) divided
Serial.println(scale2.get_units(20), 1);
Serial.println(scale3.get_units(20), 1);
Serial.println(scale4.get_units(20), 1);
scale1.set_scale(2280.f); // this value is obtained by calibrating the scale with known weights; see the README for details
scale1.tare(); // reset the scale to 0
scale2.set_scale(2280.f);
scale2.tare();
scale3.set_scale(2280.f);
scale3.tare();
scale4.set_scale(2280.f);
scale4.tare();
Serial.println("After setting up the scale:");
Serial.println("read:");
Serial.println(scale1.read()); // print a raw reading from the ADC
Serial.println(scale2.read());
Serial.println(scale3.read());
Serial.println(scale4.read());
Serial.println("read average:");
Serial.println(scale1.read_average(100)); // print the average of 20 readings from the ADC
Serial.println(scale2.read_average(100));
Serial.println(scale3.read_average(100));
Serial.println(scale4.read_average(100));
Serial.println("get value:");
Serial.println(scale1.get_value(20)); // print the average of 5 readings from the ADC minus the tare weight, set with tare()
Serial.println(scale2.get_value(20));
Serial.println(scale3.get_value(20));
Serial.println(scale4.get_value(20));
Serial.println("get units:");
Serial.println(scale1.get_units(20), 1); // print the average of 5 readings from the ADC minus tare weight, divided
Serial.println(scale2.get_units(20), 1);
Serial.println(scale3.get_units(20), 1);
Serial.println(scale4.get_units(20), 1);
Serial.println("Readings(average(10)):");
}
void loop() {
// Serial.print("one reading:\t");
// Serial.print(scale.get_units(), 1);
// Serial.print("\t| average:\t");
Serial.print(scale1.get_units(10), 1);
Serial.print(",");
Serial.print(scale2.get_units(10), 1);
Serial.print(",");
Serial.print(scale3.get_units(10), 1);
Serial.print(",");
Serial.print(scale4.get_units(10), 1);
Serial.println();
}
コメント