fix the baud rate

This commit is contained in:
Milad Mohtashamirad 2025-08-17 13:22:06 +10:00
parent 5592b5342f
commit 529c78ce45
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as output
Serial.begin(1151200); // Start serial communication at 9600 baud
Serial.begin(115200); // Start serial communication at 9600 baud
}
void loop() {