From 05e781e63f7ffc67c9a84c497502cb1dce14b72a Mon Sep 17 00:00:00 2001 From: "user@node5.net" Date: Sat, 6 Dec 2025 22:48:05 +0100 Subject: Cleanup unused items from sjory3 --- Arduino2024/Arduino2024.ino | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Arduino2024/Arduino2024.ino (limited to 'Arduino2024/Arduino2024.ino') diff --git a/Arduino2024/Arduino2024.ino b/Arduino2024/Arduino2024.ino deleted file mode 100644 index 3e48358..0000000 --- a/Arduino2024/Arduino2024.ino +++ /dev/null @@ -1,33 +0,0 @@ - -/* - simple rotation of the motor - the gear ration on the carousel is - 7/40 and there is 10 slots to rotate between - - - -*/ - - -//define Pins -#define PulPin 7 -#define dirPin 6 -int pd = 500; - -void setup() { - - pinMode(PulPin, OUTPUT); - pinMode(dirPin, OUTPUT); - -} - -void loop() { - - digitalWrite(dirPin, HIGH); - digitalWrite(PulPin, HIGH); - delayMicroseconds(pd); - digitalWrite(PulPin, LOW); - delayMicroseconds(pd); - - -} -- cgit v1.3.1