Hello, I am pretty new to Fanuc and I am working on a project with a CRX Robot.
My goal is to create an HTML app, with buttons to execute KRL or TP program. I have tried to use the Fanuc iPendant Controls but I am doing something wrong / I am not finding a solution to do this.
I tried to use the Execution Control, to launch my Karel program, but it doesnt work, i have tried to use different path to the file but it doesnt work neither .
My KRL program :
PROGRAM premier
BEGIN
IF DOUT[2]=OFF THEN
DOUT[2] = ON
ELSE
DOUT[2]=OFF
ENDIF
END premier
My HTML :
<HTML>
<HEAD>
<STYLE>
p {color: black;background-color:#FFFFCC;}
</STYLE>
<title>Accueil</title>
</HEAD>
<BODY style="background-color:#FFFFCC;">
<p><img src="logoa.gif" width="200"></p>
<object classid="clsid:BEC06F36-B6DE-4903-838C-5B110F58550E" id="FRIPExecution1">
<param name="width" value="32">
<param name="height" value="32">
<param name="FastLoad" value="1">
<param name="Name" value="md/premier.pc">
</object>
</BODY>
</HTML>
Thanks for your help, if you have any working example or others solutions I am taking it.