Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion patch_sm/GettingStarted/Pot_Input/Pot_Input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ int main(void)
/** Update all cv inputs */
patch.ProcessAllControls();

/** Get CV_1 Input (0, 1) */
/** Get CV_1 Input ~(0, 1)
* The values can be slightly outside of that
* range - That means you can get small negative
* values, too!
*/
float value = patch.GetAdcValue(CV_1);

/** Here the pot is wired to GND and 5V
Expand Down