From 5942b7fa1fdd0f4ca3145a0f42c39a2446d40a0e Mon Sep 17 00:00:00 2001 From: unlockable Date: Sat, 12 Aug 2023 14:02:03 +0800 Subject: [PATCH] blinking the light! --- Test/Test.ino | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Test/Test.ino diff --git a/Test/Test.ino b/Test/Test.ino new file mode 100644 index 0000000..37880ac --- /dev/null +++ b/Test/Test.ino @@ -0,0 +1,11 @@ +void setup() { + pinMode(2, OUTPUT); + +} + +void loop() { + digitalWrite(2, HIGH); + delay(2); + digitalWrite(2, LOW); + delay(14); +} \ No newline at end of file