Tom Young
Tom Young
It's not just your kit @HeatfanJohn . I've been consistently having the same issue running the joy detector model. `dmesg` output: ``` ... [ 31.989712] aiy-vision spi0.0: Myriad booting [...
That's what I think I found, as well, it's been a while since I looked at it. I added some vent holes but never got around to a fan. I...
@rnehrboss You can try catching the `OSError` and restarting your loop when raised. In my experience the hardware is usable again after it restarts itself, so you can re-initialize `CameraInference`...
I ran into exactly this issue this week, and began working on a solution. Through much research I found that the cpppo server you (and I) are running is a...
Seeing this with a KafkaProducer: ``` KafkaProducer( bootstrap_servers=['host1:port', 'host2:port', 'host3:port'], ssl_check_hostname=True, ssl_cafile=/path/to/rootCA.pem, ssl_certfile=None, ssl_keyfile=None) ``` relevant part of traceback: ``` File "/usr/local/lib/python3.5/site-packages/kafka/producer/kafka.py", line 381, in __init__ **self.config) File "/usr/local/lib/python3.5/site-packages/kafka/client_async.py", line...
@jeffwidman I installed form source and printed out a few things, basically in my case what's happening is no requests made in `check_version()` are successful, so the `for` loop here...