Auto commit Thu Mar 19 08:01:01 PM CDT 2026

This commit is contained in:
Tretzi
2026-03-19 20:01:01 -05:00
parent c7518b7e9c
commit 3846f97fb2
17 changed files with 497 additions and 156 deletions

View File

@@ -0,0 +1,17 @@
package com.mindmachine.mvp.session
object ParameterRanges {
const val FLASH_INTERVAL_MS_MIN = 50f
const val FLASH_INTERVAL_MS_MAX = 2000f
// New per spec.
const val BLANK_INTERVAL_MS_MIN = 50f
const val BLANK_INTERVAL_MS_MAX = 2000f
// Spec ranges.
const val CARRIER_HZ_MIN = 200f
const val CARRIER_HZ_MAX = 1200f
const val BINAURAL_HZ_MIN = 0.5f
const val BINAURAL_HZ_MAX = 30f
}