mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 01:21:20 -04:00
12 lines
510 B
JavaScript
12 lines
510 B
JavaScript
// Balance Board Configuration
|
|
// Purpose: Defines optional hardware enablement and development simulation.
|
|
// Scope: Contains configuration metadata only and never opens Bluetooth.
|
|
const { strictObject, boolean } = require('../../configuration/schemaHelpers');
|
|
|
|
module.exports = {
|
|
key: 'balanceBoard',
|
|
feature: true,
|
|
defaultValue: { enabled: false, simulate: false },
|
|
schema: strictObject({ enabled: boolean(), simulate: boolean() }, { title: 'Balance Board', required: ['enabled', 'simulate'] }),
|
|
};
|