NamanA
Posts: 3
Joined: Sat Jun 20, 2020 1:03 am

Deploying Programs and Connecting Jetson Nano

Sat Jun 20, 2020 1:19 am

Hello all,

I am very new to Raspberry PI and even after some research, I am still confused. Lets say I have the Raspberry PI setup and all the programs are finished. How would I deploy this program on the Raspberry PI if it is on a robot? The Raspberry PI cannot be connected to a monitor because the robot is mobile. From what I know, to run a program on the PI, you have to use a monitor so you can access the command prompt to run the program.

My second question:

I have a Jetson Nano but I want to connect it to Raspberry Pi Zero W so the Nano can exploit the wifi capabilities of the Pi Zero. The Pi Zero is still necessary regardless because it controls the robot.

Heater
Posts: 15949
Joined: Tue Jul 17, 2012 3:02 pm

Re: Deploying Programs and Connecting Jetson Nano

Sat Jun 20, 2020 3:23 am

All the Pi I use have WiFi now a days. None of them have screens, keyboards or mice attached. Often they are very far away from me.

Typically they connect to my normal WiFi router. The one I use to access the internet. Then I can talk to the Pi from a PC or laptop using SSH. Windows users typically use the "Putty" program to talk to their Pi using the SSH protocol.

The above gets you only a command line terminal access to your Pi. Some people like a remote graphical display so the use VNC.

A quick google for "Rasperry Pi SSH", "Rasperry Pi putty", "Rasperry Pi vnc" will find you all kind of instruction on doing this.

As to actually running a program on a Pi like this a command line connection is good enough when developing the code, but the finished program can be run automatically when the Pi is powered up. We use systemd service files to specify how our programs are to be run. Again google "Rasperry Pi systemd service" you will find lots of discussion and examples about doing that on this forum.

Personally I think you would be better off putting a WiFi dongle into your Jetson Nano. Or get a card for it https://www.jetsonhacks.com/2019/04/08/ ... bluetooth/ This works very well for my Nano.

You might want to connect Pi and Nano via serial ports. Or I believe a Pi Zero can be used as a USB device. I have never done that, others will have to say.

Sorry to say "google" so much here but it would take a lot to answer your questions in a forum post.
Memory in C++ is a leaky abstraction .

NamanA
Posts: 3
Joined: Sat Jun 20, 2020 1:03 am

Re: Deploying Programs and Connecting Jetson Nano

Sat Jun 20, 2020 2:42 pm

sounds good, thanks

Return to “General discussion”