LOADLOG
Syntax LOADLOG
Explanation The LOADLOG command uploads the current contents of the data log on the RCX robot controller. Its output is a list of two-element lists. The first element of each value pair is the name of the RCX variable, while the second element is the value.

Use the SETLOGSIZE command to set the size of the log, and the RCX.LOG command to log data.

Examples SETLOGSIZE 10
RCX.LOG .CLOCK
RCX.LOG .TIMER1
LOADLOG
Result: [[.CLOCK 2000][.TIMER1 65]]

TopIndex