[chronojump/FS-TFT-Menu] RMSSD and cvRMSSD only shown if necessary
- From: Xavier Padullés <xpadulles src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [chronojump/FS-TFT-Menu] RMSSD and cvRMSSD only shown if necessary
- Date: Fri, 29 Apr 2022 12:46:09 +0000 (UTC)
commit 4b88850ca3bb58d1b328e376ecb820a4530149a1
Author: Xavier Padullés <testing chronojump org>
Date: Fri Apr 29 14:45:37 2022 +0200
RMSSD and cvRMSSD only shown if necessary
arduino/ForceSensorTFT/ForceSensorTFT.ino | 36 +++++++++++++++----------------
1 file changed, 17 insertions(+), 19 deletions(-)
---
diff --git a/arduino/ForceSensorTFT/ForceSensorTFT.ino b/arduino/ForceSensorTFT/ForceSensorTFT.ino
index 2c986cfb2..4f411245c 100644
--- a/arduino/ForceSensorTFT/ForceSensorTFT.ino
+++ b/arduino/ForceSensorTFT/ForceSensorTFT.ino
@@ -1148,8 +1148,8 @@ void capture(void)
}
}
}
-// Serial.print(totalTime); Serial.print(";");
-// Serial.println(measured, 2); //scale.get_units() returns a float
+ // Serial.print(totalTime); Serial.print(";");
+ // Serial.println(measured, 2); //scale.get_units() returns a float
plotBuffer[n] = measured;
}
yBuffer[(int)xGraph] = 0;
@@ -1712,9 +1712,6 @@ void showResults() {
tft.setCursor(36, 128);
tft.print("100");
printTftFormat(maxRFD100, 118, 120, textSize, 0);
- Serial.print("maxRFD100: ");
- Serial.println(maxRFD100);
-
tft.setTextSize(2);
tft.setCursor(170, 120);
@@ -1723,21 +1720,22 @@ void showResults() {
tft.setCursor(206, 128);
tft.print("200");
printTftFormat(maxRFD200, 298, 120, textSize, 0);
- Serial.print("maxRFD200: ");
- Serial.println(maxRFD200);
-
- tft.setCursor(0, 160);
- tft.print("RMSSD");
- printTftFormat(RMSSD, 100, 160, textSize, 1);
-
- tft.setTextSize(2);
- tft.setCursor(170, 160);
- tft.print("CV");
- tft.setTextSize(1);
- tft.setCursor(194, 168);
- tft.print("RMSSD");
- printTftFormat(RMSSD, 280, 160, textSize, 1);
+ if (RMSSD != 0)
+ {
+ tft.setCursor(0, 160);
+ tft.print("RMSSD");
+ printTftFormat(RMSSD, 100, 160, textSize, 1);
+
+
+ tft.setTextSize(2);
+ tft.setCursor(170, 160);
+ tft.print("CV");
+ tft.setTextSize(1);
+ tft.setCursor(194, 168);
+ tft.print("RMSSD");
+ printTftFormat(RMSSD, 280, 160, textSize, 1);
+ }
//Red button exits results
while (!redButtonState) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]