Arduino_serial/sketch_may10a/sketch_may10a.ino
2023-05-10 19:02:08 +03:00

11 lines
210 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Все будет хорошо!");
delay(100);
}