We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1632762 commit 5eda61dCopy full SHA for 5eda61d
libraries/Camera/examples/CameraCaptureRawBytes/CameraCaptureRawBytes.ino
@@ -60,7 +60,7 @@ void setup() {
60
61
void loop() {
62
if(!Serial) {
63
- Serial.begin(921600);
+ Serial.begin(115200);
64
while(!Serial);
65
}
66
libraries/Camera/extras/CameraRawBytesVisualizer/CameraRawBytesVisualizer.pde
@@ -20,7 +20,7 @@ final int cameraHeight = 240;
20
final boolean useGrayScale = true;
21
22
// Must match the baud rate in the Arduino sketch
23
-final int baudRate = 921600;
+final int baudRate = 115200;
24
25
final int cameraBytesPerPixel = useGrayScale ? 1 : 2;
26
final int cameraPixelCount = cameraWidth * cameraHeight;
0 commit comments