📊
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使用说明
  2. 使用教程

供电和编程界面

Previous使用教程NextMavros在线控制 (C++)

Last updated 3 years ago

Was this helpful?

注意:本文只适用于装载Jetson Nano的Kerloud无人机产品

英伟达Jetson Nano支持两种供电方式:Micro USB供电和DC Jack供电。Kerloud UAV系列组件默认选用DC Jack,如下图所示。 可通过将Jetson Nano载板上的J48跳选位断开,切换为Micro USB供电方式。 我们建议用户使用DC Jack进行供电,因为Micro USB最大供电电流为2A,在高负载计算场景下会存在供电不足。

使用HDMI线将Jetson Nano连接到显示屏,我们可以对机载计算机进行登录。注意,Jetson Nano仅支持机身支持HDMI接口的显示屏。默认的用户名、密码均为_ubuntu_,我们已预装QTcreator作为默认的软件开发环境。

用户也可以实现远程登录,前提是Jetson Nano和远程PC必须位于相同本地wifi网络中。假定 Jetson Nano的IP地址是:192.168.0.101,则可以使用如下指令进行登录:

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

为了避免更改IP地址的繁琐操作,用户可以在wifi连接选项中手动为Jetson Nano设置IP。

📘