mirror of
https://github.com/brendanhaines/ECEN5458_Project.git
synced 2024-12-27 03:17:06 -07:00
WIP: change plot scales
This commit is contained in:
parent
549c4609e6
commit
ad10fbc097
|
@ -49,9 +49,8 @@ brightness = [get_normalized_reflectivity(c) for c in range(8)]
|
||||||
plt_source = ColumnDataSource(data=dict(x=brightness_idx, y=brightness))
|
plt_source = ColumnDataSource(data=dict(x=brightness_idx, y=brightness))
|
||||||
|
|
||||||
# Set up plot
|
# Set up plot
|
||||||
plot = figure(plot_height=400, plot_width=400, title="my sine wave",
|
plot = figure(plot_height=400, plot_width=400, title="Reflectivity",
|
||||||
tools="save",
|
x_range=[0, 7], y_range=[0, 1])
|
||||||
x_range=[0, 7], y_range=[0, 5])
|
|
||||||
|
|
||||||
plot.line('x', 'y', source=plt_source, line_width=3, line_alpha=0.6)
|
plot.line('x', 'y', source=plt_source, line_width=3, line_alpha=0.6)
|
||||||
|
|
||||||
|
@ -82,9 +81,9 @@ curdoc().add_root(row(controls, plot, width=800))
|
||||||
# curdoc().add_root(row(plot, width=800))
|
# curdoc().add_root(row(plot, width=800))
|
||||||
curdoc().title = "test"
|
curdoc().title = "test"
|
||||||
|
|
||||||
# while True:
|
while True:
|
||||||
# time.sleep(0.1)
|
time.sleep(0.1)
|
||||||
# update_data()
|
update_data()
|
||||||
|
|
||||||
|
|
||||||
# servos = ServoKit(channels=16).continuous_servo
|
# servos = ServoKit(channels=16).continuous_servo
|
||||||
|
|
Loading…
Reference in New Issue
Block a user