From 0ae167edd6355617d24a11d23739b8470e260829 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Mon, 19 Sep 2022 15:14:35 +0200 Subject: [PATCH] :sparkles: --- calibrate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calibrate.py b/calibrate.py index 64bf0bc..47d93b2 100644 --- a/calibrate.py +++ b/calibrate.py @@ -48,7 +48,7 @@ def main(): while not all(calibrated): for i, function in enumerate(tests): if not calibrated[i]: - wheels = function(arlo, *values) + wheels = function(arlo, *values[i]) fraction = max(wheels)/min(wheels) if fraction < THRESHOLD: calibrated[i] = True