I'm trying to make a script that depending on the temperature i get from an arduino to call some actions. Though i am having some problems reading
through the port of the arduino.
If initialize the plugin first it seems to open the port just fine. However then i get an error from the arduino that there is already another software using the same port.
If initialize the arduino first i can't open the port through the Serial Plugin on eventghost. Am i missing a setting here ??
I'm outputting on the arduino side with this
Code: Select all
Serial.print("TEMPRATURE = ");
Serial.print(temp);
Serial.print("*C");
Thanks