UNO/sketch_may10b.ino
2023-05-10 19:08:29 +03:00

11 lines
192 B
C++

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(1000);
}