@educabot/educablocks-boards 0.1.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1448 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.boards = exports.getBoards = exports.getBoardById = exports.BOARD_TYPE = exports.BOARD_ITEM_TYPE = void 0;
4
- const pins_1 = require("./pins");
5
- var BOARD_ITEM_TYPE;
6
- (function (BOARD_ITEM_TYPE) {
7
- BOARD_ITEM_TYPE["BOOK"] = "book";
8
- BOARD_ITEM_TYPE["ROBOT"] = "robot";
9
- BOARD_ITEM_TYPE["DRONE"] = "drone";
10
- BOARD_ITEM_TYPE["BOARD"] = "board";
11
- BOARD_ITEM_TYPE["MODEL"] = "model";
12
- BOARD_ITEM_TYPE["KIT"] = "kit";
13
- })(BOARD_ITEM_TYPE = exports.BOARD_ITEM_TYPE || (exports.BOARD_ITEM_TYPE = {}));
14
- var BOARD_TYPE;
15
- (function (BOARD_TYPE) {
16
- BOARD_TYPE["SENIOR"] = "senior";
17
- BOARD_TYPE["JUNIOR"] = "junior";
18
- })(BOARD_TYPE = exports.BOARD_TYPE || (exports.BOARD_TYPE = {}));
19
- const getBoardById = (boards, id) => boards
20
- .find((board) => {
21
- const boardId = typeof id === 'string' ? parseInt(id, 10) : id;
22
- return board.id === boardId;
23
- });
24
- exports.getBoardById = getBoardById;
25
- /**
26
- * Get all filtered boards
27
-
28
- * @param {Board[]} boards all boards
29
- * @param {string} [type='all'] type of board
30
- * @param {boolean} [premium=true] include premium boards
31
- * @param {boolean} [disabled=true] include disabled boards
32
- * @param {boolean} [hidden=false] include hidden boards
33
- * @param {string} [exclude={
34
- * prop: '',
35
- * value: ''
36
- * }] exclude boards by property name and value
37
- * @return {*} {Board[]}
38
- */
39
- const getBoards = (boards, type = 'all', premium = true, disabled = true, hidden = false, exclude = {
40
- prop: '',
41
- value: ''
42
- }) => {
43
- switch (type) {
44
- case 'senior':
45
- return boards.filter(b => b.type === 'senior' &&
46
- (hidden || b.show === 1) &&
47
- (premium || !b.premium) &&
48
- (disabled || b.enabled) &&
49
- (!b[exclude.prop] || b[exclude.prop] !== exclude.value));
50
- case 'junior':
51
- return boards.filter(b => b.type === 'junior' &&
52
- (hidden || b.show === 1) &&
53
- (premium || !b.premium) &&
54
- (disabled || b.enabled) &&
55
- (!b[exclude.prop] || b[exclude.prop] !== exclude.value));
56
- case 'code':
57
- return boards.filter(b => b.type === 'senior' &&
58
- b.enabledForCode > 0 &&
59
- (hidden || b.show === 1) &&
60
- (premium || !b.premium) &&
61
- (disabled || b.enabled) &&
62
- (!b[exclude.prop] || b[exclude.prop] !== exclude.value));
63
- case 'aula':
64
- return boards.filter(b => (hidden || b.showOnAula === 1) &&
65
- (disabled || b.enabled) &&
66
- (!b[exclude.prop] || b[exclude.prop] !== exclude.value));
67
- case 'all':
68
- default:
69
- return boards.filter(b => (hidden || b.show === 1) &&
70
- (premium || !b.premium) &&
71
- (disabled || b.enabled) &&
72
- (!b[exclude.prop] || b[exclude.prop] !== exclude.value));
73
- }
74
- };
75
- exports.getBoards = getBoards;
76
- exports.boards = [
77
- {
78
- id: 0,
79
- type: 'senior',
80
- image: 'zonda.png',
81
- class: 'educablocks-uno',
82
- name: 'Zonda',
83
- groupName: 'Zonda',
84
- company: 'Educabot',
85
- htmlValue: '',
86
- compilerBoard: 'arduino:avr:uno',
87
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
88
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
89
- use1200bpsTouch: false,
90
- fileExtension: 'hex',
91
- profile: 'zonda',
92
- lang: 'Arduino',
93
- show: 1,
94
- showOnAula: 1,
95
- enabled: 1,
96
- enabledForCode: 1,
97
- premium: 0,
98
- toolboxLayout: 'vertical',
99
- elementType: BOARD_ITEM_TYPE.ROBOT,
100
- pins: pins_1.ZONDA,
101
- },
102
- {
103
- id: 1,
104
- type: 'senior',
105
- image: 'bhoot.png',
106
- class: 'educabot-bhoot',
107
- name: 'Buty',
108
- groupName: 'Buty',
109
- company: 'Educabot',
110
- compilerBoard: 'arduino:avr:uno',
111
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
112
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
113
- use1200bpsTouch: false,
114
- fileExtension: 'hex',
115
- profile: 'bhoot',
116
- lang: 'Arduino',
117
- show: 1,
118
- showOnAula: 1,
119
- enabled: 1,
120
- enabledForCode: 1,
121
- premium: 0,
122
- toolboxLayout: 'vertical',
123
- elementType: BOARD_ITEM_TYPE.ROBOT,
124
- pins: pins_1.BHOOT,
125
- },
126
- {
127
- id: 2,
128
- type: 'senior',
129
- image: 'genuino-uno.png',
130
- class: 'arduino-genuino-uno',
131
- name: 'Uno Rev. 3',
132
- groupName: 'Uno Rev. 3',
133
- company: 'Arduino',
134
- htmlValue: '',
135
- compilerBoard: 'arduino:avr:uno',
136
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
137
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
138
- use1200bpsTouch: false,
139
- fileExtension: 'hex',
140
- profile: 'arduinoUno',
141
- lang: 'Arduino',
142
- show: 1,
143
- showOnAula: 1,
144
- enabled: 1,
145
- enabledForCode: 1,
146
- premium: 0,
147
- toolboxLayout: 'vertical',
148
- elementType: BOARD_ITEM_TYPE.BOARD,
149
- pins: pins_1.ARDUINO_UNO,
150
- },
151
- {
152
- id: 3,
153
- type: 'senior',
154
- image: 'genuino-mega.png',
155
- class: 'arduino-genuino-mega',
156
- name: 'Mega 2560',
157
- groupName: 'Mega 2560',
158
- company: 'Arduino',
159
- htmlValue: '',
160
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
161
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
162
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
163
- use1200bpsTouch: false,
164
- fileExtension: 'hex',
165
- profile: 'arduinoUno',
166
- lang: 'Arduino',
167
- show: 1,
168
- showOnAula: 1,
169
- enabled: 1,
170
- enabledForCode: 1,
171
- premium: 0,
172
- toolboxLayout: 'vertical',
173
- elementType: BOARD_ITEM_TYPE.BOARD,
174
- pins: pins_1.ARDUINO_MEGA,
175
- },
176
- {
177
- id: 4,
178
- type: 'senior',
179
- image: 'microbit.png',
180
- class: 'microbit',
181
- name: 'micro:bit',
182
- groupName: 'micro:bit',
183
- company: 'Microsoft',
184
- htmlValue: '',
185
- compilerBoard: 'microbit',
186
- agentCommandLine: {
187
- windows: '"Robocopy" "{build.path}/" "{serial.port}:/" "{build.project_name}.hex" /IS /IT /IM',
188
- linux: '',
189
- max: '',
190
- },
191
- agentSignature: {
192
- windows: '4df3bd30947b3ca534ef51fa2e82e87fe6f1070ae26bd377a698ddabc5946d990159ecb7c18f5cda39bcf48f7a7464b24fd61c8ab672e6c36ce9794cdfe11493a751cc7f0ce93c92ce3cbf4aae526cc7a4fb548317b947936fd48d9bed1f90cbc2bc5eb7ea53ff607a1ea3964e0f1fc9e20008476edc4346c975d180974a4a71a72f929cd8c21cfde2029896b2f9992cc637daeb5388772e0aba0786eb15d3d324662acbeb3fe84433524f82624c30c3e9408d3924e6832247c7bc32d06c6e34841494d3c744f484ff712af8802ef632d030d121e83be93abc60d0aafe185820ef4044bce39262db5152f16ae84febbb7d2efcf1a396b6c75dfffb87f7491a67',
193
- linux: '',
194
- max: '',
195
- },
196
- use1200bpsTouch: false,
197
- fileExtension: 'hex',
198
- profile: 'microbitFull',
199
- lang: 'JavaScript',
200
- show: 1,
201
- showOnAula: 1,
202
- enabled: 1,
203
- enabledForCode: 0,
204
- premium: 0,
205
- toolboxLayout: 'vertical',
206
- elementType: BOARD_ITEM_TYPE.BOARD,
207
- pins: {},
208
- },
209
- {
210
- id: 5,
211
- type: 'senior',
212
- image: 'maqueta_bsas_semaforo.png',
213
- class: 'maqueta-semaforo',
214
- groupClass: 'maqueta',
215
- name: 'Semáforos',
216
- groupName: 'Maqueta Buenos Aires',
217
- company: 'Educabot',
218
- htmlValue: '',
219
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
220
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
221
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
222
- use1200bpsTouch: false,
223
- fileExtension: 'hex',
224
- profile: 'ciudadSemaforos',
225
- lang: 'Arduino',
226
- show: 0,
227
- showOnAula: 1,
228
- enabled: 1,
229
- enabledForCode: 0,
230
- premium: 1,
231
- toolboxLayout: 'vertical',
232
- elementType: BOARD_ITEM_TYPE.MODEL,
233
- pins: pins_1.ARDUINO_MEGA,
234
- },
235
- {
236
- id: 6,
237
- type: 'senior',
238
- image: 'maqueta_bsas_luces.png',
239
- class: 'maqueta-luces',
240
- groupClass: 'maqueta',
241
- name: 'Luces',
242
- groupName: 'Maqueta Buenos Aires',
243
- company: 'Educabot',
244
- htmlValue: '',
245
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
246
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
247
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
248
- use1200bpsTouch: false,
249
- fileExtension: 'hex',
250
- profile: 'ciudadLuces',
251
- lang: 'Arduino',
252
- show: 0,
253
- showOnAula: 1,
254
- enabled: 1,
255
- enabledForCode: 0,
256
- premium: 1,
257
- toolboxLayout: 'vertical',
258
- elementType: BOARD_ITEM_TYPE.MODEL,
259
- pins: pins_1.ARDUINO_MEGA,
260
- },
261
- {
262
- id: 7,
263
- type: 'senior',
264
- image: 'maqueta_bsas_flor.png',
265
- class: 'maqueta-flor',
266
- groupClass: 'maqueta',
267
- name: 'Flor',
268
- groupName: 'Maqueta Buenos Aires',
269
- company: 'Educabot',
270
- htmlValue: '',
271
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
272
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
273
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
274
- use1200bpsTouch: false,
275
- fileExtension: 'hex',
276
- profile: 'ciudadFlor',
277
- lang: 'Arduino',
278
- show: 0,
279
- showOnAula: 1,
280
- enabled: 1,
281
- enabledForCode: 0,
282
- premium: 1,
283
- toolboxLayout: 'vertical',
284
- elementType: BOARD_ITEM_TYPE.MODEL,
285
- pins: pins_1.ARDUINO_MEGA,
286
- },
287
- {
288
- id: 8,
289
- type: 'senior',
290
- image: 'maqueta_bsas_tren.png',
291
- class: 'maqueta-tren',
292
- groupClass: 'maqueta',
293
- name: 'Tren',
294
- groupName: 'Maqueta Buenos Aires',
295
- company: 'Educabot',
296
- htmlValue: '',
297
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
298
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
299
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
300
- use1200bpsTouch: false,
301
- fileExtension: 'hex',
302
- profile: 'ciudadTren',
303
- lang: 'Arduino',
304
- show: 0,
305
- showOnAula: 1,
306
- enabled: 1,
307
- enabledForCode: 0,
308
- premium: 1,
309
- toolboxLayout: 'vertical',
310
- elementType: BOARD_ITEM_TYPE.MODEL,
311
- pins: pins_1.ARDUINO_MEGA,
312
- },
313
- {
314
- id: 9,
315
- type: 'senior',
316
- image: 'maqueta_bsas_planetario.png',
317
- class: 'maqueta-planetario',
318
- groupClass: 'maqueta',
319
- name: 'Planetario',
320
- groupName: 'Maqueta Buenos Aires',
321
- company: 'Educabot',
322
- htmlValue: '',
323
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
324
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
325
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
326
- use1200bpsTouch: false,
327
- fileExtension: 'hex',
328
- profile: 'ciudadPlanetario',
329
- lang: 'Arduino',
330
- show: 0,
331
- showOnAula: 1,
332
- enabled: 1,
333
- enabledForCode: 0,
334
- premium: 1,
335
- toolboxLayout: 'vertical',
336
- elementType: BOARD_ITEM_TYPE.MODEL,
337
- pins: pins_1.ARDUINO_MEGA,
338
- },
339
- {
340
- id: 10,
341
- type: 'senior',
342
- image: 'drone.png',
343
- class: 'drone',
344
- groupClass: 'drone',
345
- name: 'Tello EDU',
346
- groupName: 'Tello EDU',
347
- company: 'DJI',
348
- htmlValue: '',
349
- compilerBoard: '',
350
- agentCommandLine: '',
351
- agentSignature: '',
352
- use1200bpsTouch: false,
353
- fileExtension: 'hex',
354
- profile: 'drone',
355
- lang: 'JavaScript',
356
- show: 1,
357
- showOnAula: 1,
358
- enabled: 1,
359
- enabledForCode: 0,
360
- premium: 0,
361
- elementType: BOARD_ITEM_TYPE.DRONE,
362
- pins: {},
363
- },
364
- {
365
- id: 11,
366
- type: 'senior',
367
- image: 'nano.png',
368
- class: 'arduino-nano',
369
- name: 'Nano',
370
- groupName: 'Nano',
371
- company: 'Arduino',
372
- htmlValue: '',
373
- compilerBoard: 'arduino:avr:nano',
374
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
375
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
376
- use1200bpsTouch: false,
377
- fileExtension: 'hex',
378
- profile: 'arduinoUno',
379
- lang: 'Arduino',
380
- show: 1,
381
- showOnAula: 1,
382
- enabled: 1,
383
- enabledForCode: 1,
384
- premium: 0,
385
- toolboxLayout: 'vertical',
386
- elementType: BOARD_ITEM_TYPE.BOARD,
387
- pins: pins_1.ARDUINO_NANO,
388
- },
389
- {
390
- id: 12,
391
- type: 'senior',
392
- image: 'genuino-micro.png',
393
- class: 'arduino-genuino-micro',
394
- name: 'Pro Micro',
395
- groupName: 'Pro Micro',
396
- company: 'Arduino',
397
- htmlValue: '',
398
- compilerBoard: 'arduino:avr:micro',
399
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega32u4 -cavr109 -P{serial.port} -b57600 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
400
- agentSignature: 'e78a29dadc2aced6595914c32289566d0ef2a53ec2c1b5915bc03c415907722fdd6163b6c138d3dc8c422c2672ee026026af3ba5ea235422d2570510b953931b8feaa3976e8518b1a91eeb407558e721c394e6fb7267e4aa63030ffea392399e047d25b164629f032d41aaf2942f3c3abd1084b6be9cc0053b5e1830a6e48a950f352e9aecdac5d07a7a407f268f6ce65ff1cdddaa45a4dcdce6139c9b2ef4364329483ee0cea397508dce1ced210846e4d5bb57a5d93ecb53ca38b78b6b4da2eab5d01c453537e52177a4eae3130e617e2eef059046845cda22c750f3f291d6590e8bb1906936bbca4032a2c79453478505c01db8c4a9f1f0072b43cb96d1e9',
401
- use1200bpsTouch: true,
402
- fileExtension: 'hex',
403
- profile: 'arduinoUno',
404
- lang: 'Arduino',
405
- show: 1,
406
- showOnAula: 1,
407
- enabled: 1,
408
- enabledForCode: 1,
409
- premium: 0,
410
- toolboxLayout: 'vertical',
411
- elementType: BOARD_ITEM_TYPE.BOARD,
412
- pins: pins_1.ARDUINO_MICRO,
413
- },
414
- {
415
- id: 13,
416
- type: 'senior',
417
- image: 'arduino-leonardo.png',
418
- class: 'arduino-leonardo',
419
- name: 'Leonardo',
420
- groupName: 'Leonardo',
421
- company: 'Arduino',
422
- htmlValue: '',
423
- compilerBoard: 'arduino:avr:leonardo',
424
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega32u4 -cavr109 -P{serial.port} -b57600 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
425
- agentSignature: 'e78a29dadc2aced6595914c32289566d0ef2a53ec2c1b5915bc03c415907722fdd6163b6c138d3dc8c422c2672ee026026af3ba5ea235422d2570510b953931b8feaa3976e8518b1a91eeb407558e721c394e6fb7267e4aa63030ffea392399e047d25b164629f032d41aaf2942f3c3abd1084b6be9cc0053b5e1830a6e48a950f352e9aecdac5d07a7a407f268f6ce65ff1cdddaa45a4dcdce6139c9b2ef4364329483ee0cea397508dce1ced210846e4d5bb57a5d93ecb53ca38b78b6b4da2eab5d01c453537e52177a4eae3130e617e2eef059046845cda22c750f3f291d6590e8bb1906936bbca4032a2c79453478505c01db8c4a9f1f0072b43cb96d1e9',
426
- use1200bpsTouch: true,
427
- fileExtension: 'hex',
428
- profile: 'arduinoUno',
429
- lang: 'Arduino',
430
- show: 1,
431
- showOnAula: 1,
432
- enabled: 1,
433
- enabledForCode: 1,
434
- premium: 0,
435
- toolboxLayout: 'vertical',
436
- elementType: BOARD_ITEM_TYPE.BOARD,
437
- pins: pins_1.ARDUINO_LEONARDO,
438
- },
439
- {
440
- id: 14,
441
- type: 'senior',
442
- image: 'smart-team-3.png',
443
- class: 'smart-team-3-cap-1',
444
- name: 'Capítulo 1',
445
- groupName: 'Libro 3',
446
- company: 'Smart Team',
447
- compilerBoard: 'arduino:avr:uno',
448
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
449
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
450
- use1200bpsTouch: false,
451
- fileExtension: 'hex',
452
- profile: 'smartTeamLibro3Capitulo1',
453
- lang: 'Arduino',
454
- show: 1,
455
- showOnAula: 1,
456
- enabled: 1,
457
- enabledForCode: 0,
458
- premium: 0,
459
- toolboxLayout: 'vertical',
460
- elementType: BOARD_ITEM_TYPE.BOOK,
461
- pins: pins_1.BHOOT,
462
- },
463
- {
464
- id: 15,
465
- type: 'senior',
466
- image: 'smart-team-4.png',
467
- class: 'smart-team-4-cap-1',
468
- name: 'Capítulo 1',
469
- groupName: 'Libro 4',
470
- company: 'Smart Team',
471
- compilerBoard: 'arduino:avr:uno',
472
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
473
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
474
- use1200bpsTouch: false,
475
- fileExtension: 'hex',
476
- profile: 'smartTeamLibro4Capitulo1',
477
- lang: 'Arduino',
478
- show: 1,
479
- showOnAula: 1,
480
- enabled: 1,
481
- enabledForCode: 0,
482
- premium: 0,
483
- toolboxLayout: 'vertical',
484
- elementType: BOARD_ITEM_TYPE.BOOK,
485
- pins: pins_1.BHOOT,
486
- },
487
- {
488
- id: 16,
489
- type: 'senior',
490
- image: 'smart-team-5.png',
491
- class: 'smart-team-5-cap-1',
492
- name: 'Capítulo 1',
493
- groupName: 'Libro 5',
494
- company: 'Smart Team',
495
- compilerBoard: 'arduino:avr:uno',
496
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
497
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
498
- use1200bpsTouch: false,
499
- fileExtension: 'hex',
500
- profile: 'smartTeamLibro5Capitulo1',
501
- lang: 'Arduino',
502
- show: 1,
503
- showOnAula: 1,
504
- enabled: 1,
505
- enabledForCode: 0,
506
- premium: 0,
507
- toolboxLayout: 'vertical',
508
- elementType: BOARD_ITEM_TYPE.BOOK,
509
- pins: pins_1.BHOOT,
510
- },
511
- {
512
- id: 17,
513
- type: 'senior',
514
- image: 'smart-team-6.png',
515
- class: 'smart-team-6-cap-1',
516
- name: 'Capítulo 1',
517
- groupName: 'Libro 6',
518
- company: 'Smart Team',
519
- compilerBoard: 'arduino:avr:uno',
520
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
521
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
522
- use1200bpsTouch: false,
523
- fileExtension: 'hex',
524
- profile: 'smartTeamLibro6Capitulo1',
525
- lang: 'Arduino',
526
- show: 1,
527
- showOnAula: 1,
528
- enabled: 1,
529
- enabledForCode: 0,
530
- premium: 0,
531
- toolboxLayout: 'vertical',
532
- elementType: BOARD_ITEM_TYPE.BOOK,
533
- pins: pins_1.BHOOT,
534
- },
535
- {
536
- id: 18,
537
- type: 'senior',
538
- image: 'smart-team-7.png',
539
- class: 'smart-team-7-cap-1',
540
- name: 'Capítulo 1',
541
- groupName: 'Libro 7',
542
- company: 'Smart Team',
543
- compilerBoard: 'arduino:avr:uno',
544
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
545
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
546
- use1200bpsTouch: false,
547
- fileExtension: 'hex',
548
- profile: 'bhoot',
549
- lang: 'Arduino',
550
- show: 1,
551
- showOnAula: 1,
552
- enabled: 1,
553
- enabledForCode: 0,
554
- premium: 0,
555
- toolboxLayout: 'vertical',
556
- elementType: BOARD_ITEM_TYPE.BOOK,
557
- pins: pins_1.BHOOT,
558
- },
559
- {
560
- id: 19,
561
- type: 'senior',
562
- image: 'smart-team-8.png',
563
- class: 'smart-team-8-cap-1',
564
- name: 'Capítulo 1',
565
- groupName: 'Libro 8',
566
- company: 'Smart Team',
567
- compilerBoard: 'arduino:avr:uno',
568
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
569
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
570
- use1200bpsTouch: false,
571
- fileExtension: 'hex',
572
- profile: 'bhoot',
573
- lang: 'Arduino',
574
- show: 1,
575
- showOnAula: 1,
576
- enabled: 1,
577
- enabledForCode: 0,
578
- premium: 0,
579
- toolboxLayout: 'vertical',
580
- elementType: BOARD_ITEM_TYPE.BOOK,
581
- pins: pins_1.BHOOT,
582
- },
583
- {
584
- id: 20,
585
- type: 'senior',
586
- image: 'smart-team-9.png',
587
- class: 'smart-team-9-cap-1',
588
- name: 'Capítulo 1',
589
- groupName: 'Libro 9',
590
- company: 'Smart Team',
591
- compilerBoard: 'arduino:avr:uno',
592
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
593
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
594
- use1200bpsTouch: false,
595
- fileExtension: 'hex',
596
- profile: 'bhoot',
597
- lang: 'Arduino',
598
- show: 1,
599
- showOnAula: 1,
600
- enabled: 1,
601
- enabledForCode: 1,
602
- premium: 0,
603
- toolboxLayout: 'vertical',
604
- elementType: BOARD_ITEM_TYPE.BOOK,
605
- pins: pins_1.BHOOT,
606
- },
607
- {
608
- id: 21,
609
- type: 'senior',
610
- image: 'coparobotica.png',
611
- class: 'copa-robotica',
612
- groupClass: 'copa-robotica',
613
- name: 'Sistema Inmunológico',
614
- groupName: 'Copa Robótica',
615
- company: 'Educabot',
616
- htmlValue: '',
617
- compilerBoard: 'arduino:avr:uno',
618
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
619
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
620
- use1200bpsTouch: false,
621
- fileExtension: 'hex',
622
- profile: 'copaRoboticaInmunologico',
623
- lang: 'Arduino',
624
- show: 1,
625
- showOnAula: 1,
626
- enabled: 1,
627
- enabledForCode: 1,
628
- premium: 0,
629
- toolboxLayout: 'vertical',
630
- elementType: BOARD_ITEM_TYPE.MODEL,
631
- pins: pins_1.ZONDA,
632
- },
633
- {
634
- id: 22,
635
- type: 'senior',
636
- image: 'coparobotica.png',
637
- class: 'copa-robotica',
638
- groupClass: 'copa-robotica',
639
- name: 'Código Genético',
640
- groupName: 'Copa Robótica',
641
- company: 'Educabot',
642
- htmlValue: '',
643
- compilerBoard: 'arduino:avr:uno',
644
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
645
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
646
- use1200bpsTouch: false,
647
- fileExtension: 'hex',
648
- profile: 'copaRoboticaCodigo',
649
- lang: 'Arduino',
650
- show: 1,
651
- showOnAula: 1,
652
- enabled: 1,
653
- enabledForCode: 1,
654
- premium: 0,
655
- toolboxLayout: 'vertical',
656
- elementType: BOARD_ITEM_TYPE.MODEL,
657
- pins: pins_1.ZONDA,
658
- },
659
- {
660
- id: 23,
661
- type: 'senior',
662
- image: 'maqueta-createc-planetario.png',
663
- class: 'maqueta-createc-planetario',
664
- groupClass: 'maqueta-createc',
665
- name: 'Planetario Galileo Galilei',
666
- groupName: 'Maqueta Createc',
667
- company: 'Createc',
668
- htmlValue: '',
669
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
670
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
671
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
672
- use1200bpsTouch: false,
673
- fileExtension: 'hex',
674
- profile: 'createcPlanetario',
675
- lang: 'Arduino',
676
- show: 1,
677
- showOnAula: 1,
678
- enabled: 1,
679
- enabledForCode: 0,
680
- premium: 1,
681
- toolboxLayout: 'vertical',
682
- elementType: BOARD_ITEM_TYPE.MODEL,
683
- pins: pins_1.ARDUINO_MEGA,
684
- },
685
- {
686
- id: 24,
687
- type: 'senior',
688
- image: 'maqueta-createc-obelisco.png',
689
- class: 'maqueta-createc-obelisco',
690
- groupClass: 'maqueta-createc',
691
- name: 'Obelisco',
692
- groupName: 'Maqueta Createc',
693
- company: 'Createc',
694
- htmlValue: '',
695
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
696
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
697
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
698
- use1200bpsTouch: false,
699
- fileExtension: 'hex',
700
- profile: 'createcObelisco',
701
- lang: 'Arduino',
702
- show: 1,
703
- showOnAula: 1,
704
- enabled: 1,
705
- enabledForCode: 0,
706
- premium: 1,
707
- toolboxLayout: 'vertical',
708
- elementType: BOARD_ITEM_TYPE.MODEL,
709
- pins: pins_1.ARDUINO_MEGA,
710
- },
711
- {
712
- id: 25,
713
- type: 'senior',
714
- image: 'maqueta-createc-retiro.png',
715
- class: 'maqueta-createc-retiro',
716
- groupClass: 'maqueta-createc',
717
- name: 'Estación Retiro',
718
- groupName: 'Maqueta Createc',
719
- company: 'Createc',
720
- htmlValue: '',
721
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
722
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
723
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
724
- use1200bpsTouch: false,
725
- fileExtension: 'hex',
726
- profile: 'createcRetiro',
727
- lang: 'Arduino',
728
- show: 1,
729
- showOnAula: 1,
730
- enabled: 1,
731
- enabledForCode: 0,
732
- premium: 1,
733
- toolboxLayout: 'vertical',
734
- elementType: BOARD_ITEM_TYPE.MODEL,
735
- pins: pins_1.ARDUINO_MEGA,
736
- },
737
- {
738
- id: 26,
739
- type: 'senior',
740
- image: 'maqueta-createc-madero.png',
741
- class: 'maqueta-createc-madero',
742
- groupClass: 'maqueta-createc',
743
- name: 'Puerto Madero',
744
- groupName: 'Maqueta Createc',
745
- company: 'Createc',
746
- htmlValue: '',
747
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
748
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
749
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
750
- use1200bpsTouch: false,
751
- fileExtension: 'hex',
752
- profile: 'createcMadero',
753
- lang: 'Arduino',
754
- show: 1,
755
- showOnAula: 1,
756
- enabled: 1,
757
- enabledForCode: 0,
758
- premium: 1,
759
- toolboxLayout: 'vertical',
760
- elementType: BOARD_ITEM_TYPE.MODEL,
761
- pins: pins_1.ARDUINO_MEGA,
762
- },
763
- {
764
- id: 27,
765
- type: 'senior',
766
- image: 'maqueta-createc-floralis.png',
767
- class: 'maqueta-createc-floralis',
768
- groupClass: 'maqueta-createc',
769
- name: 'Floralis genérica',
770
- groupName: 'Maqueta Createc',
771
- company: 'Createc',
772
- htmlValue: '',
773
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
774
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
775
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
776
- use1200bpsTouch: false,
777
- fileExtension: 'hex',
778
- profile: 'createcFloralis',
779
- lang: 'Arduino',
780
- show: 1,
781
- showOnAula: 1,
782
- enabled: 1,
783
- enabledForCode: 0,
784
- premium: 1,
785
- toolboxLayout: 'vertical',
786
- elementType: BOARD_ITEM_TYPE.MODEL,
787
- pins: pins_1.ARDUINO_MEGA,
788
- },
789
- {
790
- id: 28,
791
- type: 'senior',
792
- image: 'educabot-pampero.jpg',
793
- class: 'educabot-pampero',
794
- name: 'Pampero',
795
- groupName: 'Pampero',
796
- company: 'Educabot',
797
- htmlValue: '',
798
- compilerBoard: 'arduino:avr:uno',
799
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
800
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
801
- use1200bpsTouch: false,
802
- fileExtension: 'hex',
803
- profile: 'arduinoUno',
804
- lang: 'Arduino',
805
- show: 0,
806
- showOnAula: 0,
807
- enabled: 0,
808
- enabledForCode: 1,
809
- premium: 0,
810
- toolboxLayout: 'vertical',
811
- elementType: BOARD_ITEM_TYPE.ROBOT,
812
- pins: pins_1.ARDUINO_UNO,
813
- },
814
- {
815
- id: 29,
816
- type: 'senior',
817
- image: 'makeblock-mbot.png',
818
- class: 'makeblock-mbot',
819
- name: 'Mbot',
820
- groupName: 'Mbot',
821
- company: 'Makeblock',
822
- htmlValue: '',
823
- compilerBoard: 'arduino:avr:uno',
824
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
825
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
826
- use1200bpsTouch: false,
827
- fileExtension: 'hex',
828
- profile: 'arduinoUno',
829
- lang: 'Arduino',
830
- show: 1,
831
- showOnAula: 1,
832
- enabled: 0,
833
- enabledForCode: 1,
834
- premium: 0,
835
- toolboxLayout: 'vertical',
836
- elementType: BOARD_ITEM_TYPE.ROBOT,
837
- pins: pins_1.ARDUINO_UNO,
838
- },
839
- {
840
- id: 30,
841
- type: 'senior',
842
- image: 'makeblock-mbot-ranger.png',
843
- class: 'makeblock-mbot-ranger',
844
- name: 'Mbot Ranger',
845
- groupName: 'Mbot Ranger',
846
- company: 'Makeblock',
847
- htmlValue: '',
848
- compilerBoard: 'arduino:avr:uno',
849
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
850
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
851
- use1200bpsTouch: false,
852
- fileExtension: 'hex',
853
- profile: 'arduinoUno',
854
- lang: 'Arduino',
855
- show: 1,
856
- showOnAula: 1,
857
- enabled: 0,
858
- enabledForCode: 1,
859
- premium: 0,
860
- toolboxLayout: 'vertical',
861
- elementType: BOARD_ITEM_TYPE.ROBOT,
862
- pins: pins_1.ARDUINO_UNO,
863
- },
864
- {
865
- id: 31,
866
- type: 'senior',
867
- image: 'makeblock-ultimate-20.png',
868
- class: 'makeblock-ultimate-20',
869
- name: 'Ultimate 2.0',
870
- groupName: 'Ultimate 2.0',
871
- company: 'Makeblock',
872
- htmlValue: '',
873
- compilerBoard: 'arduino:avr:uno',
874
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
875
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
876
- use1200bpsTouch: false,
877
- fileExtension: 'hex',
878
- profile: 'arduinoUno',
879
- lang: 'Arduino',
880
- show: 1,
881
- showOnAula: 1,
882
- enabled: 0,
883
- enabledForCode: 1,
884
- premium: 0,
885
- toolboxLayout: 'vertical',
886
- elementType: BOARD_ITEM_TYPE.ROBOT,
887
- pins: pins_1.ARDUINO_UNO,
888
- },
889
- {
890
- id: 32,
891
- type: 'senior',
892
- image: 'robobloq-q-scout.png',
893
- class: 'robobloq-q-scout',
894
- name: 'Q-Scout',
895
- groupName: 'Q-Scout',
896
- company: 'Robobloq',
897
- htmlValue: '',
898
- compilerBoard: 'arduino:avr:uno',
899
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
900
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
901
- use1200bpsTouch: false,
902
- fileExtension: 'hex',
903
- profile: 'arduinoUno',
904
- lang: 'Arduino',
905
- show: 1,
906
- showOnAula: 1,
907
- enabled: 0,
908
- enabledForCode: 1,
909
- premium: 0,
910
- toolboxLayout: 'vertical',
911
- elementType: BOARD_ITEM_TYPE.ROBOT,
912
- pins: pins_1.ARDUINO_UNO,
913
- },
914
- {
915
- id: 33,
916
- type: 'senior',
917
- image: 'robobloq-qoopers.png',
918
- class: 'robobloq-qoopers',
919
- name: 'Qoopers',
920
- groupName: 'Qoopers',
921
- company: 'Robobloq',
922
- htmlValue: '',
923
- compilerBoard: 'arduino:avr:uno',
924
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
925
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
926
- use1200bpsTouch: false,
927
- fileExtension: 'hex',
928
- profile: 'arduinoUno',
929
- lang: 'Arduino',
930
- show: 1,
931
- showOnAula: 1,
932
- enabled: 0,
933
- enabledForCode: 1,
934
- premium: 0,
935
- toolboxLayout: 'vertical',
936
- elementType: BOARD_ITEM_TYPE.ROBOT,
937
- pins: pins_1.ARDUINO_UNO,
938
- },
939
- {
940
- id: 34,
941
- type: 'senior',
942
- image: 'mis-ladrillos-r502.jpg',
943
- class: 'mis-ladrillos-r502',
944
- name: 'R502',
945
- groupName: 'R502',
946
- company: 'Mis Ladrillos',
947
- htmlValue: '',
948
- compilerBoard: 'arduino:avr:uno',
949
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
950
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
951
- use1200bpsTouch: false,
952
- fileExtension: 'hex',
953
- profile: 'arduinoUno',
954
- lang: 'Arduino',
955
- show: 0,
956
- showOnAula: 0,
957
- enabled: 0,
958
- enabledForCode: 1,
959
- premium: 0,
960
- toolboxLayout: 'vertical',
961
- elementType: BOARD_ITEM_TYPE.KIT,
962
- pins: pins_1.ARDUINO_UNO,
963
- },
964
- {
965
- id: 35,
966
- type: 'senior',
967
- image: 'rasti-oki-2.jpg',
968
- class: 'rasti-oki-2',
969
- name: 'Oki 2',
970
- groupName: 'Oki 2',
971
- company: 'Rasti',
972
- htmlValue: '',
973
- compilerBoard: 'arduino:avr:uno',
974
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
975
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
976
- use1200bpsTouch: false,
977
- fileExtension: 'hex',
978
- profile: 'arduinoUno',
979
- lang: 'Arduino',
980
- show: 0,
981
- showOnAula: 0,
982
- enabled: 0,
983
- enabledForCode: 1,
984
- premium: 0,
985
- toolboxLayout: 'vertical',
986
- elementType: BOARD_ITEM_TYPE.ROBOT,
987
- pins: pins_1.ARDUINO_UNO,
988
- },
989
- {
990
- id: 36,
991
- type: 'senior',
992
- image: '',
993
- class: 'arduino-due',
994
- name: 'DUE (Programming port)',
995
- groupName: 'DUE (Programming port)',
996
- company: 'Arduino',
997
- htmlValue: '',
998
- compilerBoard: 'arduino:sam:arduino_due_x_dbg',
999
- agentCommandLine: '"{runtime.tools.bossac}/bossac" -i -d --port={serial.port} -U false -e -w -v -b "{build.path}/{build.project_name}.bin" -R',
1000
- agentSignature: '1d3e8831a96cfafd10ea46c243f6f165dad1e21aee8501ab040083186fbf587513be33f2032e09e7376fb1168678d34ee33555cfa6b3c37c213c469be4f83edb4d8ac3d02f6730070cbab4148e98e0743df2088f26c2969dfcd9715b62a07188f5d51897cfbc53e2ce9e10885865b3401084bf86c5a1628c08bee15e85be5720b4c583fcc119c09ea4b3475cd94c43bd7bd8bdfa8f16920c21753bffd076f837e87377f0ff9d82691826a4e53bbcfcc055f6fff0aa91517d03bd32c5959fe2822ae3b222c0d1487140ad9bc1bbe769e1ac525ab1af3d626a5fdec0f462dfb6e1655dbe41d50c41466942e3290f064131a53a81523a0c5e77fef7d27ff66dcc88',
1001
- use1200bpsTouch: true,
1002
- fileExtension: 'bin',
1003
- profile: 'arduinoUno',
1004
- lang: 'Arduino',
1005
- show: 0,
1006
- showOnAula: 0,
1007
- enabled: 0,
1008
- enabledForCode: 1,
1009
- premium: 0,
1010
- toolboxLayout: 'vertical',
1011
- elementType: BOARD_ITEM_TYPE.BOARD,
1012
- pins: {},
1013
- },
1014
- {
1015
- id: 37,
1016
- type: 'senior',
1017
- image: '',
1018
- class: 'arduino-due',
1019
- name: 'DUE (Native USB)',
1020
- groupName: 'DUE (Native USB)',
1021
- company: 'Arduino',
1022
- htmlValue: '',
1023
- compilerBoard: 'arduino:sam:arduino_due_x',
1024
- agentCommandLine: '"{runtime.tools.bossac}/bossac" -i -d --port={serial.port} -U true -e -w -v -b "{build.path}/{build.project_name}.bin" -R',
1025
- agentSignature: 'abd9582c2e07df1401164c69e92da971e9826397b8b886fb92b450b8f02c68eec38d93ca5773b21ae0346937e6c79b0804dcd20ba484d6c4c5f3476835562a3a63abfd8fa85883e69151d9e30dd6b1cc76d936af8f8a19367a36dceab2ce448c7d8bccbf4ce484c6aabca09279d090b9b1093e01a64398346ceb9992d92ae1ba72ab6e94ffb8102df00be4ae265db8471f567ef2e55960d60b82e37eb1c9537fef7a4ce02a3a08c230439ca571cc303b105b71e78acf83ea8dbb7479691e5eaed3db202b3eb9d3e1cfdbf7d333e77e34336c5a0228c7ddeb06b2ad7ca9778b5da15a2395057e276f280b3d3e374eb36a958e2a18becadb865b3c5cd5c799abe5',
1026
- use1200bpsTouch: true,
1027
- fileExtension: 'bin',
1028
- profile: 'arduinoUno',
1029
- lang: 'Arduino',
1030
- show: 0,
1031
- showOnAula: 0,
1032
- enabled: 0,
1033
- enabledForCode: 1,
1034
- premium: 0,
1035
- toolboxLayout: 'vertical',
1036
- elementType: BOARD_ITEM_TYPE.BOARD,
1037
- pins: {},
1038
- },
1039
- {
1040
- id: 100,
1041
- type: 'junior',
1042
- image: 'microbit.png',
1043
- class: 'microbit',
1044
- name: 'micro:bit',
1045
- groupName: 'micro:bit',
1046
- company: 'MakeCode',
1047
- htmlValue: '',
1048
- compilerBoard: 'microbit',
1049
- agentCommandLine: {
1050
- windows: '"Robocopy" "{build.path}/" "{serial.port}:/" "{build.project_name}.hex" /IS /IT /IM',
1051
- linux: '',
1052
- max: '',
1053
- },
1054
- agentSignature: {
1055
- windows: '4df3bd30947b3ca534ef51fa2e82e87fe6f1070ae26bd377a698ddabc5946d990159ecb7c18f5cda39bcf48f7a7464b24fd61c8ab672e6c36ce9794cdfe11493a751cc7f0ce93c92ce3cbf4aae526cc7a4fb548317b947936fd48d9bed1f90cbc2bc5eb7ea53ff607a1ea3964e0f1fc9e20008476edc4346c975d180974a4a71a72f929cd8c21cfde2029896b2f9992cc637daeb5388772e0aba0786eb15d3d324662acbeb3fe84433524f82624c30c3e9408d3924e6832247c7bc32d06c6e34841494d3c744f484ff712af8802ef632d030d121e83be93abc60d0aafe185820ef4044bce39262db5152f16ae84febbb7d2efcf1a396b6c75dfffb87f7491a67',
1056
- linux: '',
1057
- max: '',
1058
- },
1059
- use1200bpsTouch: false,
1060
- fileExtension: 'hex',
1061
- profile: 'microbitFullJR',
1062
- lang: 'JavaScript',
1063
- show: 1,
1064
- showOnAula: 1,
1065
- enabled: 1,
1066
- enabledForCode: 0,
1067
- premium: 0,
1068
- toolboxLayout: 'vertical',
1069
- elementType: BOARD_ITEM_TYPE.BOARD,
1070
- pins: {},
1071
- },
1072
- {
1073
- id: 101,
1074
- type: 'junior',
1075
- image: 'bhoot.png',
1076
- class: 'educabot-bhoot',
1077
- name: 'Buty',
1078
- groupName: 'Buty',
1079
- company: 'Educabot',
1080
- compilerBoard: 'arduino:avr:uno',
1081
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1082
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1083
- use1200bpsTouch: false,
1084
- fileExtension: 'hex',
1085
- profile: 'bhootJR',
1086
- lang: 'Arduino',
1087
- show: 1,
1088
- showOnAula: 1,
1089
- enabled: 1,
1090
- enabledForCode: 1,
1091
- premium: 0,
1092
- toolboxLayout: 'vertical',
1093
- elementType: BOARD_ITEM_TYPE.ROBOT,
1094
- pins: pins_1.BHOOT,
1095
- },
1096
- {
1097
- id: 102,
1098
- type: 'junior',
1099
- image: 'smart-team-1.png',
1100
- class: 'smart-team-1-cap-1',
1101
- groupClass: 'smart-team-1',
1102
- name: 'Capítulo 1',
1103
- groupName: 'Libro 1',
1104
- company: 'Smart Team',
1105
- compilerBoard: 'arduino:avr:uno',
1106
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1107
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1108
- use1200bpsTouch: false,
1109
- fileExtension: 'hex',
1110
- profile: 'smartTeamLibro1Capitulo1',
1111
- lang: 'Arduino',
1112
- show: 1,
1113
- showOnAula: 1,
1114
- enabled: 1,
1115
- enabledForCode: 1,
1116
- premium: 0,
1117
- toolboxLayout: 'horizontal',
1118
- elementType: BOARD_ITEM_TYPE.BOOK,
1119
- pins: pins_1.BHOOT,
1120
- },
1121
- {
1122
- id: 103,
1123
- type: 'junior',
1124
- image: 'smart-team-1.png',
1125
- class: 'smart-team-1-cap-1',
1126
- groupClass: 'smart-team-1',
1127
- name: 'Capítulo 2',
1128
- groupName: 'Libro 1',
1129
- company: 'Smart Team',
1130
- compilerBoard: 'arduino:avr:uno',
1131
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1132
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1133
- use1200bpsTouch: false,
1134
- fileExtension: 'hex',
1135
- profile: 'smartTeamLibro1Capitulo2',
1136
- lang: 'Arduino',
1137
- show: 1,
1138
- showOnAula: 1,
1139
- enabled: 1,
1140
- enabledForCode: 1,
1141
- premium: 0,
1142
- toolboxLayout: 'horizontal',
1143
- elementType: BOARD_ITEM_TYPE.BOOK,
1144
- pins: pins_1.BHOOT,
1145
- },
1146
- {
1147
- id: 104,
1148
- type: 'junior',
1149
- image: 'smart-team-1.png',
1150
- class: 'smart-team-1-cap-1',
1151
- groupClass: 'smart-team-1',
1152
- name: 'Capítulo 3',
1153
- groupName: 'Libro 1',
1154
- company: 'Smart Team',
1155
- compilerBoard: 'arduino:avr:uno',
1156
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1157
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1158
- use1200bpsTouch: false,
1159
- fileExtension: 'hex',
1160
- profile: 'smartTeamLibro1Capitulo3',
1161
- lang: 'Arduino',
1162
- show: 1,
1163
- showOnAula: 1,
1164
- enabled: 1,
1165
- enabledForCode: 1,
1166
- premium: 0,
1167
- toolboxLayout: 'horizontal',
1168
- elementType: BOARD_ITEM_TYPE.BOOK,
1169
- pins: pins_1.BHOOT,
1170
- },
1171
- {
1172
- id: 105,
1173
- type: 'junior',
1174
- image: 'smart-team-1.png',
1175
- class: 'smart-team-1-cap-1',
1176
- groupClass: 'smart-team-1',
1177
- name: 'Capítulo 4',
1178
- groupName: 'Libro 1',
1179
- company: 'Smart Team',
1180
- compilerBoard: 'arduino:avr:uno',
1181
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1182
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1183
- use1200bpsTouch: false,
1184
- fileExtension: 'hex',
1185
- profile: 'smartTeamLibro1Capitulo4',
1186
- lang: 'Arduino',
1187
- show: 1,
1188
- showOnAula: 1,
1189
- enabled: 1,
1190
- enabledForCode: 1,
1191
- premium: 0,
1192
- toolboxLayout: 'horizontal',
1193
- elementType: BOARD_ITEM_TYPE.BOOK,
1194
- pins: pins_1.BHOOT,
1195
- },
1196
- {
1197
- id: 106,
1198
- type: 'junior',
1199
- image: 'smart-team-1.png',
1200
- class: 'smart-team-1-cap-1',
1201
- groupClass: 'smart-team-1',
1202
- name: 'Capítulo 5',
1203
- groupName: 'Libro 1',
1204
- company: 'Smart Team',
1205
- compilerBoard: 'arduino:avr:uno',
1206
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1207
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1208
- use1200bpsTouch: false,
1209
- fileExtension: 'hex',
1210
- profile: 'smartTeamLibro1Capitulo5',
1211
- lang: 'Arduino',
1212
- show: 1,
1213
- showOnAula: 1,
1214
- enabled: 1,
1215
- enabledForCode: 1,
1216
- premium: 0,
1217
- toolboxLayout: 'horizontal',
1218
- elementType: BOARD_ITEM_TYPE.BOOK,
1219
- pins: pins_1.BHOOT,
1220
- },
1221
- {
1222
- id: 107,
1223
- type: 'junior',
1224
- image: 'smart-team-2.png',
1225
- class: 'smart-team-2-cap-1',
1226
- groupClass: 'smart-team-2',
1227
- name: 'Capítulo 1',
1228
- groupName: 'Libro 2',
1229
- company: 'Smart Team',
1230
- compilerBoard: 'arduino:avr:uno',
1231
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1232
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1233
- use1200bpsTouch: false,
1234
- fileExtension: 'hex',
1235
- profile: 'smartTeamLibro2Capitulo1',
1236
- lang: 'Arduino',
1237
- show: 1,
1238
- showOnAula: 1,
1239
- enabled: 1,
1240
- enabledForCode: 1,
1241
- premium: 0,
1242
- toolboxLayout: 'horizontal',
1243
- elementType: BOARD_ITEM_TYPE.BOOK,
1244
- pins: pins_1.BHOOT,
1245
- },
1246
- {
1247
- id: 108,
1248
- type: 'junior',
1249
- image: 'smart-team-2.png',
1250
- class: 'smart-team-2-cap-1',
1251
- groupClass: 'smart-team-2',
1252
- name: 'Capítulo 2',
1253
- groupName: 'Libro 2',
1254
- company: 'Smart Team',
1255
- compilerBoard: 'arduino:avr:uno',
1256
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1257
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1258
- use1200bpsTouch: false,
1259
- fileExtension: 'hex',
1260
- profile: 'smartTeamLibro2Capitulo2',
1261
- lang: 'Arduino',
1262
- show: 1,
1263
- showOnAula: 1,
1264
- enabled: 1,
1265
- enabledForCode: 1,
1266
- premium: 0,
1267
- toolboxLayout: 'horizontal',
1268
- elementType: BOARD_ITEM_TYPE.BOOK,
1269
- pins: pins_1.BHOOT,
1270
- },
1271
- {
1272
- id: 109,
1273
- type: 'junior',
1274
- image: 'smart-team-2.png',
1275
- class: 'smart-team-2-cap-1',
1276
- groupClass: 'smart-team-2',
1277
- name: 'Capítulo 3',
1278
- groupName: 'Libro 2',
1279
- company: 'Smart Team',
1280
- compilerBoard: 'arduino:avr:uno',
1281
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1282
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1283
- use1200bpsTouch: false,
1284
- fileExtension: 'hex',
1285
- profile: 'smartTeamLibro2Capitulo3',
1286
- lang: 'Arduino',
1287
- show: 1,
1288
- showOnAula: 1,
1289
- enabled: 1,
1290
- enabledForCode: 1,
1291
- premium: 0,
1292
- toolboxLayout: 'horizontal',
1293
- elementType: BOARD_ITEM_TYPE.BOOK,
1294
- pins: pins_1.BHOOT,
1295
- },
1296
- {
1297
- id: 110,
1298
- type: 'junior',
1299
- image: 'smart-team-2.png',
1300
- class: 'smart-team-2-cap-1',
1301
- groupClass: 'smart-team-2',
1302
- name: 'Capítulo 4',
1303
- groupName: 'Libro 2',
1304
- company: 'Smart Team',
1305
- compilerBoard: 'arduino:avr:uno',
1306
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1307
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1308
- use1200bpsTouch: false,
1309
- fileExtension: 'hex',
1310
- profile: 'smartTeamLibro2Capitulo4',
1311
- lang: 'Arduino',
1312
- show: 1,
1313
- showOnAula: 1,
1314
- enabled: 1,
1315
- enabledForCode: 1,
1316
- premium: 0,
1317
- toolboxLayout: 'horizontal',
1318
- elementType: BOARD_ITEM_TYPE.BOOK,
1319
- pins: pins_1.BHOOT,
1320
- },
1321
- {
1322
- id: 111,
1323
- type: 'junior',
1324
- image: 'smart-team-2.png',
1325
- class: 'smart-team-2-cap-1',
1326
- groupClass: 'smart-team-2',
1327
- name: 'Capítulo 5',
1328
- groupName: 'Libro 2',
1329
- company: 'Smart Team',
1330
- compilerBoard: 'arduino:avr:uno',
1331
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1332
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1333
- use1200bpsTouch: false,
1334
- fileExtension: 'hex',
1335
- profile: 'smartTeamLibro2Capitulo5',
1336
- lang: 'Arduino',
1337
- show: 1,
1338
- showOnAula: 1,
1339
- enabled: 1,
1340
- enabledForCode: 1,
1341
- premium: 0,
1342
- toolboxLayout: 'horizontal',
1343
- elementType: BOARD_ITEM_TYPE.BOOK,
1344
- pins: pins_1.BHOOT,
1345
- },
1346
- {
1347
- id: 112,
1348
- type: 'junior',
1349
- image: 'genuino-uno.png',
1350
- class: 'arduino-genuino-uno',
1351
- name: 'Uno Rev. 3',
1352
- groupName: 'Uno Rev. 3',
1353
- company: 'Arduino',
1354
- htmlValue: '',
1355
- compilerBoard: 'arduino:avr:uno',
1356
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1357
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1358
- use1200bpsTouch: false,
1359
- fileExtension: 'hex',
1360
- profile: 'arduinoUnoJR',
1361
- lang: 'Arduino',
1362
- show: 0,
1363
- showOnAula: 1,
1364
- enabled: 0,
1365
- enabledForCode: 1,
1366
- premium: 0,
1367
- toolboxLayout: 'vertical',
1368
- elementType: BOARD_ITEM_TYPE.BOARD,
1369
- pins: pins_1.ARDUINO_UNO,
1370
- },
1371
- {
1372
- id: 113,
1373
- type: 'junior',
1374
- image: 'genuino-mega.png',
1375
- class: 'arduino-genuino-mega',
1376
- name: 'Mega 2560',
1377
- groupName: 'Mega 2560',
1378
- company: 'Arduino',
1379
- htmlValue: '',
1380
- compilerBoard: 'arduino:avr:mega:cpu=atmega2560',
1381
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega2560 -cwiring -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1382
- agentSignature: 'e7c88755c7c222dba4c7f96ad56d18e2910734244862ad6079506a71d342405498a1e6a767d623cc9333220a6b65dd63b2a264ead1ffddb5bb7f6de52557ea3048ebe7e00be22b24cc53b021e3ec959e25207682764a027962eb0807c00f8ee2e671a4249f0075547a9c623bee2d0262a4aaf39155434b789ce68658c90c02ccc704d3582d08254bc860036c883885e51fdd0464a14887cafde99e4839fb73f68d079d9ea7d7cdad6618564a29ea5e2034afe142b0f05a356e702b43abb4165dcf7c1deb26ab1642dce3aab128864c2497b1de13e33440612ea165722a64dc8aa55e8eda21126bda14faa9485804a2f70d9e673e6b9e155f39646aa20f780879',
1383
- use1200bpsTouch: false,
1384
- fileExtension: 'hex',
1385
- profile: 'arduinoUnoJR',
1386
- lang: 'Arduino',
1387
- show: 0,
1388
- showOnAula: 1,
1389
- enabled: 0,
1390
- enabledForCode: 1,
1391
- premium: 0,
1392
- toolboxLayout: 'vertical',
1393
- elementType: BOARD_ITEM_TYPE.BOARD,
1394
- pins: pins_1.ARDUINO_MEGA,
1395
- },
1396
- {
1397
- id: 114,
1398
- type: 'junior',
1399
- image: 'makeblock-mbot.png',
1400
- class: 'makeblock-mbot',
1401
- name: 'Mbot',
1402
- groupName: 'Mbot',
1403
- company: 'Makeblock',
1404
- htmlValue: '',
1405
- compilerBoard: 'arduino:avr:uno',
1406
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1407
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1408
- use1200bpsTouch: false,
1409
- fileExtension: 'hex',
1410
- profile: 'arduinoUno',
1411
- lang: 'Arduino',
1412
- show: 1,
1413
- showOnAula: 1,
1414
- enabled: 0,
1415
- enabledForCode: 1,
1416
- premium: 0,
1417
- toolboxLayout: 'vertical',
1418
- elementType: BOARD_ITEM_TYPE.ROBOT,
1419
- pins: pins_1.ARDUINO_UNO,
1420
- },
1421
- {
1422
- id: 115,
1423
- type: 'junior',
1424
- image: 'robobloq-qoopers.png',
1425
- class: 'robobloq-qoopers',
1426
- name: 'Qoopers',
1427
- groupName: 'Qoopers',
1428
- company: 'Robobloq',
1429
- htmlValue: '',
1430
- compilerBoard: 'arduino:avr:uno',
1431
- agentCommandLine: '"{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" -v -patmega328p -carduino -P{serial.port} -b115200 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"',
1432
- agentSignature: '2d3a6a438825c52155909e71a71b7f850bac6c98e2b7c57fa5c9c0479c80a1f048f9224f4ab63e5686e4d9f41e7f9368ffe4e0bedc4e144496cbcd1b1370af7825a37dd8900b3c671bbcc1809108857c93ea9e8d4d3fe1f9bd55104d60bdcfa40c236d2d5300a26b1c07835c0ef6343e09912f1b011dd435e2c0dc170e43b7ea7234e1f2a8698b2a231f5e1de9c1ccab32a95fdf1918c64efcabd8b92a1f0027f5a8ed69309060eef32a61eccbf20eb822245fe299d7a3aef25900bbe4e70a9c650a0ba0bae1ea8d5fae4484ee4da480542593537bd2f2b5bb726c056cf85d7008c7eaf6f3d9167a261eff89ccac5c04aacf1c0479f55ad4c7bfee78830fea44',
1433
- use1200bpsTouch: false,
1434
- fileExtension: 'hex',
1435
- profile: 'arduinoUno',
1436
- lang: 'Arduino',
1437
- show: 1,
1438
- showOnAula: 1,
1439
- enabled: 0,
1440
- enabledForCode: 1,
1441
- premium: 0,
1442
- toolboxLayout: 'vertical',
1443
- elementType: BOARD_ITEM_TYPE.ROBOT,
1444
- pins: pins_1.ARDUINO_UNO,
1445
- },
1446
- ];
1447
- exports.default = exports.boards;
1448
- //# sourceMappingURL=boards.js.map