Help Troubleshooting Ramps Board May 14, 2017 04:26PM |
Registered: 6 years ago Posts: 5 |
const int stepPin = 54; const int dirPin = 55; void setup() { // put your setup code here, to run once: pinMode(stepPin, OUTPUT); pinMode(dirPin, OUTPUT); pinMode(LED_BUILTIN, OUTPUT); } void loop() { digitalWrite(dirPin, HIGH); digitalWrite(LED_BUILTIN, HIGH); for (int x = 0; x < 200; x++) { digitalWrite(stepPin, HIGH); delayMicroseconds(500); digitalWrite(stepPin, LOW); delayMicroseconds(500); } digitalWrite(LED_BUILTIN, LOW); delay(1000); }
Re: Help Troubleshooting Ramps Board May 14, 2017 05:14PM |
Registered: 8 years ago Posts: 978 |
Re: Help Troubleshooting Ramps Board May 14, 2017 05:21PM |
Registered: 6 years ago Posts: 5 |
Re: Help Troubleshooting Ramps Board May 14, 2017 05:49PM |
Admin Registered: 12 years ago Posts: 6,792 |
Re: Help Troubleshooting Ramps Board May 14, 2017 06:01PM |
Registered: 6 years ago Posts: 5 |
Quote
The translator inputs STEP, DIR, and MSx, as well as the internal sequencing logic, all remain active, independent of the ENABLE input state.
Re: Help Troubleshooting Ramps Board May 14, 2017 06:42PM |
Admin Registered: 12 years ago Posts: 6,792 |
Re: Help Troubleshooting Ramps Board May 14, 2017 09:04PM |
Registered: 6 years ago Posts: 5 |
Re: Help Troubleshooting Ramps Board May 14, 2017 09:09PM |
Admin Registered: 12 years ago Posts: 6,792 |
Re: Help Troubleshooting Ramps Board May 14, 2017 09:45PM |
Registered: 6 years ago Posts: 5 |
Re: Help Troubleshooting Ramps Board May 14, 2017 09:58PM |
Admin Registered: 12 years ago Posts: 6,792 |