diff options
| author | user@node5.net <user@node5.net> | 2025-12-06 22:48:05 +0100 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2025-12-06 22:51:44 +0100 |
| commit | 05e781e63f7ffc67c9a84c497502cb1dce14b72a (patch) | |
| tree | 3daa5187f977a3748b8924ae2d0ab829fa99b589 /Arduino2024/Arduino2024.ino | |
| parent | cef2c222dbed2420604558eb54a187c84e9adcb8 (diff) | |
Cleanup unused items from sjory3
Diffstat (limited to 'Arduino2024/Arduino2024.ino')
| -rw-r--r-- | Arduino2024/Arduino2024.ino | 33 |
1 files changed, 0 insertions, 33 deletions
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); - - -} |
