Skip to content

Advanced setup

ErnGusMik edited this page Sep 16, 2022 · 2 revisions

Install a specific version of the tello-sdk

user@os$ pip install tello-sdk==VERSION_NUMBER
  • All available versions are listed here
  • VERSION_NUMBER should be replaced by the version you want to install.

Turn logging in the console off

tello = Tello(
    log_in_console=False
)
  • On by default.
  • To display debug messages (for when problems happen), turn logging in the console to False.
  • Info, Warning, Error and Critical messages are displayed in the console when log_in_console is True.

Turn helpful tips off

tello = Tello(
    tips=False
)
  • On by default.
  • Tips are displayed using print() not using logging.