-
Notifications
You must be signed in to change notification settings - Fork 0
/
logik2.json
51 lines (51 loc) · 1.4 KB
/
logik2.json
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
{
"blocks": {
"Memory1": {
"type": "MainLib/memory",
"x": 150, "y": 250, "width": 50, "height": 50,
"parameters": { "initial_value": 1.0 },
"flip" : true
},
"Gain1": {
"type": "MainLib/gain",
"x": 50, "y": 150, "width": 50, "height": 50,
"parameters": { "gain": "__dt" }
},
"Sum1": {
"type": "MainLib/sum",
"x": 150, "y": 150, "width": 50, "height": 50,
"parameters": {}
},
"Display22": {
"type": "MainLib/display",
"x": 350, "y": 50, "width": 150, "height": 50,
"parameters": {}
},
"Integral2": {
"type": "MainLib/integral",
"x": 250, "y": 150, "width": 50, "height": 50,
"parameters": { "inital_value": 0.0 }
},
"Gain2": {
"type": "MainLib/gain",
"x": 150, "y": 50, "width": 50, "height": 50,
"parameters": { "gain": -1.0 },
"flip" : true
},
"Scope_2": {
"type": "MainLib/scope",
"x": 350, "y": 150, "width": 600, "height": 300,
"parameters": {}
}
},
"signals": [
[ "Sum1" , 0, "Integral2" , 0, {} ],
[ "Gain1" , 0, "Sum1" , 0, {} ],
[ "Sum1" , 0, "Memory1" , 0, {} ],
[ "Memory1" , 0, "Sum1" , 1, {} ],
[ "Integral2", 0, "Gain2" , 0, {} ],
[ "Gain2" , 0, "Gain1" , 0, {} ],
[ "Integral2", 0, "Display22" , 0, {} ],
[ "Integral2", 0, "Scope_2" , 0, {} ]
]
}