Reading the state of a script

Hello,
I’m trying to debug a script BASIC IDE, I can’t see the state of the bits,
I tried using the red breakpoints but I don’t understand anything, please help me…

You can use the breakpoints to pause the script and then use the PRINT command to see the value.

For example if your bit is a variable wit the name of bitTest then use PRINT bitTest to print out the value of the variable. The print command can be used in the script itself or in the command window below the script.

1 Like

As Ted Mentioned you can use the Breakpoints and other debugging tools to step though the code. Then use the Console with the PRINT command to seeing the variables states.