just a blinky.

This commit is contained in:
Milad Mohtashamirad 2025-08-17 13:20:46 +10:00
commit 5592b5342f
1 changed files with 15 additions and 0 deletions

15
flow_controller.ino Normal file
View File

@ -0,0 +1,15 @@
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as output
Serial.begin(1151200); // Start serial communication at 9600 baud
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
Serial.println("LED ON"); // Print status
delay(1000); // Wait 1 second
digitalWrite(13, LOW); // Turn the LED off
Serial.println("LED OFF"); // Print status
delay(1000); // Wait 1 second
}