mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-19 02:50:46 -04:00
9 lines
411 B
JavaScript
9 lines
411 B
JavaScript
// constants
|
|
// Purpose: Defines the constants module and the local helpers/components used in this file.
|
|
// Scope: Keeps behavior unchanged while isolating this concern into a clear, single-responsibility unit.
|
|
export const RESTART_DELAY_MS = 2000;
|
|
export const UNMUTE_RETRY_MS = 3000;
|
|
export const AUDIO_RETRY_MS = 3000;
|
|
export const BRUSH_CURRENT_THRESHOLD_MA = 40;
|
|
export const DUCK_RELEASE_FADE_MS = 1000;
|