File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
shared-bindings/audiodelays Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ MP_PROPERTY_GETSET(audiodelays_echo_delay_ms_obj,
162162 (mp_obj_t )& audiodelays_echo_set_delay_ms_obj );
163163
164164//| decay: synthio.BlockInput
165- //| """The rate the echo decays between 0 and 1 where 1 is forever and 0 is no echo ."""
165+ //| """The rate the echo fades between 0 and 1 where 0 is instant and 1 is never ."""
166166static mp_obj_t audiodelays_echo_obj_get_decay (mp_obj_t self_in ) {
167167 return common_hal_audiodelays_echo_get_decay (self_in );
168168}
@@ -180,7 +180,7 @@ MP_PROPERTY_GETSET(audiodelays_echo_decay_obj,
180180 (mp_obj_t )& audiodelays_echo_set_decay_obj );
181181
182182//| mix: synthio.BlockInput
183- //| """The rate the echo mix between 0 and 1 where 0 is only sample and 1 is all effect."""
183+ //| """The rate the echo mix between 0 and 1 where 0 is only sample, 0.5 is an equal mix of the sample and the effect and 1 is all effect."""
184184static mp_obj_t audiodelays_echo_obj_get_mix (mp_obj_t self_in ) {
185185 return common_hal_audiodelays_echo_get_mix (self_in );
186186}
You can’t perform that action at this time.
0 commit comments