Categories

  • Android Apps
  • Android Games
  • Android Wallpapers
  • Android Wear Apps
  • Android Keyboard
  • Android Themes
  • Android Ringtones

Topics

  • Editor's Choice
  • Top Ranking
  • Pre Register
  • Offline Games
  • 2,3,4 Players Games

Categories

Topics

DroneRemote

DroneRemote APK

1.0.2 Free ․ Marco Rinalducci ⇣ Download APK (2.41 MB)

What's DroneRemote APK?

DroneRemote is a app for Android, It's developed by Marco Rinalducci author.
First released on google play in 10 years ago and latest version released in 8 years ago.
This app has 0 download times on Google play and rated as 3.75 stars with 4 rated times.
This product is an app in Tools category
DroneRemote is an application for piloting drones with Bluetooth SPP (Serial Port Profile) protocol.

The whole project is available on GitHub at https://github.com/MRinalducci/DroneRemote

The following frame (11 bytes) is sent via Bluetooth :
Start = 240
Throttle = 0-100%
Yaw = 0-100%
Pitch = 0-100%
Roll = 0-100%
yAccelerometer = 60-110 degrees
zAccelerometer = 60-110 degrees
LED = 0-1 boolean
REC = 0-1 boolean
Checksum = 0-255
End = 250

The following frame (6 bytes) is recieved via Bluetooth :
Start = 240
PowerVolt = 0-255
PowerPourcent = 0-255
Temperatur = 0-255
Checksum = 0-255
End = 250

Checksum calculation:
for (byte data : datas) checksum += data;
checksum = checksum & 0xff;
checksum = 0xff - checksum