INPUT #
Syntax: INPUT #channel, intVariable
INPUT #channel, floatVariable
INPUT #channel, stringVariable
- channel
- Channel is a integer value between 0 and 9. A channel is associated with a specific file when a file is opened.
- intVariable
- This is a integer variable which will be used to receive the value read from the file associated with the channel.
- floatVariable
- This is a float variable which will be used to receive the value read from the file associated with the channel.
- stringVariable
- This is a string variable which will be used to receive the value read from the file associated with the channel.
Note: it is your program's responsibility to read byte, int, float, or string values at the correct time.
|