- In the Android app can you recognise when the app has been closed ‘illegally’ and act upon that action next time the app is opened. Might make it idiot proof.
Not sure to understand, please clarify "This allows Apps to be closed by swiping the minimized app icon off the screen"
Can the touch point be recognised without moving the yellow dot?
I understand your concern, makes sense, let me think about it...
- What do I need to change to alter the data fields fed back to the Android and can it be coded in “Your code here” areas in the Arduino sketch. I am doing number crunching on Arduino from Joystick positions and would like to send three values back to android.
To send back three values to Android (data_1, data_2,data_3,) just modify sendBlueToothData()
void sendBlueToothData() {
......................
......................
mySerial.print((char)0x2); // Start of Transmission
mySerial.print(getButtonStatusString()); mySerial.print((char)0x1); // buttons status feedback
mySerial.print(data_1); mySerial.print((char)0x4); // datafield #1
mySerial.print(data_2); mySerial.print((char)0x5); // datafield #2
mySerial.print(data_3); // datafield #3
mySerial.print((char)0x3); // End of Transmission
}
}