Skip to content

Commit

Permalink
feat(config): tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Whth committed Jul 7, 2024
1 parent a2ba021 commit 8f67e4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/kazu/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, /, **data: Any):


class EdgeConfig(BaseModel):
lower_threshold: Tuple[float, float, float, float] = (1740, 1650, 1650, 1740)
lower_threshold: Tuple[float, float, float, float] = (1740, 1819, 1819, 1740)
upper_threshold: Tuple[float, float, float, float] = (2100, 2470, 2470, 2100)

fallback_speed: int = 2600
Expand All @@ -58,7 +58,7 @@ class EdgeConfig(BaseModel):
advance_speed: int = 2400
advance_duration: float = 0.35

turn_speed: int = 2900
turn_speed: int = 2800
full_turn_duration: float = 0.45
half_turn_duration: float = 0.225

Expand Down Expand Up @@ -258,7 +258,7 @@ class BackStageConfig(BaseModel):


class StageConfig(BaseModel):
gray_adc_off_stage_upper_threshold: int = 2850
gray_adc_off_stage_upper_threshold: int = 2730
gray_io_off_stage_case_value: int = 0


Expand Down

0 comments on commit 8f67e4d

Please sign in to comment.