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

Recent content by newbiePilot

  1. newbiePilot

    CRC8 / CRC16 which algorithm has to be used

    Pygame Implementation of Peggu's import pygame from pygame.locals import * Global Vars # Init pygame pygame.init() # Creat pygame window pygame.display.set_caption("Video Feed") screen = pygame.display.set_mode([960,720]) # create update timer pygame.time.set_timer(USEREVENT + 1, 50)...
  2. newbiePilot

    CRC8 / CRC16 which algorithm has to be used

    Are you running in virtualenv?
  3. newbiePilot

    Tello. Whats possible?

    I tried to run the PigguSoft run.py that uses tello.py. but no luck getting any video. The video thread kept getting into the exception condition (socket.timeout). What I did: 1. python run.py 2. takeoff 3. pressed "1" for smart360 video But it could never reach the write video file. Anyone...
  4. newbiePilot

    Hey Gents and Lasses, I’m now a commercial pilot!

    Just saw that you might be doing something similar, if you or other pilots are interested, feel free to let me know too!
  5. newbiePilot

    setup question

    You can start with your conda prompt command line (if using anaconda) or windows cmd Then "pip install djitellopy" Then in your python script "from djitellopy import Tello" That's it and good luck!
  6. newbiePilot

    Hey Gents and Lasses, I’m now a commercial pilot!

    Hey Carl, I run a website biz for non-techy artists and companies. The philosophy is for us to take care of all the tech infrastructures and designs, then the non-techy client can just edit with drag&drop&type interface. Since you're also a tello pilot, if you dont need fancy stuffs, can get you...
  7. newbiePilot

    CRC8 / CRC16 which algorithm has to be used

    Check out this python implementation, it uses a table with the _calcCRC8 function TBL_CRC8 = [ 0x00, 0x5e, 0xbc, 0xe2, 0x61, 0x3f, 0xdd, 0x83, 0xc2, 0x9c, 0x7e, 0x20, 0xa3, 0xfd, 0x1f, 0x41, 0x9d, 0xc3, 0x21, 0x7f, 0xfc, 0xa2, 0x40, 0x1e, 0x5f, 0x01, 0xe3, 0xbd, 0x3e, 0x60...
  8. newbiePilot

    Issue sending command via Strings (the official way) & Hexadecimals

    Hi fellow developers, I was trying to get mvo data using PingguSoft's library, which communicates with tello using hexadecimals. Meanwhile, I was controlling tello using the official tello python library, which sends command using strings (eg "forward xxx", "takeoff"...). They work fine...
  9. newbiePilot

    Let the swarm begin!

    Hi volate!lo, first off, I'm a big fan of your telloFPV app. Great work! I saw that you have a copilot app. And I'm curious, why "TelloFpv acts as a hub" (from your description) instead of just having the copilot to get the video from the wifi-extender?
  10. newbiePilot

    Let the swarm begin!

    I was thinking about sharing my tello feed (connecting to the tello via my computer instead of the phone). Does that mean this is only possible with telloEDU instead of the original tello?
  11. newbiePilot

    Let the swarm begin!

    If tello edu can connect to an existing access point, does that mean tello edu can be connected to my home router, which I uses its WIFI to connect to the internet. Thus, tello edu can be connected to the internet?
  12. newbiePilot

    Tello with a 16 mp camera hack.

    Keep us posted!!
  13. newbiePilot

    Tello Camera Mod

    Hey Guys, I'm not very experienced in hardware, but I'm wondering if I were to switch this out with another camera (assuming with the same plug). Would I automatically be able to stream video with the new camera (e.g. a night vision camera or higher quality one)? Or how does the board decide...