Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mateustoin/DJI-Tello-Dart-Package
Quick and easy way to connect to a DJI Tello Drone. Using standard Dart packages, the socket is created intuitively and commands are sent easily.
https://github.com/mateustoin/DJI-Tello-Dart-Package
control-tello-drone dart dji-tello dji-tello-drone drone flutter package package-manager tello tello-drone
Last synced: 29 days ago
JSON representation
Quick and easy way to connect to a DJI Tello Drone. Using standard Dart packages, the socket is created intuitively and commands are sent easily.
- Host: GitHub
- URL: https://github.com/mateustoin/DJI-Tello-Dart-Package
- Owner: mateustoin
- License: bsd-3-clause
- Created: 2020-11-15T00:40:44.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-09T20:21:45.000Z (6 months ago)
- Last Synced: 2024-10-01T09:19:01.461Z (2 months ago)
- Topics: control-tello-drone, dart, dji-tello, dji-tello-drone, drone, flutter, package, package-manager, tello, tello-drone
- Language: Dart
- Homepage: https://pub.dev/packages/tello
- Size: 12.7 KB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-tello - DJI-Tello-Dart-Package - `#dart` (SDK Wrappers)
README
# Controlling DJI Tello Drone with Dart
Simple example to control Tello Drone with commands recieved from terminal.
```dart
import 'dart:async';
import 'dart:io';
import 'package:tello/tello.dart';main() async {
// Connect to Tello when machine WiFi is already connected to the drone
var tello = new ConnectTello();while(true) {
stdout.write('Write a command: ');
String command = stdin.readLineSync();
tello.sendCommand(command);
await Future.delayed(Duration(milliseconds: 100));
}
}
```