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.

20 lines
316B

  1. #pragma once
  2. /**
  3. * Gate inputs will be considered "low" if they are below this
  4. */
  5. const float cGateLow = .8f;
  6. /**
  7. * Gate inputs will be considered "high" if they are above this
  8. */
  9. const float cGateHi = 1.6f;
  10. const float cGateOutHi = 10.0f;
  11. const float cGateOutLow = 0.0f;
  12. const int TRIGGER_OUT_TIME_MS = 5;