1-) How can I see the data I created on Robot Studio on Flexpendant? For example: I created a variable called (“VAR Num Partcount”). When I enter Flexpendant, go into Program Data and enter the Num section, I cannot see any data called “PartCount”. How can I see this? 2-) My second question is how can we see the program data through RobotStudio software? For example, how can I see the value of a clock data I created called “cycletime” on Robot Studio? Thank you.
If you declared the num variable as LOCAL in a module you can view it by changing the scope to that module. Otherwise, you should probably have that variable be global.
A clock does not show the timer value. You use the ClkRead instruction to put its value into a num variable. Then, you may view or use it.
Firstly, thank you. I couldn’t understand where to see the program data value in Robot Studio. Could you please tell me where I can see it?
Where it is declared, if you mouse over it, it should show the value.
Hi!
Rightclick the variable and go to “Inspect” than u can see the live value on the bottom of your robotstudio. If you hover over with your mouse the value wont show the changing value.