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

Recent content by ggasteratos

  1. G

    Tello send messages to mobile app via wifi

    Hi, Is there a way to send a text message to a mobile app connected on the Tello's Wifi? Thanks in advance, Greg
  2. G

    Sending code the RMTT expansion module?

    Another way to do that is via the Mind+ application they have. It supports Python too! Do not ask me though the exact steps as I am not familiar with Python. I use it as we speak to create a program that may solve the problem I mentioned before using the scratch blocks. Mind+ autogenerates the...
  3. G

    RMTT Sensor Sample

    Because I see there is very little information about uploading code to the RMTT via the Arduino IDE I have create some instruction here. Sending code the RMTT expansion module?
  4. G

    Sending code the RMTT expansion module?

    I Was able to upload code via the Arduino IDE. See attachment for instructions. My trouble is how to communicate from the RMTT to the Drone and then send commands back to the controlling app.
  5. G

    RMTT Sensor Sample

    Hi, I wrote a simple program that turns a LED on when a sensor detects smoke. I have a LED and a smoke sensor MQ-2 connected to RMTT. I upload the code from Arduino IDE to the Expansion module RMTT via USB and it works fine. void setup() { pinMode(21, OUTPUT); //led pin pinMode(4, INPUT)...