Hello Tello Pilot!
Join our DJI Tello community & remove this banner.
Sign up

Recent content by Hugh

  1. H

    aTello (Android) Development Thread

    Seriously Krag, if you need money to buy a new Tello I suggest you open an online fundraising, I think a bunch of people will be willing to give you a few dollars to encourage you updating this awesome app, and I'm one of them. Hugh
  2. H

    aTello (Android) Development Thread

    Ok I just tried it. Movements with the sticks both in X and Y axis might be too sensitive with the G3w compared to other controllers. It is possible to keep the pointer inside the squares and draw circles, but it is difficult, even slow movements tend to send the pointer hit the borders or the...
  3. H

    aTello (Android) Development Thread

    I finally adapted myself to the commands and did not try to remap using a third party software (like octopus). I ha ve no lag/no disconnection, but this is what you can expect from a wired controller, no ?
  4. H

    aTello (Android) Development Thread

    No.The developper of aTello, Krag, explained in a previous post that he couldn't have the T1D to work with his app. I bought the wired Gamesir G3w for 13$ on Amazon and it works like a charm. Hugh
  5. H

    aTello (Android) Development Thread

    Well I couldn't wait for Gamesir to upgrade the T1D firmware so I just bought the Gamesir G3w ($15 on Amazon), I plugged it (wired only game controller) to my galaxy S7 and it worked out of the box with aTello. I have now to find out how to (re)configure the joysticks/buttons in a manner more...
  6. H

    aTello (Android) Development Thread

    Krag, If you have a T1D do you think it could be possible to sniff the BT packets between the Phone and the T1D when the Tello APP is open, identify the protocol that unlocks the T1D, and reproduce it in aTello app ? (like you guys did with the wi-fi packets to stream the video) Hugh
  7. H

    Object Recognition with Tello (Demo)

    Hello, Nice project. If only we could access/configure the myriad2 VPU which is embeded in the drone...This thing is supposed to be able to do this at the processor level. Hugh
  8. H

    aTello (Android) Development Thread

    Hello Krag, Just tried your app.Works great ! The RTH feature seems to just work fine, even if not very accurate, but what I really like is the "no drop" of the video frames. This, with the lower video res, allows me to actually pilot the drone with the video feed, which the official app can't...
  9. H

    GameSir T1d controller

    In your video, it looks like your tello is not connected when you try to open the game controller menu. in my case I had the T1D to work by : Enable bluetooth on the phone but do not try to pair your phone with the T1D Open Tello app and connect to tello The n go to the controller settings in...
  10. H

    Tello. Whats possible?

    Thank you BlueJune, I tried your updated code. Unfortunately it does not improve the quality issue. My BT was turned off. There is a lot of WiFi interference in my house, but when I use the phone app the video quality is better than that. There may be some missing/extra bytes in the binary...
  11. H

    Tello. Whats possible?

    Hello Bluejune. Just a little feedback on your python scripts : I'm running py3.6 under Win10 so I had to tweak a few things : - Syntax : Changes in the print command and exception command - Differences between Py2.7 and Py3.6 about the way strings are handled : I had the error : wrong object...
  12. H

    Follow me mode official reply from Ryze

    Well, my understanding is that the integrated Movidius VPU chip is able to do this by its own, only relying on video.
  13. H

    GameSir T1d controller

    Just received my T1D today. I took me a while to understand that it can ONLY be connected when your phone is connected to the tello AND the tello app running. The controller will not pair independently of the tello connection, so the Gamesir T1D CAN NOT be used as a game controller ! Besides...
  14. H

    Tello. Whats possible?

    Wow, that is very cool. I started to build a python Wx widget interface using the tello scripts written by Microlinux (see here) but I do not have time to continue. This script of yours is really an improvement as it allows real time movement (and not only moving of a given distance). When I...
  15. H

    Python interface

    Hello Tincdron. To have the Microlinux Py scripts (tello.py and tardis.py) to work on Py3/Win10 you must first install a windows python "curses" library. I installed this one: curses-2.2-cp36-cp36m-win_amd64.whl from this site (https://www.lfd.uci.edu/~gohlke/pythonlibs/#curses) Then the 2...