📊
KerloudUAV
  • Kerloud UAV Main Page
  • 📗Kerloud UAV User Guide
    • Introduction
    • System Overview
    • Hardware Options
      • Kerloud 300
      • Kerloud 600
    • Gallery
    • Quick Start
    • Application Programming Interface (API)
    • Tutorials
      • Powering and Programming Interface
      • Offboard Control with Mavros (C++)
      • Offboard Control with Mavros (Python)
      • Indoor Positioning with Optical Flow
      • Flight Data Analysis
      • Virtual Simulation
      • Camera Pod Operation
      • Real Time Visual Recognition
      • Deep Learning in ROS
      • Enabling Autonomous Indoor Flight with a Tracking Camera
      • Hardware-in-the-loop Simulation in Airsim Environment
      • Visual Inertial System (VINS) with Stereo Vision and GPU Acceleration
      • DASA Swarm Simulation Toolbox
    • Video Instructions
  • 📘Kerloud UAV使用说明
    • 介绍
    • 系统组成
    • 硬件选项
      • Kerloud 300
      • Kerloud 600
    • 展示区
    • 快速启动
    • 应用程序接口 (API)
    • 使用教程
      • 供电和编程界面
      • Mavros在线控制 (C++)
      • Mavros在线控制 (Python)
      • 室内光流定位
      • 飞行数据分析
      • 虚拟仿真空间
      • 吊舱操作
      • 实时视觉识别
      • ROS深度学习集成
      • 基于跟踪相机的室内自主飞行实现
      • Airsim环境下的硬件在环仿真
      • 基于立体视觉和GPU加速的视觉里程系统(VINS)
      • DASA集群仿真工具箱
    • 视频指导
Powered by GitBook
On this page

Was this helpful?

  1. Kerloud UAV User Guide
  2. Tutorials

Powering and Programming Interface

PreviousTutorialsNextOffboard Control with Mavros (C++)

Last updated 3 years ago

Was this helpful?

Note: This tutorial is applicable for Kerloud UAV products equipped with Jetson Nano only.

Nvidia Jetson Nano supports two power options: micro USB powering and DC jack powering. The default option for the Kerloud UAV package is the DC jack, highlighted in the figure below. The micro USB powering can be activated by disconnecting the J48 jumper in the Jetson Nano carrier board. We advise users to use the DC jack as the micro USB port can only deliver maximum 2A current which is not sufficient for heavy computation burden.

By connecting the Jetson Nano with a screen via a HDMI cable, we can log in the onboard computer. Note that only screens with native HDMI ports are supported by Jetson Nano. The default user name and password are both ubuntu. We installed the QTcreator as the default IDE for software programming.

Users can also log into the computer remotely. To achieve this, both the Jetson Nano and remote PC have to be in the same local wifi network. Suppose the IP address for the Jetson Nano is: 192.168.0.101, then we can log into it with commands:

    sudo apt update
    sudo apt install openssh-server
    ssh ubuntu@192.168.0.101

To avoid the troublesome of changing IP address, users can set the IP manually for the Jetson Nano in the wifi connection options.

📗