Does RADDS have the right pins to support a Smart Effector PCB? February 14, 2018 04:57PM |
Registered: 6 years ago Posts: 38 |
Re: Does RADDS have the right pins to support a Smart Effector PCB? February 15, 2018 12:31AM |
Registered: 10 years ago Posts: 14,685 |
Re: Does RADDS have the right pins to support a Smart Effector PCB? February 15, 2018 03:55AM |
Registered: 9 years ago Posts: 5,232 |
Re: Does RADDS have the right pins to support a Smart Effector PCB? February 15, 2018 05:37AM |
Registered: 10 years ago Posts: 14,685 |
Quote
o_lampe
In order to use X-max endstop, you'd have to use the stall detection method for homing.
On RADDS there is only one pin for z-probes: PWM3, but on Duet I have to use E0-stop for proximity sensors and the Z-probe connector for the Smart Effector. Are they the same?
// Endstops // E Stops not currently used // Note: RepRapFirmware only as a single endstop per axis // gcode defines if it is a max ("high end") or min ("low end") // endstop. gcode also sets if it is active HIGH or LOW // // 28 = RADDS X min // 30 = RADDS Y min // 32 = RADDS Z min // 39 = RADDS PWM3 // // This leaves 34, 36, and 38 as spare pins (X, Y, Z max) const Pin END_STOP_PINS[DRIVES] = { 28, 30, 32, 39, NoPin, NoPin, NoPin, NoPin }; ... // Z Probe pin // Must be an ADC capable pin. Can be any of the ARM's A/D capable // pins even a non-Arduino pin. const Pin Z_PROBE_PIN = 5; // RADDS "ADC" pin // Digital pin number to turn the IR LED on (high) or off (low) // D34 -- unused X-max on RADDS const Pin Z_PROBE_MOD_PIN = 34;
Re: Does RADDS have the right pins to support a Smart Effector PCB? February 15, 2018 02:50PM |
Registered: 6 years ago Posts: 38 |