Skip to content

Commit bddf4f7

Browse files
authored
Remove debug print
1 parent 1b5e5b3 commit bddf4f7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

BabbleApp/osc_calibrate_filter.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,5 @@ def cal_osc(self, array):
9797

9898
calibrated_array[i] = calibrated_value
9999
array = calibrated_array
100-
print(array[4])
101100
#array[4] = log((np.clip(array[4]*10,0,10))+1.0, 11) Log Filter: Move to filter system.
102-
return np.clip(array,0,1) # Clamp outputs between 0-1
101+
return np.clip(array,0,1) # Clamp outputs between 0-1

0 commit comments

Comments
 (0)