File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ function initSensitivity() {
4848 const options = [
4949 { label : 'High Sensitivity' , value : presets . HIGH } ,
5050 { label : 'Medium Sensitivity' , value : presets . MEDIUM } ,
51- { label : 'Low Sensitivity' , value : presets . LOW }
51+ { label : 'Low Sensitivity' , value : presets . LOW } ,
52+ { label : 'Very Low Sensitivity' , value : presets . VERY_LOW } ,
53+ { label : 'Ultra Low Sensitivity' , value : presets . ULTRA_LOW }
5254 ] ;
5355
5456 sensitivitySelect . innerHTML = '' ;
Original file line number Diff line number Diff line change 55const SENSITIVITY_PRESETS = {
66 HIGH : 70 , // Reacts to quiet sounds
77 MEDIUM : 140 , // Default
8- LOW : 210 // Requires loud sounds
8+ LOW : 210 , // Requires loud sounds
9+ VERY_LOW : 280 ,
10+ ULTRA_LOW : 350
911} ;
1012
1113const YELLOW_POINT_RATIO = 60 / 140 ; // Ratio of yellow point to max sensitivity
You can’t perform that action at this time.
0 commit comments