Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
equipment:cnc:mill:maintenance [2024/02/20 16:30] – Touch probe samp20 | equipment:cnc:mill:maintenance [2024/11/19 21:42] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 83: | Line 83: | ||
The MESA pins (as viewed from the top of the card) are assigned to LinuxCNC nets according to the following diagram: | The MESA pins (as viewed from the top of the card) are assigned to LinuxCNC nets according to the following diagram: | ||
- | {{ :equipment: | + | {{drawio>equipment: |
- | ==== Spindle VFD control ==== | + | ===== Spindle VFD control |
The VFD has both software and hardware controls. From a hardware perspective the spindle is controlled from the '' | The VFD has both software and hardware controls. From a hardware perspective the spindle is controlled from the '' | ||
Line 91: | Line 91: | ||
The VFD signals are also used in combination with the door switch to inhibit motion. The HAL configuration corresponds to the following logic diagram: | The VFD signals are also used in combination with the door switch to inhibit motion. The HAL configuration corresponds to the following logic diagram: | ||
- | {{ :equipment: | + | {{drawio>equipment: |
Opening the door will always inhibit motion as this is connected to the reset pin of the flipflop. In order for motion to continue one of two things is required: the spindle to be disabled, or the spindle to be at speed. The '' | Opening the door will always inhibit motion as this is connected to the reset pin of the flipflop. In order for motion to continue one of two things is required: the spindle to be disabled, or the spindle to be at speed. The '' | ||
- | ==== Touch probe ==== | + | ===== Touch probe ===== |
The touch probe signal '' | The touch probe signal '' | ||
+ | |||
+ | ===== Emergency stop ===== | ||
+ | |||
+ | The emergency stop system is split into a hardware e-stop circuit and a software stop. | ||
+ | |||
+ | The hardware e-stop circuit runs at 240V and provides power to the VFD contactor and 48V stepper power supply. This circuit is fed from the following chain: | ||
+ | |||
+ | - Main power NVR switch. | ||
+ | - E-stop button. | ||
+ | |||
+ | The software e-stop has a few different sources: | ||
+ | |||
+ | * GPIO from the e-stop button ('' | ||
+ | * LinuxCNC internal faults. | ||
+ | |||
+ | While the MESA card is configured with an '' | ||
+ | |||
+ | ===== Axis limits and homing ===== | ||
+ | |||
+ | <callout title=" | ||
+ | |||
+ | See LinuxCNC' | ||
+ | |||
+ | * X axis origin is with the spindle to the left. Coordinates become more positive with the spindle moving right. | ||
+ | * Y axis origin is with the table at the back. Coordinates become more positive with the table moving forward. | ||
+ | * Z axis origin is with the spindle at the top. Coordinates become more negavive with the spindle moving down. | ||
+ | |||
+ | Each axis of the CNC mill has a pair of limit switches. Each pair is wired to a single input. The soft limits in the image below (B/C) are configured to be a small distance away from the hard limits (A/D). For X and Y the machine origin is set at negative soft limit (B) such that all coordinates are positive. For Z the machine origin is set at the positive soft limit (C) such that all coordinates are negative. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | For each joint we can home on the negative or positive limit switch, and this can be different to the machine origin. For convenience we have chosen the following homing directions: | ||
+ | |||
+ | * X axis home towards negative limit. The spindle moves to the left. | ||
+ | * Y axis home towards positive limit. The table moves to the front. | ||
+ | * Z axis home towards positive limit. The spindle moves up. | ||
+ | |||
+ | Note that the Y axis homes at the front despite the origin being at the back. This is to make the table easy to reach once homing has completed. | ||
+ | |||
+ | For convenience let's define some new parameters: | ||
+ | - '' | ||
+ | - '' | ||
+ | |||
+ | For each joint the ini settings should be configured like so: | ||
+ | |||
+ | < | ||
+ | [JOINT_0] | ||
+ | # X axis | ||
+ | HOME_OFFSET = -margin | ||
+ | MIN_LIMIT = 0 | ||
+ | MAX_LIMIT = travel_x - (margin*2) | ||
+ | HOME = MIN_LIMIT + 20 | ||
+ | |||
+ | [JOINT_1] | ||
+ | # Y axis | ||
+ | HOME_OFFSET = travel_y - margin | ||
+ | MIN_LIMIT = 0 | ||
+ | MAX_LIMIT = travel_y - (margin*2) | ||
+ | HOME = MAX_LIMIT - 20 | ||
+ | |||
+ | [JOINT_2] | ||
+ | # Z axis | ||
+ | HOME_OFFSET = -margin | ||
+ | MIN_LIMIT = -(travel_z - (margin*2)) | ||
+ | MAX_LIMIT = 0 | ||
+ | HOME = MAX_LIMIT - 5 | ||
+ | </ | ||