-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDIGITAL_WRITE_SB.sci
93 lines (85 loc) · 2.98 KB
/
DIGITAL_WRITE_SB.sci
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2011-2011 - DIGITEO - Bruno JOFRET
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
//
//
function [x, y, typ]=DIGITAL_WRITE_SB(job, arg1, arg2)
x=[];
y=[];
typ=[];
select job
case 'plot' then
// deprecated
case 'getinputs' then
// deprecater
case 'getoutputs' then
// deprecated
case 'getorigin' then
// deprecated
case 'set' then
x=arg1;
graphics=arg1.graphics;
exprs=graphics.exprs
model=arg1.model;
while %t do
[ok,num_pin,num_arduino,exprs]=scicos_getvalue(['Arduino Digital Write parameters' ; 'UNO digital PIN are : 0 to 13.'; 'MEGA digital PIN are : 0 to 53.'],..
[gettext('Digital Pin'),gettext('Arduino card number')],list('vec',1,'vec',1), exprs)
mess=[];
if ~ok then// Cancel
break;
end
if num_arduino<>1 then
mess=[mess ;gettext("Only card 1 can be used with this toolbox version ")];
ok=%f;
end
if num_pin < 2 | num_pin>53
mess=[mess ;_("Digital Pin must be between 2 and 53.")]
ok = %f
end
if ok then// Everything's ok
rpar=[num_pin,num_arduino];
model.rpar.objs(1).model.rpar=rpar;
model.rpar.objs(1).graphics.exprs= string(rpar);
graphics.exprs = string(rpar);
x.model=model;
x.graphics = graphics;
break
else
message(mess);
end
end
case 'define' then
diagram=scicos_diagram();
arduino_comp=ARDUINO_DIGITAL_WRITE('define')
arduino_comp.graphics.pein = 3;
arduino_comp.graphics.peout = 3;
arduino_comp.graphics.pin = 4;
input_port=IN_f('define')
input_port.graphics.exprs=["1"]
input_port.model.ipar=[1]
input_port.graphics.pout=4;
diagram.objs(1)=arduino_comp;
diagram.objs(2)=input_port;
diagram.objs(3)=scicos_link(xx=[0 ; 0],yy=[0 ; 0], ct=[5, -1], from=[1, 1,0], to=[1, 1,1])
diagram.objs(4)=scicos_link(xx=[0 ; 0],yy=[0 ; 0], ct=[1,1], from=[2, 1,0], to=[1, 1,1])
model=scicos_model();
model.sim='csuper'
model.blocktype='h';
model.dep_ut=[%f %f];
model.rpar=diagram
model.in=-1
model.in2=-2
model.intyp=-1
Pin=13; num_arduino=1;
x=standard_define([2 2],model,[],[]);
x.graphics.in_implicit=['E'];
x.graphics.style=["blockWithLabel;verticalLabelPosition=bottom;verticalAlign=top;spacing=-2;displayedLabel=Digital Write Pin %s<br>on card %s"]
x.graphics.exprs=[string(Pin),string(num_arduino)];
end
endfunction