From 5592b5342f3ee7fc58c9a029942c2f1b806381c1 Mon Sep 17 00:00:00 2001 From: Milad Mohtashamirad Date: Sun, 17 Aug 2025 13:20:46 +1000 Subject: [PATCH] just a blinky. --- flow_controller.ino | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 flow_controller.ino diff --git a/flow_controller.ino b/flow_controller.ino new file mode 100644 index 0000000..dd7a7ce --- /dev/null +++ b/flow_controller.ino @@ -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 +} \ No newline at end of file