2020-02-26 10:47:21 -07:00
|
|
|
import time
|
|
|
|
import numpy as np
|
2020-03-02 11:39:07 -07:00
|
|
|
|
|
|
|
import board
|
2020-03-02 13:40:42 -07:00
|
|
|
import busio
|
2020-03-02 11:39:07 -07:00
|
|
|
import digitalio
|
2020-02-26 10:47:21 -07:00
|
|
|
from adafruit_servokit import ServoKit
|
2020-03-02 13:39:37 -07:00
|
|
|
import adafruit_ads1x15.ads1015 as ADS
|
2020-03-02 11:39:07 -07:00
|
|
|
from adafruit_ads1x15.analog_in import AnalogIn
|
2020-03-02 16:06:58 -07:00
|
|
|
import threading
|
2020-02-26 10:47:21 -07:00
|
|
|
|
2020-03-02 14:45:16 -07:00
|
|
|
from bokeh.io import curdoc
|
|
|
|
from bokeh.layouts import column, row
|
2020-03-02 15:16:55 -07:00
|
|
|
from bokeh.models import ColumnDataSource, Slider, TextInput, Button
|
2020-03-02 14:45:16 -07:00
|
|
|
from bokeh.plotting import figure
|
|
|
|
|
2020-03-02 16:27:41 -07:00
|
|
|
DEBUG = True
|
|
|
|
|
2020-03-02 15:59:59 -07:00
|
|
|
mux_io = [None] * 4
|
|
|
|
mux_io[0] = digitalio.DigitalInOut(board.D17)
|
|
|
|
mux_io[1] = digitalio.DigitalInOut(board.D27)
|
|
|
|
mux_io[2] = digitalio.DigitalInOut(board.D22)
|
|
|
|
mux_io[3] = digitalio.DigitalInOut(board.D23)
|
|
|
|
|
|
|
|
for ii, io in enumerate(mux_io):
|
|
|
|
io.switch_to_output()
|
|
|
|
|
|
|
|
i2c = busio.I2C(board.SCL, board.SDA)
|
|
|
|
adc = ADS.ADS1015(i2c)
|
|
|
|
adc_mux = AnalogIn(adc, ADS.P0)
|
|
|
|
white_cal = [0]*8
|
|
|
|
black_cal = [5]*8
|
|
|
|
|
2020-03-02 16:24:01 -07:00
|
|
|
adc_lock = threading.Lock()
|
|
|
|
|
2020-03-02 15:59:59 -07:00
|
|
|
def get_reflectivity(chan):
|
|
|
|
chan = int(chan)
|
|
|
|
global mux_io
|
|
|
|
global adc_mux
|
2020-03-02 16:24:01 -07:00
|
|
|
global adc_lock
|
2020-03-02 15:59:59 -07:00
|
|
|
mux = 1-np.array(list(f"{chan:04b}"), dtype=int)
|
2020-03-02 16:24:01 -07:00
|
|
|
adc_lock.acquire()
|
2020-03-02 13:57:55 -07:00
|
|
|
for ii, io in enumerate(mux_io):
|
2020-03-02 15:59:59 -07:00
|
|
|
io.value = mux[ii]
|
2020-03-02 16:24:01 -07:00
|
|
|
voltage = adc_mux.voltage
|
|
|
|
adc_lock.release()
|
|
|
|
return voltage
|
2020-03-02 15:22:01 -07:00
|
|
|
|
2020-03-02 15:59:59 -07:00
|
|
|
def get_normalized_reflectivity(chan):
|
|
|
|
global white_cal
|
|
|
|
global black_cal
|
|
|
|
|
|
|
|
return (get_reflectivity(chan) - black_cal[chan]) / (white_cal[chan] - black_cal[chan])
|
2020-03-02 15:22:01 -07:00
|
|
|
|
2020-03-02 15:59:59 -07:00
|
|
|
brightness_idx = np.arange(8)
|
|
|
|
brightness = [get_normalized_reflectivity(c) for c in range(8)]
|
2020-03-02 14:45:16 -07:00
|
|
|
|
2020-03-02 16:17:34 -07:00
|
|
|
plt_data = dict(x=brightness_idx, y=brightness)
|
|
|
|
plt_source = ColumnDataSource(data=plt_data)
|
2020-03-02 14:45:16 -07:00
|
|
|
|
2020-03-02 15:59:59 -07:00
|
|
|
# Set up plot
|
2020-03-02 16:04:20 -07:00
|
|
|
plot = figure(plot_height=400, plot_width=400, title="Reflectivity",
|
|
|
|
x_range=[0, 7], y_range=[0, 1])
|
2020-03-02 14:45:16 -07:00
|
|
|
|
2020-03-02 15:59:59 -07:00
|
|
|
plot.line('x', 'y', source=plt_source, line_width=3, line_alpha=0.6)
|
2020-03-02 15:24:40 -07:00
|
|
|
|
2020-03-02 16:13:37 -07:00
|
|
|
def update_plot(attrname=None, old=None, new=None):
|
2020-03-02 15:59:59 -07:00
|
|
|
brightness = [get_normalized_reflectivity(c) for c in range(8)]
|
2020-03-02 16:17:34 -07:00
|
|
|
global plt_data
|
|
|
|
plt_data = dict(x=brightness_idx, y=brightness)
|
2020-03-02 16:24:01 -07:00
|
|
|
# plt_source.data = plt_data
|
2020-03-02 15:59:59 -07:00
|
|
|
|
2020-03-02 16:01:28 -07:00
|
|
|
def cal_white(attrname=None, old=None, new=None):
|
2020-03-02 15:59:59 -07:00
|
|
|
global white_cal
|
2020-03-02 16:24:01 -07:00
|
|
|
white_cal = [get_reflectivity(c) for c in range(8)]
|
2020-03-02 16:13:37 -07:00
|
|
|
update_plot()
|
2020-03-02 15:59:59 -07:00
|
|
|
|
2020-03-02 16:01:28 -07:00
|
|
|
def cal_black(attrname=None, old=None, new=None):
|
2020-03-02 15:59:59 -07:00
|
|
|
global black_cal
|
2020-03-02 16:24:01 -07:00
|
|
|
black_cal = [get_reflectivity(c) for c in range(8)]
|
2020-03-02 16:13:37 -07:00
|
|
|
update_plot()
|
2020-03-02 15:59:59 -07:00
|
|
|
|
|
|
|
cal_white_button = Button(label="Cal White")
|
|
|
|
cal_white_button.on_click(cal_white)
|
|
|
|
cal_black_button = Button(label="Cal Black")
|
|
|
|
cal_black_button.on_click(cal_black)
|
|
|
|
|
|
|
|
controls = column(cal_white_button, cal_black_button)
|
|
|
|
|
|
|
|
curdoc().add_root(row(controls, plot, width=800))
|
2020-03-02 16:20:43 -07:00
|
|
|
curdoc().title = "TriangleBot Control Panel"
|
2020-03-02 15:59:59 -07:00
|
|
|
|
2020-03-02 16:11:21 -07:00
|
|
|
def control_thread():
|
2020-03-02 16:17:34 -07:00
|
|
|
ii = 0
|
2020-03-02 16:11:21 -07:00
|
|
|
while True:
|
|
|
|
time.sleep(0.01)
|
2020-03-02 16:13:37 -07:00
|
|
|
brightness = [get_normalized_reflectivity(c) for c in range(8)]
|
2020-03-02 16:27:41 -07:00
|
|
|
if DEBUG:
|
|
|
|
for b in brightness:
|
|
|
|
print(f"{b:1.2f}\t", end="")
|
|
|
|
print()
|
2020-03-02 16:17:34 -07:00
|
|
|
ii += 1
|
|
|
|
if ii == 10:
|
|
|
|
ii = 0
|
|
|
|
if ii == 0:
|
|
|
|
plt_data['y'] = brightness
|
|
|
|
|
2020-03-02 16:11:21 -07:00
|
|
|
|
|
|
|
t = threading.Thread(target=control_thread)
|
2020-03-02 16:06:58 -07:00
|
|
|
t.start()
|
|
|
|
# while True:
|
|
|
|
# time.sleep(0.1)
|
|
|
|
# update_data()
|
2020-03-02 15:59:59 -07:00
|
|
|
|
|
|
|
|
|
|
|
# servos = ServoKit(channels=16).continuous_servo
|
|
|
|
# servos[0].throttle = 0
|
|
|
|
# servos[1].throttle = 0
|
|
|
|
# servos[2].throttle = 0
|
|
|
|
# time.sleep(1)
|
|
|
|
# servos[0].throttle = 20
|
|
|
|
# servos[1].throttle = 20
|
|
|
|
# servos[2].throttle = 20
|
|
|
|
# time.sleep(1)
|
|
|
|
# servos[0].throttle = 0
|
|
|
|
# servos[1].throttle = 0
|
|
|
|
# servos[2].throttle = 0
|
2020-03-02 15:24:40 -07:00
|
|
|
|