Difference between revisions of "MC-Basic:INPB"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:INPB to MC-Basic:INPB: Global renaming of Axystems: namespace into (Main):)
Line 38: Line 38:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:INPW|INPW]]
+
* [[MC-Basic:INPW|INPW]]
  
 
[[Category:Axystems:Obsolete|INPB]]
 
[[Category:Axystems:Obsolete|INPB]]
 
}}
 
}}

Revision as of 08:38, 22 May 2014

This command reads the value of a byte at the specified I/O space address.

Syntax

Inpb (<address>)

Availability

All versions

Type

The <address> must be a Long expression. The function returns a Long value.

Range

The <address> must be in the range 0x0 to 0xFFFF

Scope

Task or Terminal

Limitations

  • Read only
  • Not supported in EtherCAT system

Examples

X=inpb (256)                            ‘read a byte and assign its value to variable X

?inpb(256)                                 ‘Read a byte

See Also