{"id":23434065,"url":"https://github.com/eliaxelang007/tello-dart","last_synced_at":"2026-07-07T03:30:21.524Z","repository":{"id":56838426,"uuid":"440346451","full_name":"eliaxelang007/Tello-Dart","owner":"eliaxelang007","description":"This is a Dart library that provides a high level API to the Tello drone's SDK. https://pub.dev/packages/ryze_tello","archived":false,"fork":false,"pushed_at":"2022-12-18T10:07:18.000Z","size":2042,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-06T14:32:25.695Z","etag":null,"topics":["dart","flutter","tello"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eliaxelang007.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-21T00:42:50.000Z","updated_at":"2024-11-22T19:39:22.000Z","dependencies_parsed_at":"2023-01-29T19:02:53.862Z","dependency_job_id":null,"html_url":"https://github.com/eliaxelang007/Tello-Dart","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliaxelang007%2FTello-Dart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliaxelang007%2FTello-Dart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliaxelang007%2FTello-Dart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliaxelang007%2FTello-Dart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eliaxelang007","download_url":"https://codeload.github.com/eliaxelang007/Tello-Dart/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240457944,"owners_count":19804489,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","flutter","tello"],"created_at":"2024-12-23T11:37:50.689Z","updated_at":"2026-07-07T03:30:21.372Z","avatar_url":"https://github.com/eliaxelang007.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n## About\n\nThis package provides a Dart interface to Tello drones.\n\n## Getting started\n\n* Install this package on [pub.dev](https://pub.dev/packages/ryze_tello).\n* Write a dart script to control your Tello.\n* Turn on your Tello.\n* Run your script and watch your Tello fly through the air!\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cimg src=\"https://raw.githubusercontent.com/eliaxelang007/Tello-Dart/master/images/tello_takeoff.gif\" alt=\"A Tello drone taking off\"/\u003e\u003c/td\u003e\n    \u003ctd\u003e\u003cimg src=\"https://raw.githubusercontent.com/eliaxelang007/Tello-Dart/master/images/tello_flip.gif\" alt=\"A Tello drone doing a flip\"/\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n## Usage\n\nHere's some sample code that shows how you can make a Tello takeoff,\nhover in the air for 5 seconds, and then land. \n\nAn important thing to note here is that **tello.disconnect()** must be called \nto properly dispose of the sockets that connect to the tello.\n\n```dart\nimport 'package:ryze_tello/ryze_tello.dart';\n\nvoid main() async {\n  late final Tello tello;\n\n  try {\n    /* Initializing */\n    tello = await Tello.tello();\n\n    /* Flying Around */\n    await tello.takeoff();\n\n    await Future.delayed(const Duration(seconds: 5));\n\n    await tello.land();\n  } finally {\n    /* Cleanup \u0026 Disconnection */\n    tello\n        .disconnect(); // IMPORTANT: Must be called to properly dispose of the sockets that connect to the tello.\n  }\n}\n```\n\nYou can find a more comprehensive example [here](example/ryze_tello_example.dart).\n\n## Documentation\n\nThe documentation for this project is in its [pub.dev](https://pub.dev/packages/ryze_tello) page.\n[Here's a quick link to it.](https://pub.dev/documentation/ryze_tello/latest/ryze_tello/ryze_tello-library.html)\n\n## Additional information\n\nThis package is a wrapper around the Tello's SDK.\nYou can find more information about the SDK [here](https://dl-cdn.ryzerobotics.com/downloads/tello/20180910/Tello%20SDK%20Documentation%20EN_1.3.pdf).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliaxelang007%2Ftello-dart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feliaxelang007%2Ftello-dart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliaxelang007%2Ftello-dart/lists"}