Difference between revisions of "MC-Basic:axis.POSITIONROLLOVERENABLE"

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "''<axis>''" to "<''axis''>")
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:axis.POSITIONROLLOVERENABLE}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 13: Line 14:
 
|DESCRIPTION=
 
|DESCRIPTION=
 
This property is used to enable or disable position rollover. When position rollover is enabled, the axis POSITIONROLLOVER property has relevance and the position command and feedback values are the modulus of the POSITIONROLLOVER property value.<br>
 
This property is used to enable or disable position rollover. When position rollover is enabled, the axis POSITIONROLLOVER property has relevance and the position command and feedback values are the modulus of the POSITIONROLLOVER property value.<br>
       0 (OFF - Rollover is disabled)<br>
+
0 (OFF) - Rollover is disabled <br>
       1 (ON - Rollover is enabled)
+
1 (ON) - Rollover is enabled
 +
 
 +
{{Note| This property can indicates the nature of the axis also, it it is linear(0) or rotary(1). In some sens equivalent to [[MC-Basic:axis.AXISTYPE|'''AXISTYPE''']]. It influences the dominant type of the group. }}
  
 
|TYPE=
 
|TYPE=
Line 20: Line 23:
  
 
|RANGE=
 
|RANGE=
0 (OFF), 1 (ON)
+
0 (OFF)<br>
 +
1 (ON)
  
 
|UNITS=
 
|UNITS=
Line 32: Line 36:
  
 
|LIMITATIONS=
 
|LIMITATIONS=
The position rollover setting may be changed only when the axis is disabled<br>
+
* The position rollover setting may be changed only when the axis is disabled.
 
+
* To set the value within a task, the axis must be attached to that task (using the ATTACH command).
To set the value within a task, the axis must be attached to that task (using the ATTACH command).
 
  
 
|EXAMPLE=
 
|EXAMPLE=
Line 42: Line 45:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:ATTACH|ATTACH]]
+
* [[MC-Basic:ATTACH|ATTACH]]
  
  
 
}}
 
}}

Latest revision as of 08:04, 20 April 2017

Language: English  • 中文(简体)‎

This property is used to enable or disable position rollover. When position rollover is enabled, the axis POSITIONROLLOVER property has relevance and the position command and feedback values are the modulus of the POSITIONROLLOVER property value.
0 (OFF) - Rollover is disabled
1 (ON) - Rollover is enabled

NOTE-Info.svgNOTE
This property can indicates the nature of the axis also, it it is linear(0) or rotary(1). In some sens equivalent to AXISTYPE. It influences the dominant type of the group.

Short form

<axis>.Prolen

Syntax

<axis>.PositionRollOverEnable= <option>

?<axis>.PositionRollOverEnable

Availability

All versions

Type

Long

Range

0 (OFF)
1 (ON)

Default

0

Scope

Configuration, Task or Terminal

Limitations

  • The position rollover setting may be changed only when the axis is disabled.
  • To set the value within a task, the axis must be attached to that task (using the ATTACH command).

Examples

A1.PositionRollover  = 1000                        ‘Set rollover value

A1.PositionRollOverEnable = On                 ‘Enable position rollover

See Also