RCX.LOG
Syntax RCX.LOG element
Explanation The RCX.LOG command expects the name of the data to log. Valid names are RCX variable names, .TIMER1 to .TIMER3, .SENSOR1 to .SENSOR3 or .CLOCK. The value is added to the data log as a two-element list. The first element is the name of the data element, while the second element is the data value itself. If the data log is full, nothing happens.

Use the SETLOGSIZE command to set the size of the log, and the LOADLOG command to retrieve the logged data.

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

TopIndex