Ibrahim Koc

Results 4 comments of Ibrahim Koc

I was using python 3.8 but some of the libs are not suitable with that. I installed python 3.7 , install requirements-gpu.txt then everything worked without problem.

with nvidia tx2 devkit this code works. pin header : https://www.jetsonhacks.com/nvidia-jetson-tx2-j21-header-pinout/ ```python import gpio import time trig = 394 echo = 393 print "HC-SR04 Sonar" gpio.setup(trig,gpio.OUT) gpio.setup(echo,gpio.IN) while True: gpio.set(trig,0)...