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!!!")