Detects when user changes same config setting 3+ times within 24 hours. Shows non-intrusive prompt offering help with guided calibration flow. Guided calibration features: - Test for false positives (walk around room) - Test for missed motion (sit still) - Suggest optimal value based on diurnal baseline SNR and link health - Apply suggested value button Files: - dashboard/js/proactive.js: Complete implementation with localStorage tracking Acceptance: - Help prompt fires after 3+ changes in 24h - Calibration flow tests both directions - Suggests value based on system data - Apply button works
14 lines
618 B
JavaScript
14 lines
618 B
JavaScript
'use strict';
|
|
|
|
module.exports.ArgumentParser = require('./argument_parser.js');
|
|
module.exports.Namespace = require('./namespace');
|
|
module.exports.Action = require('./action');
|
|
module.exports.HelpFormatter = require('./help/formatter.js');
|
|
module.exports.Const = require('./const.js');
|
|
|
|
module.exports.ArgumentDefaultsHelpFormatter =
|
|
require('./help/added_formatters.js').ArgumentDefaultsHelpFormatter;
|
|
module.exports.RawDescriptionHelpFormatter =
|
|
require('./help/added_formatters.js').RawDescriptionHelpFormatter;
|
|
module.exports.RawTextHelpFormatter =
|
|
require('./help/added_formatters.js').RawTextHelpFormatter;
|