You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
-
- /**
- * Gate inputs will be considered "low" if they are below this
- */
- const float cGateLow = .8f;
-
- /**
- * Gate inputs will be considered "high" if they are above this
- */
- const float cGateHi = 1.6f;
-
- const float cGateOutHi = 10.0f;
-
- const float cGateOutLow = 0.0f;
-
- const int TRIGGER_OUT_TIME_MS = 5;
-
|