User Tools

Site Tools


mycnc:flatbed_correction

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
mycnc:flatbed_correction [2019/06/17 12:44] ivanmycnc:flatbed_correction [2020/02/24 14:21] ivan
Line 1: Line 1:
 =====myCNC Flatbed Correction===== =====myCNC Flatbed Correction=====
  
-This article discusses the flatbed correction feature built into myCNC software which is often useful when the working table is not even or has certain spots which are higher or lower than the reference position. This is especially useful in cases when something like a tangential knife needs to go over the uneven table, with up to a millimeter of play being involved, resulting in a cut that does not actually go through the working material properly. +This article discusses the flatbed correction feature built into myCNC software which is often useful when the working table is not even or has certain spots which are higher or lower than the reference position. This is especially useful in cases when something like a tangential knife needs to go over the uneven table, resulting in a cut that does not actually go through the working material properly, or alternatively a cut that goes far too deep into the material
  
-In order to account for this, go into **Settings > Config > Technology > Special Purpose > Flatbed Correction**.+In order to account for this, flatbed correction is used.
  
-The screen presented to you will look similar to the following screenshot:+The following video goes over the basic process of setting up flatbed correction within myCNC software:
  
-{{:mycnc:flatbed-001-main-window.png}}+{{youtube>7XkUFfnOVVM?large}}
  
-First of all, **enable** the flatbed correction:+To set up flatbed correctioninto **Settings > Config > Technology > Special Purpose > Flatbed Correction**.
  
-{{:mycnc:flatbed-004-enable.png}}+The screen presented to you will be the following:
  
-Next, the table on the settings page presents a number of values in the XY-plane and their z-positions. These values can either be inputted manually by using a sensor and recording the position by hand, or by using the M402 macro. In order to use the macro, move the sensor to the position you want to measure, then press the **Measure (M402) and Save** button. This will lower the sensor down until contact, then lift it back up and record the z-position at which the sensor was triggered+{{:mycnc:flatbed-update-009.png}}
  
-{{:mycnc:flatbed-003-m402.png}}+  * After the setup process has been completed, a table of points in the XY-plane and their Z-positions will be presented on this page. These values can either be recorded by using the AutoMeasure procedure, or by using a sensor and recording each point individually by using the M402 macro.
  
-In order to remove any of the table level discrepancy valuesyou can press the Delete button for each particular value.+  * Using the AutoMeasure procedurethe operator can set the measurement distances for the X and Y axes as well as the number of points at which the height measurements will be taken for the XY-plane
  
-{{:mycnc:flatbed-002-checkmarks.png}}+    * **Note:** Flatbed correction **must be disabled** prior to beginning taking the measurements, otherwise the existing flatbed correction adjustments will conflict with new correction values. **Reload** the application after disabling flatbed correction
  
-By adding these correction points, myCNC software will use triangulation in order to create a complete updated map of the working table. From here on, whenever Flatbed Correction is enabled, the machine will automatically adjust the z-axis height of the working tool in order to adjust for the table level changes depending on where in the XY-plane it currently is.+  * The **Auto Measure Procedure** button can be pressed to begin the probing process. 
 + 
 +    * //NOTE: If you leave the flatbed correction setting screen while the procedure is running, the measurement program will be paused until you return back to the screen.//  
 + 
 +  * After the measurement procedure has completed and all the points are logged, select the Reference Z value. The Reference Z value should be chosen to be between the minimum and the maximum measure point, preferably somewhere in the middle between the two. 
 + 
 +    * //NOTE: The myCNC flatbed correction feature is limited to 1000 pulses (+ or -) from the Reference Z position. Depending on the number of pulses per unit that you have set up in the Axes/Motors window, this may be anywhere from a centimeter to a fraction of a millimeter. If the machine moves above or below the 1000 pulses limit, it will not be able to accurately correct for flatbed distortion until it is back down below the limit. This is why the reference Z value must be selected correctly. //  
 + 
 +  * In order to use the M402 macro for manual point measurement, move the sensor to the position you want to measure, then press the **Measure (M402) and Save** button. This will lower the sensor down until contact, then lift it back up and record the z-position at which the sensor was triggered.  
 + 
 +After the measurements have been taken and the Reference Z has been entered, press the Save CFG button, enable Flatbed correction and reload the application.  
 + 
 +By adding these correction points, myCNC software will create an updated Z-axis map of the working table. From here on, whenever Flatbed Correction is enabled, the machine will automatically adjust the z-axis height of the working tool in order to adjust for the table level changes depending on where in the XY-plane it currently is
 + 
 +====M402 macro==== 
 + 
 +The code for the M402 macro can be found below: 
 + 
 +<code> 
 +(Surface measure macro)    
 +G28.2 Z0 (save current Z into Register1.Z)     
 + 
 +M88 L1 P15 (watch for input(P) to be closed (L1) - EDIT THIS)   
 +G91 G0 Z -35.000 F 200  
 +(move down, stop if sensor triggered) 
 +G91 G0 Z 2.000 F 400 
 +M89 L1 P15 (watch for input(P) to be closed (L1) - EDIT THIS)       
 +G91 G0 Z -2.000 F 20.0  
 +      
 +G4 P0.2    
 +   
 +G90 G10 L81 P8171 Q5021   
 +G90 G10 L81 P8172 Q5022     
 +G90 G10 L81 P8173 Q5023     
 + 
 +G90 G10 L80 P8170 Q1  
 + 
 +G91 G0 Z10 
 +</code> 
 + 
 +Here, you have to edit the two lines with the EDIT THIS comments. In the input P, you have to specify the input number for the sensor (set as 15 in this example), and in the L field you have to specify the behaviour that will be interpreted as the sensor being triggered (0 for a normally closed sensor which will be opened when triggered, and 1 for a normally open sensor which will be closed at contact)
mycnc/flatbed_correction.txt · Last modified: 2022/12/01 11:37 by ivan

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki