---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-9af195a70023> in <module>()
----> 1 b = blink1.Blink1()
2
3 t_0 = time.time()
4
5 RGB = [0, 0, 0]
c:\Users\pvvilleneuve\Projects\working_python\venv\lib\site-packages\blink1\blink1.py in __init__(self, gamma, white_point)
79 )
80
---> 81 self.dev = self.find()
82 if not self.dev:
83 raise BlinkConnectionFailed("Could not find an attached Blink(1)")
c:\Users\pvvilleneuve\Projects\working_python\venv\lib\site-packages\blink1\blink1.py in find()
88 @staticmethod
89 def find():
---> 90 dev = usb.core.find(idVendor=VENDOR_ID, idProduct=PRODUCT_ID)
91 if dev == None:
92 return None
c:\Users\pvvilleneuve\Projects\working_python\venv\lib\site-packages\usb\core.py in find(find_all, backend, custom_match, **args)
1197 break
1198 else:
-> 1199 raise ValueError('No backend available')
1200
1201 k, v = args.keys(), args.values()
ValueError: No backend available