so all I’m trying to do is use processing to read a value from the Serial port of an arduino. I have already connected I just don’t know the correct python method to read the value.
Current code:
def setup():
global arduino
size(10,10)
println(Arduino.list())
arduino = Arduino(this, Arduino.list()[1], 9600)
def draw():
#val = arduino.analogRead(0)
for i in range(10):
val = arduino.readString(i) #<----------------- Here 'readString' doesn't work, what should this be?
print("{} ___ {}".format(frameCount,val))
delay(10000)
Use any serial software or code of your choice to send serial data.
I used the Serial Monitor that comes with Arduino software (hardware not required) to send data.