From 5f84a8c1bad132f3e06ceecc5cc0f3720b5def27 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Tue, 12 Nov 2019 02:31:20 -0500 Subject: [PATCH] Add param labels to Scope buttons. --- src/Scope.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Scope.cpp b/src/Scope.cpp index e9eb9a5..dd74ab1 100644 --- a/src/Scope.cpp +++ b/src/Scope.cpp @@ -55,9 +55,9 @@ struct Scope : Module { configParam(Y_POS_PARAM, -10.f, 10.f, 0.f, "Y position", " V"); const float timeBase = (float) BUFFER_SIZE / 6; configParam(TIME_PARAM, 6.f, 16.f, 14.f, "Time", " ms/div", 1 / 2.f, 1000 * timeBase); - configParam(LISSAJOUS_PARAM, 0.f, 1.f, 0.f); + configParam(LISSAJOUS_PARAM, 0.f, 1.f, 0.f, "Separate/Lissajous mode"); configParam(TRIG_PARAM, -10.f, 10.f, 0.f, "Trigger position", " V"); - configParam(EXTERNAL_PARAM, 0.f, 1.f, 0.f); + configParam(EXTERNAL_PARAM, 0.f, 1.f, 0.f, "Internal/external trigger mode"); configInput(X_INPUT, "X"); configInput(Y_INPUT, "Y"); configInput(TRIG_INPUT, "External trigger");