My app freeze when I connect to the HC-06 Bluetooth Module

void loop()
{
char r = bluetooth.read();
//delay(100);
//Serial.println®;
//delay(100);
while (bluetooth.available() > 0)
{
eixoX = bluetooth.read();
delay(10);
eixoY = bluetooth.read();
}

You will definitely have problems getting your X and Y values in the Arduino in the proper format and keeping them straight.

Look through the samples at FAQ Section: Bluetooth < version 4 (BlueTooth Client) and Arduino and see how multiple values are sent and converted from text to int.

Timing is a poor way to separate values, compared to text delimiter techniques.