Skip to content

Commit

Permalink
add params for minis v3 to 28W
Browse files Browse the repository at this point in the history
  • Loading branch information
antheas committed Jul 20, 2024
1 parent a412cad commit 7bcc807
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/adjustor/core/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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),
}

Expand Down

0 comments on commit 7bcc807

Please sign in to comment.