-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlibrary.json
270 lines (270 loc) · 7.64 KB
/
library.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
{
"name": "OwnTech_Examples",
"version": "0.0.2",
"description": "A library that contains OwnTech Power API examples",
"keywords": "Power, Control, OwnTech",
"repository":
{
"type": "git",
"url": "https://github.com/owntech-foundation/examples.git"
},
"build":
{
"srcFilter": "-<**>"
},
"license": "LGPL-2.1",
"homepage": "https://www.owntech.org/",
"frameworks": ["zephyr"],
"platforms": ["ststm32"],
"authors":
[
{
"name": "Jean Alinei",
"email": "[email protected]",
"maintainer": true
},
{
"name": "Ayoub Farah Hassan",
"email": "[email protected]",
"maintainer":true
},
{
"name": "Régis Ruelland",
"email": "[email protected]"
},
{
"name": "Luiz Villa",
"email": "[email protected]"
},
{
"name": "Clément Foucher",
"email": "[email protected]"
},
{
"name": "Antoine Boche",
"email": "[email protected]"
}
],
"examples": [
{
"name": "boost_voltage_mode",
"title": "Voltage Mode Boost",
"description": "Voltage mode boost converter using PID controller for TWIST",
"group": "Examples TWIST",
"base": "TWIST/DC_DC/boost_voltage_mode",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "buck_voltage_mode",
"title": "Voltage Mode Buck",
"description": "Voltage mode buck converter using PID controller for TWIST",
"group": "Examples TWIST",
"base": "TWIST/DC_DC/buck_voltage_mode",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "buck_current_mode",
"title": "Current Mode Buck",
"description": "Peak current mode buck converter using PID controller for TWIST",
"group": "Examples TWIST",
"base": "TWIST/DC_DC/buck_current_mode",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "interleaved",
"title": "Interleaved",
"description": "Interleaved mode buck converter with PID controlled output voltage",
"group": "Examples TWIST",
"base": "TWIST/DC_DC/interleaved",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "ripple_measurement",
"title": "Current Ripple Measurement",
"description": "Current ripple measurement in buck voltage mode, by sweeping adc trigger",
"group": "Examples TWIST",
"base": "TWIST/DC_DC/current_ripple_measurement",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "AC_cient_server",
"title": "AC client server",
"description": "implementation of AC client server in microgrid",
"group": "Examples TWIST",
"base": "TWIST/Microgrid/AC_client_server",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "AC_peer_to_peer",
"title": "AC peer to peer",
"description": "implementation of AC peer to peer in microgrid",
"group": "Examples TWIST",
"base": "TWIST/Microgrid/AC_peer_to_peer",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "DC_cient_server",
"title": "DC client server",
"description": "implementation of DC client server in microgrid",
"group": "Examples TWIST",
"base": "TWIST/Microgrid/DC_client_server",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "DC_peer_to_peer",
"title": "DC peer to peer",
"description": "implementation of DC peer to peer in microgrid",
"group": "Examples TWIST",
"base": "TWIST/Microgrid/DC_peer_to_peer",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "DC_droop",
"title": "DC droop",
"description": "implementation of DC droop in microgrid",
"group": "Examples TWIST",
"base": "TWIST/Microgrid/DC_droop",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "grid_forming",
"title": "Grid Forming Inverter",
"description": "It generates an AC voltage source. Commonly, a grid-forming inverter is a device that autonomously establishes and maintains stable grid voltage and frequency.",
"group": "Examples TWIST",
"base": "TWIST/DC_AC/grid_forming",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "grid_following",
"title": "Grid Following Inverter",
"description": "It is an AC current source which follow a grid voltage. Commonly, a grid-following inverter adjusts its output to match the voltage and frequency of the existing electrical grid",
"group": "Examples TWIST",
"base": "TWIST/DC_AC/grid_following",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "blinky",
"title": "Blinky LED",
"description": "Toggling LED",
"group": "Examples SPIN",
"base": "SPIN/LED/blinky",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "duty_cycle_setting",
"title": "Setting PWM duty cycle",
"description": "Using PWM with duty cycle",
"group": "Examples SPIN",
"base": "SPIN/PWM/duty_cycle_setting",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "multiple_pwm",
"title": "Setting multiple PWM",
"description": "Using multiple PWM with duty cycle",
"group": "Examples SPIN",
"base": "SPIN/PWM/multiple_pwm",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "phase_shift",
"title": "Setting PWM phase shift",
"description": "Setting a phase shift between two PWM",
"group": "Examples SPIN",
"base": "SPIN/PWM/phase_shift",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "signal_generation",
"title": "DAC signal generation",
"description": "Sawtooth generation with DAC",
"group": "Examples SPIN",
"base": "SPIN/DAC/signal_generation",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "adc_software_trigger",
"title": "Software triggered ADC",
"description": "setting the adc to be trigerred by software",
"group": "Examples SPIN",
"base": "SPIN/ADC/adc_hrtim_trigger",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "adc_hrtim_trigger",
"title": "HRTIM triggered ADC",
"description": "setting the adc to be trigerred by the hrtim",
"group": "Examples SPIN",
"base": "SPIN/ADC/adc_hrtim_trigger",
"files": [
"main.cpp",
"README.md"
]
},
{
"name": "incremental_encoder",
"title": "Incremental encoder",
"description": "Using a timer with a rotary incrmental encoder",
"group": "Examples SPIN",
"base": "SPIN/TIMER/incremental_encoder",
"files": [
"main.cpp",
"README.md"
]
}
]
}