GY-63_MS5611/libraries/weight/examples/weightTest/weightTest.ino

65 lines
1.0 KiB
Arduino
Raw Normal View History

2021-01-29 06:31:58 -05:00
//
// FILE: weightTest.ino
// AUTHOR: Rob Tillaart
// PURPOSE: demo
// DATE: 2020-06-17
2021-12-29 09:51:56 -05:00
2021-01-29 06:31:58 -05:00
#include "weight.h"
const float accuracy = 0.0001;
2021-12-29 09:51:56 -05:00
2021-01-29 06:31:58 -05:00
void setup()
{
Serial.begin(115200);
Serial.println(__FILE__);
}
2021-12-29 09:51:56 -05:00
2021-01-29 06:31:58 -05:00
void loop()
{
float stone, lbs, ounce, kilo, val, kg;
stone = random(20) * 0.12345;
lbs = random(20) * 3.46281;
ounce = random(20) * 6.3723;
kilo = random(100) * 1.3579;
Serial.print(millis());
val = kilo2lbs(lbs2kilo(lbs));
if (abs(val - lbs) > accuracy)
{
Serial.print("\tPOUND: ");
Serial.print(lbs);
}
val = gram2ounce(ounce2gram(ounce));
if (abs(val - ounce) > accuracy)
{
Serial.print("\tOUNCE: ");
Serial.print(ounce);
}
val = kilo2stone(stone2kilo(stone));
if (abs(val - stone) > accuracy)
{
Serial.print("\tSTONE: ");
Serial.print(stone);
}
metric2US(kilo, stone, lbs, ounce);
kg = US2metric(stone, lbs, ounce);
if (abs(kilo - kg) > accuracy)
{
Serial.print("\tUS2ME: ");
Serial.print(kilo);
}
Serial.println("\t.");
2021-12-29 09:51:56 -05:00
}
2021-01-29 06:31:58 -05:00
2021-12-29 09:51:56 -05:00
// -- END OF FILE --