mirror of
https://github.com/brendanhaines/ECEN5458_Project.git
synced 2024-12-27 03:17:06 -07:00
improve formatting of print string
This commit is contained in:
parent
683c97eb91
commit
b44d2d681c
|
@ -14,6 +14,8 @@ from bokeh.layouts import column, row
|
||||||
from bokeh.models import ColumnDataSource, Slider, TextInput, Button
|
from bokeh.models import ColumnDataSource, Slider, TextInput, Button
|
||||||
from bokeh.plotting import figure
|
from bokeh.plotting import figure
|
||||||
|
|
||||||
|
DEBUG = True
|
||||||
|
|
||||||
mux_io = [None] * 4
|
mux_io = [None] * 4
|
||||||
mux_io[0] = digitalio.DigitalInOut(board.D17)
|
mux_io[0] = digitalio.DigitalInOut(board.D17)
|
||||||
mux_io[1] = digitalio.DigitalInOut(board.D27)
|
mux_io[1] = digitalio.DigitalInOut(board.D27)
|
||||||
|
@ -93,8 +95,10 @@ def control_thread():
|
||||||
while True:
|
while True:
|
||||||
time.sleep(0.01)
|
time.sleep(0.01)
|
||||||
brightness = [get_normalized_reflectivity(c) for c in range(8)]
|
brightness = [get_normalized_reflectivity(c) for c in range(8)]
|
||||||
if debug:
|
if DEBUG:
|
||||||
print([f"{b:1.2f}" for b in brightness])
|
for b in brightness:
|
||||||
|
print(f"{b:1.2f}\t", end="")
|
||||||
|
print()
|
||||||
ii += 1
|
ii += 1
|
||||||
if ii == 10:
|
if ii == 10:
|
||||||
ii = 0
|
ii = 0
|
||||||
|
|
Loading…
Reference in New Issue
Block a user