good morning everyone, I have a question.
How do I get a P position stored in a program on TP from a Karel program.
for exmple, this is my TP programa
Code
----ON TeachPendant
J P[1] 50% FINE
L P[2] 70% FINE
Call GETPOSITION
END
---ON Karel
Program GETPOSITION
var
--declaration
begin
--here i need to get the P[1] position and manipulated it without using a PR register
END GETPOSITION
Display More
can you help me?