From 0669f685e44333738df046c6558b4a69327870a5 Mon Sep 17 00:00:00 2001 From: Mark van den Heuvel Date: Tue, 8 Oct 2019 13:00:31 +0200 Subject: [PATCH] personal new folder --- .../Arduino counting test 1.ino | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 sketches/Markvandenheuvel/Arduino counting test 1/Arduino counting test 1.ino diff --git a/sketches/Markvandenheuvel/Arduino counting test 1/Arduino counting test 1.ino b/sketches/Markvandenheuvel/Arduino counting test 1/Arduino counting test 1.ino new file mode 100644 index 0000000..c98a698 --- /dev/null +++ b/sketches/Markvandenheuvel/Arduino counting test 1/Arduino counting test 1.ino @@ -0,0 +1,14 @@ +char z[] = "words are fun!"; //14 character +int x=0; + +void setup() { + Serial.begin(9600); +} +void loop() { + + while(x<15){ + Serial.println(z[x]); + delay(100); // pause loop for 100ms + x++; //x + 1 + 1 + } +}