Arduino – Processing – Java

I want to reach the values of the counter about processing.
My problem is that my Arduino output is X20, and Y20 (step) and I want the output to be displayed on two surfaces One for X and Second Y. String X20 on X and 20 parts?
X for identification to which area belongs value 20 that the same values are not mapped into each area.


Ich will erreichen das werte vom Zähler sich über Processing darstellen.

Mein Problem ist das meine Arduino Ausgabe ist X20, Y20 (schritt) und ich will das die ausgaben auf Zwei Flächen dargestellt werden Eine für X und Zweite Y. String X20 auf X und 20 teilen?

X für Identifizierung zum welche Fläche gehört wert 20, dass die gleiche Werte nicht in jede Fläche abgebildet werden.

How should I achieve the same in processing as in my Arduino?
Wie soll ich das gleiche in Processing erreichen wie in meine Arduino?

char  Serial_in;
int   X_Serial_wert;              
int   Y_Serial_wert;    
……………………………………
// Wen “ X“  oder “ x“ in Serial gibt’s, parseInt() wird Wert für  X_serial_wert von Serial rausziehen

while (Serial.available())
       {  Serial_in = Serial.read();
        if (( Serial_in == 'X' ) ^ (Serial_in == 'x'))  { X_Serial_wert = Serial.parseInt(); }
       else
        if (( Serial_in == 'Y' ) ^ (Serial_in == 'y'))  { Y_Serial_wert = Serial.parseInt(); }

Erledigt.

void draw()
{ 

   while (port.available() > 0)
              {    String Serial_in = port.readString();   
                if (Serial_in != null) { 
                                         XYZF_servo =   Serial_in.charAt(0);  // split    X, Y, Z, A, F
                                             S_wert = Serial_in.substring(1);    // wert    
                                       }
}

if (  XYZF_servo == 'X' )           {   Pos_X_wert = S_wert;   }                          
 if (  XYZF_servo == 'Y' )           {   Pos_Y_wert = S_wert;   }  
  if (  XYZF_servo == 'Z' )           {   Pos_Z_wert = S_wert;   }
    if (  XYZF_servo == 'A' )          {   Pos_A_wert = S_wert;   }                                     
     if (  XYZF_servo == 'F' )          {   F_wert = S_wert;       }