mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-15 17:12:59 -04:00
13 lines
448 B
JavaScript
13 lines
448 B
JavaScript
// Idle Service Constants
|
|
// Purpose: Defines idle timing and command constants used by idle automation workflows.
|
|
// Scope: Centralizes immutable configuration for trigger windows and rover command payloads.
|
|
const IDLE_TIMEOUT_MS = 2 * 60 * 1000;
|
|
const HEADLIGHT_DISABLE_ACTION = 'off';
|
|
const DOCK_COMMAND_BASE64 = Buffer.from([143]).toString('base64');
|
|
|
|
module.exports = {
|
|
IDLE_TIMEOUT_MS,
|
|
HEADLIGHT_DISABLE_ACTION,
|
|
DOCK_COMMAND_BASE64,
|
|
};
|