commit 5592b5342f3ee7fc58c9a029942c2f1b806381c1 Author: Milad Mohtashamirad Date: Sun Aug 17 13:20:46 2025 +1000 just a blinky. 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