Processing Code "Error, disabling_serialEvent() in Arduino
问题 I receive this error when trying to run my arduino and Processing Error, disabling serialEvent() for /dev/cu.usbmodem1451 null I am running process 2 and Arduino 1.6.5 on a MAC OSX 10.9.5 I am super new to processing and arduino . I am just trying to use three potentiometers to control the RGB values of the background color. Arduino code: int potPin = 0; //int potPinB = 1; //int potPinC = 2; void setup() { Serial.begin(9600); } void loop() { int val = map(analogRead(potPin), 0, 1023, 0, 255);