Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miya0001/node-tello-edu
https://github.com/miya0001/node-tello-edu
drone node tello
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/miya0001/node-tello-edu
- Owner: miya0001
- Created: 2018-12-23T15:08:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-07T06:05:18.000Z (almost 6 years ago)
- Last Synced: 2024-10-30T23:12:15.427Z (2 months ago)
- Topics: drone, node, tello
- Language: JavaScript
- Size: 39.1 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-tello-edu
An unofficial client library for Tello EDU.
https://www.ryzerobotics.com/tello-edu
## How to install
```
$ npm install node-tello-edu --save
```## Example
```
const tello = require('node-tello-edu')const drone = new tello({
ip: "192.168.43.208",
})setTimeout(() => {
drone.sendCommand('up 100')
}, 5000);setTimeout(() => {
drone.sendCommand('flip f')
}, 8000);setTimeout(() => {
drone.land()
}, 20000);
```You can see command to control tello in SDK documentation.
https://dl-cdn.ryzerobotics.com/downloads/Tello/Tello%20SDK%202.0%20User%20Guide.pdf
## CLI interface
This module has a cli interface to manage your tello.
You can run cli as follows.
```
$ $(npm bin)/tello --help
Usage: tello [options] [command]Options:
-V, --version output the version number
-h, --help output usage informationCommands:
ap [options] Set the Tello to station mode, and connect to the access point with ssid and password.
shell Launch shell to control Tello.
state Launch UDP server to recieve Tello state on 0.0.0.0:8890.
help [cmd] display help for [cmd]
```