Tello-Dart - A testing ground for the Tello drone's socket API in dart

Related tags

Templates Tello-Dart
Overview

This packages provides a Dart interface to Ryze Tello drones.

Getting started

  • Make sure that your Tello has a good amount of battery
  • Turn on your Tello
  • Connect to your Tello's wifi
  • Run the example script and watch your Tello fly!

Usage

Here's some sample code that shows how you can make a Tello takeoff, hover in the air for 5 seconds, and then land.

An important thing to note here is that tello.disconnect() must be called to properly dispose of the sockets that connect to the tello.

import 'package:ryze_tello/ryze_tello.dart';

void main() async {
  late final Tello tello;

  try {
    /* Initializing */
    tello = await Tello.tello();

    /* Flying Around */
    await tello.takeoff();

    await Future.delayed(const Duration(seconds: 5));

    await tello.land();
  } finally {
    /* Cleanup & Disconnection */
    tello
        .disconnect(); 
  }
}

Additional information

You may find these links helpful for understanding the underlying SDK that serves as the base for this package.

You might also like...

Spec - A streamlined testing framework for Dart & Flutter

Spec - A streamlined testing framework for Dart & Flutter

✅ Spec A streamlined testing framework for Dart & Flutter. What is it? Spec buil

Dec 22, 2022

A simple test testing swagger_dart_code_generator 2.2.5+1

m_work_swagger_test_2 A simple test testing swagger_dart_code_generator 2.2.5+1 Was created like this: Create an ordinary Flutter project in AS2020.3.

Nov 15, 2021

Ozzie is your testing friend. Ozzie will take an screenshot during integration tests whenever you need. Ozzie will capture performance reports for you.

Ozzie is your testing friend. Ozzie will take an screenshot during integration tests whenever you need. Ozzie will capture performance reports for you.

ozzie.flutter Ozzie is your testing friend. Ozzie will take an screenshot during integration tests whenever you need. Ozzie will capture performance r

Nov 3, 2022

Testing Teams, Projects and general collaboration on Github

collaboration_test Testing Teams, Projects and general collaboration on Github Getting Started This project is a starting point for a Flutter applicat

Dec 3, 2021

Flutter_news - News application developed for practice, learning and testing the potential of this powerful Framework Flutter

Flutter_news - News application developed for practice, learning and testing the potential of this powerful Framework Flutter

flutter_news News application developed for practice, learning and testing the potential of this powerful Google's UI toolkit. Resources Packages pub

Dec 17, 2022

Value listenable test - Assists in testing ValueListenable objects (ex: ValueNotifier).

value_listenable_test Assists in testing ValueListenable objects (ex: ValueNotifier). install Added in your pubspec.yaml as dev dependency: dev_depend

Feb 23, 2022

Bilgi Testi Flutter - A knowledge testing app built with Flutter

Bilgi Testi Flutter - A knowledge testing app built with Flutter

Bilgi Testi 7 sorudan oluşan puanlama mekaniği olan, modern tasarımlı, flutter i

Feb 9, 2022

An app just for testing out Google Authentication using Firebase

An app just for testing out Google Authentication using Firebase

Google Authentication An app just for testing out Google Authentication using Fi

Feb 21, 2022
Owner
null
Custom flutter testing CLI tool for individual test runs and group testing

fluttertest Custom flutter testing CLI tool for inidividual test runs or group testing Overview Flutter is a great framework which has helps developer

vi_mi 15 Nov 6, 2022
Simple and complete Flutter hooks testing utilities that encourage good testing practices.

Flutter Hooks Testing Library Simple and complete Flutter hooks testing utilities that encourage good testing practices. Inspired by react-hooks-testi

Daichi Furiya 24 Dec 2, 2022
A Dart EPUB parser built from the ground up, and designed to support a variety of use cases and custom

A Dart EPUB parser built from the ground up, and designed to support a variety of use cases and custom implementations such as on-device caching and serving content from a server.

getBoolean 11 Nov 3, 2022
A comprehensive guide on learning how to code cross platform mobile applications with the Flutter framework, from the ground up.

✳️ The Ultimate Guide to App Development with Flutter ✳️ A complete and comprehensive guide to learning Flutter with explanations, screenshots, tips,

Anthony 243 Jan 1, 2023
Socketio dart server and client - Full Socket.io implementation using Dart Lang

Getting Started Step 1: Run dart_server.dart Step 2: Android Emulator has proble

Trần Thiên Trọng 1 Jan 23, 2022
A pure Dart utility library that checks for an internet connection by opening a socket to a list of specified addresses, each with individual port and timeout. Defaults are provided for convenience.

data_connection_checker A pure Dart utility library that checks for an internet connection by opening a socket to a list of specified addresses, each

Kristiyan Mitev 103 Nov 29, 2022
Socket library for creating real-time multiplayer games. Based on TCP, with the ability to send messages over UDP (planned).

Game socket The library was published in early access and is not stable, as it is being developed in parallel with other solutions. English is not a n

Stanislav 10 Aug 10, 2022
a flutter socket client sdk for ezyfox-server

ezyfox-server-flutter-client flutter client for ezyfox server Architecture Offical documentation https://youngmonkeys.org/ezyfox-flutter-client-sdk/ P

Young Monkeys 44 Dec 13, 2022
This is a simple responsive TicTacToe game using Flutter, Node.js, Express, Socket.io, and Mongoose.

OnlineMultiplayerTicTacToe This is a simple responsive TicTacToe game using Flutter, Node.js, Express, Socket.io, and Mongoose. Project Setup clone Re

Hojat ghanbarzadeh 7 Oct 8, 2022
Multiplayer tictactoe game made in Flutter with nodejs and socket.io and using riverpod for state management

TicTacToe Game A Multiplayer TicTacToe Game- Works on Android, iOS and Web. Features Create/Join Room Play Realtime Display Points Round & Game Winner

Utsav Ghimire 5 Oct 18, 2022