We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b1746b commit 198d296Copy full SHA for 198d296
libraries/Portenta_Camera/extras/CameraRawBytesVisualizer/CameraRawBytesVisualizer.pde
@@ -27,12 +27,12 @@ void setup()
27
size(640, 480);
28
29
// if you have only ONE serial port active
30
- //myPort = new Serial(this, Serial.list()[0], 9600); // if you have only ONE serial port active
+ //myPort = new Serial(this, Serial.list()[0], 921600); // if you have only ONE serial port active
31
32
// if you know the serial port name
33
- //myPort = new Serial(this, "COM5", 9600); // Windows
+ //myPort = new Serial(this, "COM5", 921600); // Windows
34
//myPort = new Serial(this, "/dev/ttyACM0", 921600); // Linux
35
- myPort = new Serial(this, "/dev/cu.usbmodem14401", 9600); // Mac
+ myPort = new Serial(this, "/dev/cu.usbmodem14401", 921600); // Mac
36
37
// wait for full frame of bytes
38
myPort.buffer(bytesPerFrame);
0 commit comments