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.

24 lines
434B

  1. #include <math.h>
  2. #include "rack.hpp"
  3. const int MOMENTARY_BUTTONS = 13;
  4. const int INPUT_SOURCES = 1;
  5. const int GATE_LENGTH_INPUTS = 5;
  6. enum VoltageRange {
  7. MINUS_PLUS_TEN,
  8. ZERO_TEN,
  9. MINUS_PLUS_FIVE,
  10. };
  11. const float voltage_min[3] = {-10.0f, 0.0f, -5.0f};
  12. const float voltage_max[3] = {10.0f, 10.0f, 5.0f};
  13. using namespace rack;
  14. RACK_PLUGIN_DECLARE(Alikins);
  15. #ifdef USE_VST2
  16. #define plugin "Alikins"
  17. #endif // USE_VST2