diff --git a/include/componentlibrary.hpp b/include/componentlibrary.hpp index ab51d576..165edc1b 100644 --- a/include/componentlibrary.hpp +++ b/include/componentlibrary.hpp @@ -445,6 +445,14 @@ struct RedGreenBlueLight : GrayModuleLightWidget { } }; +struct RGBLight : ModuleLightWidget { + RGBLight() { + addBaseColor(nvgRGBf(1, 0, 0)); + addBaseColor(nvgRGBf(0, 1, 0)); + addBaseColor(nvgRGBf(0, 0, 1)); + } +}; + /** Based on the size of 5mm LEDs */ template diff --git a/src/Core/MIDIToCVInterface.cpp b/src/Core/MIDIToCVInterface.cpp index eaba2db4..73ced3be 100644 --- a/src/Core/MIDIToCVInterface.cpp +++ b/src/Core/MIDIToCVInterface.cpp @@ -36,7 +36,7 @@ struct MIDIToCVInterface : Module { uint8_t mod = 0; ExponentialFilter modFilter; - uint16_t pitch = 0; + uint16_t pitch = 8192; ExponentialFilter pitchFilter; PulseGenerator retriggerPulse; PulseGenerator clockPulses[2];