Page 1 of 1

Re: setting initial value gate from gate builder ?

Posted: Tue Feb 16, 2016 9:19 am
by admin
Hi,
for write value in a gate at startup you can use this code:

Code: Select all

Function void myfunction()
#startup
	// set gate "mygate", 0 at 25 for example
	SetNumGateValue("mygate", 0, 25);
end
Best regards