From 979278d43798110e69cb4db7c323e942b55b0b58 Mon Sep 17 00:00:00 2001 From: Atharv Nagavarapu <30nagava@elmbrookstudents.org> Date: Wed, 17 Dec 2025 13:29:57 +0000 Subject: [PATCH] Update diagnostics/MotorDiagnostics.py --- diagnostics/MotorDiagnostics.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/diagnostics/MotorDiagnostics.py b/diagnostics/MotorDiagnostics.py index e8299c2..8501f3d 100644 --- a/diagnostics/MotorDiagnostics.py +++ b/diagnostics/MotorDiagnostics.py @@ -131,11 +131,11 @@ class MotorDiagnostics: print("\n FINAL MOTOR STATISTICS") final = (test180 + test540 + test1000) / 3 print("Final motor health score:", str(final) + "%") - if final < 80: + if final < 65: print("Your motor is in need of attention. Make sure to clean it regularly and charge the Prime Hub.") - elif final < 90: + elif final < 85: print("Your motor is in OK condition. Make sure to clean it regularly and charge the Prime Hub.") - elif final < 97: + elif final < 95: print("Your motor is in great condition!") else: print("Your motor is in AMAZING condition!!!")