summaryrefslogtreecommitdiff
path: root/js/Linear/PID.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/Linear/PID.js')
-rw-r--r--js/Linear/PID.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/Linear/PID.js b/js/Linear/PID.js
index 659289e1..037ed7a5 100644
--- a/js/Linear/PID.js
+++ b/js/Linear/PID.js
@@ -35,7 +35,7 @@ function PID() {
this.model.firing = new ScilabBoolean([false]);
this.model.dep_ut = new ScilabDouble([false,false]);
this.model.rpar = new ScilabDouble([scs_m]);
- var gr_i = [];
+ var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"PID\",sz(1),sz(2));"]);
this.x = standard_define([2,2],this.model,[],gr_i);
return new BasicBlock(this.x);
}