Home› Programming
Discussion
Back to discussions page
tor_odigo
Posts: 19 Apprentice
Script Code basics |
111 views
|
Answered | |
/ Most recent by tor_odigo
in Programming
|
2 comments |

Hello,
Simple question about making functions in script codes in Polyscope on UR:
when making function like this:
def Funk()
set_digital_out(0,True)
end
and then make another script code with the line:
Funk()
I get an error message on the set_digital_out(0,True). What am I doing wrong?
Thanks in advance,
Tor
Simple question about making functions in script codes in Polyscope on UR:
when making function like this:
def Funk()
set_digital_out(0,True)
end
and then make another script code with the line:
Funk()
I get an error message on the set_digital_out(0,True). What am I doing wrong?
Thanks in advance,
Tor
Tagged:
Here below is an extra of UR script manual which you can download from UR website:
set_digital_out(0,True) looks ok.
Here below is the description of set_digital_out available in UR script manual.