Control Quadcopter From Your Phone in 30 Minutes! [ESP8266 + A7105 + Blynk App for IOS/Android]

by vshymanskyy in Circuits > Mobile

62776 Views, 147 Favorites, 0 Comments

Control Quadcopter From Your Phone in 30 Minutes! [ESP8266 + A7105 + Blynk App for IOS/Android]

setup.jpg

I was dreaming about making this kind of project for quite some time. But the complexity of phone integration was frightening me. And it would be hard to reuse the work for my future ideas.

Now this became super-easy with Blynk :)

So I spent 1 evening and got it working. I hope this will be interesting for you.

To start working on this you will need:

  1. Hardware
    • Hubsan X4 quadcopter (no modifications will be needed)
    • ESP8266 breakout (ESP-07, ESP-12 or similar)
    • USB <-> TTL Serial converter (3.3V)
    • Breadboard + jumper wires
    • Amic A7105 transceiver breakout
  2. Software
  3. Skills
    • Some easy soldering might be needed (depends on the hardware you have)
    • Uploading firmware to ESP8266
      [good example here]

References and thanks :)

So... let's go!

Setup Blynk App

tricorder.jpg
Screenshots_2.png

Every time I use the Blynk app, it reminds me of the tricoder.

Tricoder: multifunction hand-held device used for sensor scanning, data analysis, and recording data.

The app has different widgets (buttons, sliders, displays).
You can perform actions you like. It's a universal remote, that can also display and plot data.

Here are some easy steps to get started:

  1. Install Blynk App:
    1. Android
    2. iOS
      [there is no joystick widget on iOS yet, but it will be added in 2 weeks]
  2. Create Blynk account.
    Just push the "create account" button on the login screen.
  3. Install Blynk library into Arduino IDE: https://github.com/blynkkk/blynk-library/releases
    [in case you forgot how to install Arduino libraries: check here]

[Optional]

You can install the local Blynk server to get the best control and responsiveness.
Read more about it here: https://github.com/blynkkk/blynk-server/blob/mast...

BTW, we're now working on adding direct connections through BT 4.0 BLE and
later WiFi, to eliminate the server link (specially for cases like this).

Wire A7105 to ESP8266

schematic.png

As ESP8266 and A7105 operate with the same 3.3 volts, we don't need to use any converters, just connect them directly.

BTW, that's one of the reasons why I selected to use ESP8266.
Another one is obvious: it provides WiFi connectivity :)

You might have to solder few wires or use a breadboard to achieve a firm connection.

Configure Blynk Project

project.png
left.png
right.png
  1. Create a new project and select that it is an ESP8266
  2. Push the button to send the Auth Token to your email
  3. Add a Button widget
    Name it "Bind" and attach to Virtual pin 1.
    Set mode to "Switch"
  4. Add another Button widget
    Name it "Lights" and attach to Virtual pin 6.
    Set mode to "Switch"

  5. Add 2 Joystick widgets and configure as shown on the pictures
    Hint: You can control sensitivity/shifting by changing those value ranges...

Write Code & Upload Firmware

I will save you some time: here is the sketch you can program to your device :)

Actually I spent a few hours porting and fixing the original coptermanager to ESP8266 and scratching my head every time it failed to work or crashed ^_^

But once I had my ESP8266 working with Hubsan X4, it was really easy to interface it with the Blynk App.
Less than 15 minutes!
Everything I needed was to map commands of the coptermanager to the Blynk Virtual Pins:

V1 - COPTER_BIND      Binds and returns the copter ID
V2 - COPTER_THROTTLE  (range 0x00 - 0xFF)  throttle (top/down)
V3 - COPTER_RUDDER    (range 0x34 - 0xCC)  rudder (rotate left/right)
V4 - COPTER_AILERON   (range 0x45 - 0xC3)  aileron (drift left/right)
V5 - COPTER_ELEVATOR  (range 0x3E - 0xBC)  elevator (forward/backward)
v6 - COPTER_LED       (1 or 0)  enable/disable LEDs

So:

  1. Open the provided sketch in the Arduino IDE
  2. Update Blynk Auth Token (the one from email) and WiFI credentials in the coptermanager.ino file
  3. Upload it to your ESP8266!

Downloads

Fly!

IMG_3702.jpg

Believe me or not... that's it :)

  1. Power-up your ESP8266 and see it connects to the Blynk server.
  2. Power-up your Hubsan X4.
  3. Tap "Run" button in the App
    [triangle in upper right corner]
  4. Tap on the "BIND" button widget.
    Quadcopter should stop blinking. Great!
  5. Try to switch lights on and off with the second button. Wow!
  6. Now... carefully... put your fingers on those two joysticks...