UE4Duino - Arduino to UE4 plugin Release!

UE4DUINO 2.0 problem with string

Hello guys,

I’m currently working on connecting two Arduino simultaneously. So I installed new version of ue4duino and i have problem with output of Arduino inside Unreal Engine. The serial monitor of arduino shows that everything is ok and my potentiometer works fluently. Inside UE4, values are freezing or working with huge delay, or working for some time and freezing.

My script is below
My blueprint is classic - as posted above.

Thank you in advance

int val2,val3,val4 = 0;

void setup()
{
Serial.begin(9600); // setup serial
}
void loop()
{
val2 = analogRead(A2);
val3 = analogRead(A3);
val4 = analogRead(A4);
Serial.print(val2); Serial.print(‘,’);
Serial.print(val3); Serial.print(‘,’);
Serial.println(val4);
delay(1);
}