GY-63_MS5611/libraries/HX711/examples/HX_plotter/HX_plotter.ino

50 lines
884 B
Arduino
Raw Normal View History

2021-01-29 06:31:58 -05:00
//
// FILE: HX_plotter.ino
// AUTHOR: Rob Tillaart
// VERSION: 0.1.0
// PURPOSE: HX711 demo
// URL: https://github.com/RobTillaart/HX711
//
// HISTORY:
// 0.1.0 2020-06-15 initial version
//
#include "HX711.h"
HX711 scale;
uint8_t dataPin = 6;
uint8_t clockPin = 7;
uint32_t start, stop;
volatile float f;
void setup()
{
Serial.begin(115200);
// Serial.println(__FILE__);
// Serial.print("LIBRARY VERSION: ");
// Serial.println(HX711_LIB_VERSION);
// Serial.println();
scale.begin(dataPin, clockPin);
// TODO find a nice solution for this calibration..
// loadcell factor 20 KG
// scale.set_scale(127.15);
// loadcell factor 5 KG
scale.set_scale(420.0983);
// reset the scale to zero = 0
scale.tare();
}
void loop()
{
// continuous scale 4x per second
f = scale.get_units(5);
Serial.println(f);
delay(250);
}
// -- END OF FILE --