User Tools

Site Tools


mycnc:mycnc_screen_configuration

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:mycnc_screen_configuration [2019/09/10 15:50] ivanmycnc:mycnc_screen_configuration [2019/09/13 09:37] ivan
Line 566: Line 566:
 ===Items=== ===Items===
  
-Items are a subset of myCNC actions, and are usually written as item:item-name (such as //item:motion-rapid-speed-xy//). Items are different from actions in that items effectively describe a value that can be changed by some input. In this way, there can exist both an action with some name, and an item with that same name, which are separate from one another. +Items are a subset of actions, and are written in the following form - item:item-name (such as //item:motion-rapid-speed-xy//). Items are different from actions in that items effectively describe a value that can be changed by some input (similar to Global Variables which store a value). In this way, there can exist both an action with some name, and an item with that same name, which are separate from one another (one will describe an action that will be taken, and the other will describe a value that will be changed by that action)
  
 Items are often presented to the user on the myCNC software screen to display relevant information which can then be edited (such as the jog overspeed, spindle speed, etc). The relevant actions for such items would be along the lines of motion-overspeed-inc or motion-overspeed-dec, describing a particular action to perform with this item (value).  Items are often presented to the user on the myCNC software screen to display relevant information which can then be edited (such as the jog overspeed, spindle speed, etc). The relevant actions for such items would be along the lines of motion-overspeed-inc or motion-overspeed-dec, describing a particular action to perform with this item (value). 
Line 572: Line 572:
 Items are typically used in conjunction with some input, as outlined in the Connections configuration dialog which can be found [[mycnc:mycnc_configuration_dialogs|here]].  Items are typically used in conjunction with some input, as outlined in the Connections configuration dialog which can be found [[mycnc:mycnc_configuration_dialogs|here]]. 
  
-A list of commonly used items can be found in the [[mycnc:item_list|Item List]].+A list of commonly used items can be found in the [[mycnc:item_list|Item List]]. 
  
 === Player actions === === Player actions ===
Line 646: Line 646:
 | editor-selection-insert | Insert selected lines | | editor-selection-insert | Insert selected lines |
 | editor-new | Create a new program file in the editor | | editor-new | Create a new program file in the editor |
-| editor-save-as | Save As |+| editor-save-as | Save File As |
 | editor-save | Save the editor file | | editor-save | Save the editor file |
  
Line 653: Line 653:
 ^ Action Name ^ Description ^ ^ Action Name ^ Description ^
 | save | Saves the file | | save | Saves the file |
-| open | Open file |+| open | Open selected file |
 | load-file: | Load a file. This will load a file from the predefined folders which can be set in Config > Preferences > Common | | load-file: | Load a file. This will load a file from the predefined folders which can be set in Config > Preferences > Common |
 | load-macro: | A test debug feature. Allows to load the macros which are referenced in the imported G-code directly into the NCList window. In this way, instead of using a single macro number to refer to a specific macro, the full macros will be written out in the NCList.| | load-macro: | A test debug feature. Allows to load the macros which are referenced in the imported G-code directly into the NCList window. In this way, instead of using a single macro number to refer to a specific macro, the full macros will be written out in the NCList.|
-| file-close | Close file |+| file-close | Close the program file |
 | dxf-import | Import a DXF file into myCNC | | dxf-import | Import a DXF file into myCNC |
 | image-import | Import an image into myCNC | | image-import | Import an image into myCNC |
Line 714: Line 714:
 | servo-pid-on | Turns ON the Servo PIDs | | servo-pid-on | Turns ON the Servo PIDs |
 | servo-pid-off | Turns OFF the Servo PIDs | | servo-pid-off | Turns OFF the Servo PIDs |
-| hw-pwm-inc | Increases the PWM value in preset increments |+| hw-pwm-inc | Increases the PWM value in preset increments (currently, these increments are set to 20) |
 | hw-pwm-dec | Decreases the PWM value in preset increments | | hw-pwm-dec | Decreases the PWM value in preset increments |
 | hw-dac-inc | Increases the DAC value in preset increments | | hw-dac-inc | Increases the DAC value in preset increments |
 | hw-dac-dec | Decreases the DAC value in preset increments | | hw-dac-dec | Decreases the DAC value in preset increments |
-| hw-direct-binary-set- | Directly sets an output value (for example, //hw-direct-binary-set-5// to turn on output 5. Using direct hardware commands instead of Hardware PLC procedures allows to free up the Hardware PLC process and to prevent situations where long PLC commands would be interrupted by a port set / port clear due to human input |+| hw-direct-binary-set- | Directly sets an output value (for example, //hw-direct-binary-set-5// to turn on output 5. Using direct hardware commands instead of Hardware PLC procedures allows to free up the Hardware PLC process and to prevent situations where long PLC commands would be interrupted by a port set / port clear due to a new input sent to the controller |
 | hw-direct-binary-clear- | Directly clears an output value (for example, //hw-direct-binary-clear-5// to clear output 5 | | hw-direct-binary-clear- | Directly clears an output value (for example, //hw-direct-binary-clear-5// to clear output 5 |
 | thc-arc-voltage-ref-inc | Increases the reference arc voltage value | | thc-arc-voltage-ref-inc | Increases the reference arc voltage value |
Line 729: Line 729:
 | dev-thc-jog-neg | Multidevice negative direction Torch Height Control jog | | dev-thc-jog-neg | Multidevice negative direction Torch Height Control jog |
  
-| toggle-widget-centring | Toggles the centring widget visibility on/off |+| toggle-widget-centring | Toggles the centring widget visibility on/off (centring widget code can be found in x-centring.xml) |
 | toggle-widget-rotation | Toggles the rotation widget visibility on/off | | toggle-widget-rotation | Toggles the rotation widget visibility on/off |
 | toggle-widget-sawcutting | Toggles the sawcutting widget visibility on/off (obsolete on newer software versions) | | toggle-widget-sawcutting | Toggles the sawcutting widget visibility on/off (obsolete on newer software versions) |
-| toggle-widget-user | Toggles the user widget visibility on/off |+| toggle-widget-user | Toggles the user settings widget visibility on/off |
  
 | toggle-button-flood | Toggles the flood state on/off (liquid) | | toggle-button-flood | Toggles the flood state on/off (liquid) |
Line 761: Line 761:
 | direct-run: | Allows for a direct run of a command from a BDisplay element. This will allow for a direct command which will be executed when a BDisplay element is clicked/pressed. | | direct-run: | Allows for a direct run of a command from a BDisplay element. This will allow for a direct command which will be executed when a BDisplay element is clicked/pressed. |
 | direct-run-confirm: | Will execute a command directly after a BDisplay element has been clicked AND after the user has confirmed that they want to proceed with the action via a confirmation dialog. | | direct-run-confirm: | Will execute a command directly after a BDisplay element has been clicked AND after the user has confirmed that they want to proceed with the action via a confirmation dialog. |
-| radio-confirm | | +| radio-confirm | Used for RadioDisplay elements to bring up a popup to ask the user to confirm whether the value should be changed before taking action 
-| mode-cutting-ignore | | +| mode-cutting-ignore | Ignores cutting commands to simply move over the material to check the machine movement path. Replaced by global variable #7530 in the more recent profiles (1366 series) 
-| mode-cutting-accept | |+| mode-cutting-accept | Accepts cutting commands from the control program |
  
-| mdi-save-list | |+| mdi-save-list | Reserved for a procedure in which a series of commands are entered through the Manual Data Input process, and which are then saved as a command list in a file. Contact myCNC Support for more information on this action. |
  
-| mode-show-ruler | |+| mode-show-ruler | Shows a ruler in the visualization window which indicates the 2D part's dimensions (width/length) |
  
-| mode-show-dimension | |+| mode-show-dimension | Shows the overall dimensions of the part on the program visualization screen (width/length) |
  
-| mode-show-workarea | |+| mode-show-workarea | Shows a box around the program visualization which will denote the work area (useful to see the minimum material dimensions necessary to fit the entire program file in) |
  
  
Line 777: Line 777:
  
 ^ Action Name ^ Description ^ ^ Action Name ^ Description ^
-| system-cmd | Run system command |+| system-cmd | Run system command |
 | application-close | Close MyCNC application | | application-close | Close MyCNC application |
 | application-close-confirm | Run confirmation dialog to Close MyCNC application (will ask the user to confirm via a popup window before closing the application) | | application-close-confirm | Run confirmation dialog to Close MyCNC application (will ask the user to confirm via a popup window before closing the application) |
Line 794: Line 794:
  
 | item-switch: | Used to switch between different values/labels for a certain item (allows to switch between options on a preset list) | | item-switch: | Used to switch between different values/labels for a certain item (allows to switch between options on a preset list) |
-| run-numpad: | Opens the numpad |+| run-numpad: | Opens the numpad widget |
 | item: | See [[mycnc:item_list|Common Item List]] for more information. | | item: | See [[mycnc:item_list|Common Item List]] for more information. |
  
Line 816: Line 816:
 | cnc-cutchart-save | Save the current cutting data to the Cutchart | | cnc-cutchart-save | Save the current cutting data to the Cutchart |
 | cnc-cutchart-load | Load cutting data for selected Cutting Mode | | cnc-cutchart-load | Load cutting data for selected Cutting Mode |
-| run-from-here | **Run From Here** command - start job file from selected line |+| run-from-here | **Run From Here** command - start job from the selected line |
  
  
mycnc/mycnc_screen_configuration.txt · Last modified: 2023/07/25 11:26 by ivan

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki