About Androard PRO: Arduino Control
**** The source code files and all intellectual rights are on sale for more information contact the email: thorzeus94@gmail.com****
With Androard PRO you have multiple fully customizable layouts and send custom commands for your project. The program has a library of objects that are:
Button:
Sends a command when pressed or released.
Switch:
Sends a command when changes to on or off.
(The same commands defined in the application if sent from Arduino can be used to turn on or off)
Slider:
Sends a command if slide the bar, range 0 to 100.
(The same command defined in the application if sent from Arduino can be used to change the bar position)
Directional:
Sends a command when pressed or released of respective directions.
Analog:
Sends a command to each x, y positions from analog
Accelerometer:
Sends a command for each x, y, z axis, range -100 to 100 (you can set the update interval)
Text field:
Displays a text.
(If text is sent from Arduino use #n for a newline)
Voice recognition:
Sends a voice command for Arduino
(The command read is sent in lower case)
GPS:
Sends latitude, longitude, altitude (m) velocity (m / s), horizontal accuracy and vertical accuracy of GPS for Arduino.
Control knob:
Sends a command if rotate the knob,range 0 to 100.
(The same command defined in the application if sent from Arduino can be used to change the knob rotation)
Graphic:
Graphically displays the numerical value sent from Arduino
The application also includes Terminal Mode
Note:
* Application includes commands sent automatically at the end of each line ' n' which should be used with readStringUntil (' n'); in Arduino.
* When you send a command from Arduino to application use println();
* When connecting Arduino is sent BLUETOOTH_CONNECTED command and if disconnect BLUETOOTH_DISCONNECTED.
PDF Examples
https://drive.google.com/file/d/0Bwcq8Ul10eG9WnMzWHdlNGJjZVU/view?usp=sharing
FREE Version
https://play.google.com/store/apps/details?id=air.AndroardFREE
Tested on devices:
Samsung Galaxy S5
Samsung Galaxy Gran Prime
* Optimized for aspect screens 16: 9
Like the Facebook page
www.facebook.com/androard
Need object or just report any error contact the developer
Thorzeus94@gmail.com
Download and install
Androard PRO: Arduino Control version 1.7.70 on your
Android device!
Downloaded 50+ times, content rating: Everyone
Android package:
air.AndroardPRO, download Androard PRO: Arduino Control.apk
by D####:
Looks pretty decent. There's still room for improvement, though. 1) A "snap to grid" feature is a must for layout editors. Please implement it. 2) Analog stick sends X and Y data separated by a newline, which may cause inconsistent reading. X and Y should be on the same line. A good idea is to first send a prolog character 0x02 and an epilog of 0x03 in the end to mark a data packet. 2.5) Analog stick sends text data. A good option is to allow a user to opt for binary data to be sent for faster communication and reduce MCU text-to-number conversion overhead. 3) There should be a setting to control how often the data is sent. On slow 9600 connections data may become garbled if sent too fast. 4) I'm not sure what the "Graphic" control does.