#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;