From 7bcc80735f73418c82ee065cac2bd5f0ea8ae1f5 Mon Sep 17 00:00:00 2001 From: antheas Date: Sat, 20 Jul 2024 21:51:30 +0300 Subject: [PATCH] add params for minis v3 to 28W --- src/adjustor/core/const.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/adjustor/core/const.py b/src/adjustor/core/const.py index 72b4105..c6eefa3 100644 --- a/src/adjustor/core/const.py +++ b/src/adjustor/core/const.py @@ -41,7 +41,7 @@ "temp_target": D(60, 70, 85, 90, 100), } -DEV_PARAMS_NEO: dict[str, DeviceParams] = { +DEV_PARAMS_28W: dict[str, DeviceParams] = { "stapm_limit": D(0, 4, 15, 28, 35), "skin_limit": D(0, 4, 15, 28, 35), "slow_limit": D(0, 4, 20, 32, 37), @@ -58,7 +58,8 @@ DEV_PARAMS_LEGO = DEV_PARAMS_7040 DEV_DATA: dict[str, tuple[dict[str, DeviceParams], dict[str, AlibParams], bool]] = { - "NEO-01": (DEV_PARAMS_NEO, ALIB_PARAMS_7040, False), + "NEO-01": (DEV_PARAMS_28W, ALIB_PARAMS_7040, False), + "V3": (DEV_PARAMS_28W, ALIB_PARAMS_8040, False), "83E1": (DEV_PARAMS_LEGO, ALIB_PARAMS_7040, False), }