clean up print messages

This commit is contained in:
Brendan Haines 2020-03-02 16:25:19 -07:00
parent 34abba0129
commit 683c97eb91

View File

@ -93,7 +93,8 @@ def control_thread():
while True:
time.sleep(0.01)
brightness = [get_normalized_reflectivity(c) for c in range(8)]
print(brightness)
if debug:
print([f"{b:1.2f}" for b in brightness])
ii += 1
if ii == 10:
ii = 0