Using servos, stepper motors in jetson-inference

I am trying to create a robot that physically interacts with a custom object detection model.

Using jetson-inference I have created a working custom object detection model and am able to access the xy coordinates for the location of objects detected in the camera, whilst in the container.

My problem concerns controlling servos and stepper motors. I am able to utilise python servo motor control libraries outside of the container, but when I try doing this inside the container, it comes back with:
ModuleNotFoundError: No module named ‘Jetson.GPIO’

How can I make it so that Jetson.GPIO and other libraries are included in the container? Or is it easier to try running object detection outside the container now that I have the model I want?

Hi,

Due to some access limitations in docker, you will need to hardcode the device-tree for Nano.
Please check following comment for the detailed workaround:

Thanks.

1 Like

Thank you.

Is there a way to do this for Adafruit’s CircuitPython libraries as well?

Hi,

Could you try if the library works on Jetson (outside of the container) first?
If yes, it should also work within docker but may need some modification.

Thanks

1 Like

Dont worry I figured that I can just do everything outside of the container by building from source.

Thank you

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.