@tscircuit/schematic-trace-solver 0.0.186 → 0.0.188

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.
Files changed (53) hide show
  1. package/dist/index.d.ts +40 -23
  2. package/dist/index.js +1041 -319
  3. package/lib/solvers/InlineNetLabelSolver/InlineNetLabelSolver.ts +611 -230
  4. package/lib/solvers/InlineNetLabelSolver/alignPortOnlyInlineNetLabelStubs.ts +2 -6
  5. package/lib/solvers/InlineNetLabelSolver/getInlineLabelObstacles.ts +64 -0
  6. package/lib/solvers/InlineNetLabelSolver/getLocalTraceLabelShifts.ts +407 -0
  7. package/lib/solvers/InlineNetLabelSolver/getOutputLabelCollisions.ts +145 -0
  8. package/lib/solvers/InlineNetLabelSolver/isLabelRepresentedInline.ts +15 -0
  9. package/lib/solvers/InlineNetLabelSolver/pushAnchoredNetLabelsAwayFromInlineLabels.ts +61 -31
  10. package/lib/solvers/NetLabelNetLabelCollisionSolver/NetLabelNetLabelCollisionSolver.ts +83 -14
  11. package/lib/solvers/NetLabelToTraceSolver/NetLabelToTraceSolver.ts +4 -3
  12. package/lib/solvers/SameNetJunctionAlignmentSolver/alignSameNetJunctions.ts +14 -11
  13. package/lib/solvers/SchematicTracePipelineSolver/SchematicTracePipelineSolver.ts +3 -0
  14. package/lib/types/InputProblem.ts +2 -2
  15. package/package.json +1 -1
  16. package/site/bug-reports/bug-report-20260907T083336Z.page.tsx +4 -0
  17. package/site/bug-reports/bug-report-20260907T110144Z.page.tsx +4 -0
  18. package/site/bug-reports/bug-report-20260907T145640Z.page.tsx +4 -0
  19. package/tests/bug-reports/bug-report-20260806T093501Z/__snapshots__/bug-report-20260806T093501Z.snap.svg +2 -2
  20. package/tests/bug-reports/bug-report-20260811T075142Z/__snapshots__/bug-report-20260811T075142Z.snap.svg +18 -18
  21. package/tests/bug-reports/bug-report-20260819T091818Z/__snapshots__/bug-report-20260819T091818Z.snap.svg +2 -2
  22. package/tests/bug-reports/bug-report-20260819T091818Z/bug-report-20260819T091818Z.test.ts +21 -0
  23. package/tests/bug-reports/bug-report-20260825T103621Z/__snapshots__/bug-report-20260825T103621Z.snap.svg +5 -38
  24. package/tests/bug-reports/bug-report-20260826T072956Z/__snapshots__/bug-report-20260826T072956Z.snap.svg +3 -9
  25. package/tests/bug-reports/bug-report-20260901T055358Z/__snapshots__/bug-report-20260901T055358Z.snap.svg +18 -30
  26. package/tests/bug-reports/bug-report-20260901T055358Z/bug-report-20260901T055358Z.test.ts +33 -0
  27. package/tests/bug-reports/bug-report-20260907T083336Z/__snapshots__/bug-report-20260907T083336Z.snap.svg +520 -0
  28. package/tests/bug-reports/bug-report-20260907T083336Z/bug-report-20260907T083336Z.json +2031 -0
  29. package/tests/bug-reports/bug-report-20260907T083336Z/bug-report-20260907T083336Z.test.ts +27 -0
  30. package/tests/bug-reports/bug-report-20260907T110144Z/__snapshots__/bug-report-20260907T110144Z.snap.svg +282 -0
  31. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.json +1073 -0
  32. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.test.ts +12 -0
  33. package/tests/bug-reports/bug-report-20260907T145640Z/__snapshots__/bug-report-20260907T145640Z.snap.svg +1107 -0
  34. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.json +3563 -0
  35. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.test.ts +117 -0
  36. package/tests/repros/__snapshots__/board-1273-trace-overlap-cycle.snap.svg +2 -2
  37. package/tests/repros/__snapshots__/repro-battery-management-bq24073.snap.svg +4 -4
  38. package/tests/repros/__snapshots__/repro-board-648-esp12f-section.snap.svg +2 -2
  39. package/tests/repros/__snapshots__/repro-core-tb67s579ftg-inline-label-routing.snap.svg +20 -20
  40. package/tests/repros/__snapshots__/repro-esp12f-section.snap.svg +37 -55
  41. package/tests/repros/__snapshots__/repro-hub-usb-sheet.snap.svg +44 -68
  42. package/tests/repros/__snapshots__/repro-mspm0l1306-capacitor-symmetry.snap.svg +3 -9
  43. package/tests/repros/__snapshots__/repro-usb-power-vbus-label-detour.snap.svg +50 -74
  44. package/tests/repros/__snapshots__/repro48-555-timer-vcc-rail-label.snap.svg +2 -2
  45. package/tests/repros/repro-battery-management-bq24073.test.ts +13 -1
  46. package/tests/repros/repro-hub-usb-sheet.test.ts +25 -0
  47. package/tests/repros/repro-usb-power-vbus-label-detour.test.ts +59 -13
  48. package/tests/solvers/InlineNetLabelSolver/local-trace-label-shifts.test.ts +296 -0
  49. package/tests/solvers/InlineNetLabelSolver/multi-pin-connected-components.test.ts +7 -4
  50. package/tests/solvers/InlineNetLabelSolver/push-anchored-net-labels-away.test.ts +2 -1
  51. package/tests/solvers/InlineNetLabelSolver/shared-direct-and-named-connection.test.ts +62 -0
  52. package/tests/solvers/InlineNetLabelSolver/two-pin-terminal-stubs-atomic.test.ts +9 -3
  53. package/tests/solvers/SameNetJunctionAlignmentSolver/parallel-load-rails.test.ts +24 -0
@@ -0,0 +1,2031 @@
1
+ {
2
+ "chips": [
3
+ {
4
+ "chipId": "schematic_component_0",
5
+ "center": {
6
+ "x": -13.930497016666665,
7
+ "y": -3.892499999999999
8
+ },
9
+ "width": 2,
10
+ "height": 4.000000000000002,
11
+ "pins": [
12
+ {
13
+ "pinId": "schematic_port_0",
14
+ "displayName": "SHELL3",
15
+ "x": -12.930497016666665,
16
+ "y": -5.4925
17
+ },
18
+ {
19
+ "pinId": "schematic_port_1",
20
+ "displayName": "SHELL4",
21
+ "x": -12.930497016666665,
22
+ "y": -5.692499999999999
23
+ },
24
+ {
25
+ "pinId": "schematic_port_2",
26
+ "displayName": "SHELL1",
27
+ "x": -12.930497016666665,
28
+ "y": -5.092499999999999
29
+ },
30
+ {
31
+ "pinId": "schematic_port_3",
32
+ "displayName": "SHELL2",
33
+ "x": -12.930497016666665,
34
+ "y": -5.2924999999999995
35
+ },
36
+ {
37
+ "pinId": "schematic_port_4",
38
+ "displayName": "A1B12",
39
+ "x": -12.930497016666665,
40
+ "y": -4.692499999999999
41
+ },
42
+ {
43
+ "pinId": "schematic_port_5",
44
+ "displayName": "A4B9",
45
+ "x": -12.930497016666665,
46
+ "y": -2.0924999999999994
47
+ },
48
+ {
49
+ "pinId": "schematic_port_6",
50
+ "displayName": "B8",
51
+ "x": -12.930497016666665,
52
+ "y": -4.342499999999999
53
+ },
54
+ {
55
+ "pinId": "schematic_port_7",
56
+ "displayName": "A5",
57
+ "x": -12.930497016666665,
58
+ "y": -2.642499999999999
59
+ },
60
+ {
61
+ "pinId": "schematic_port_8",
62
+ "displayName": "B7",
63
+ "x": -12.930497016666665,
64
+ "y": -3.7924999999999995
65
+ },
66
+ {
67
+ "pinId": "schematic_port_9",
68
+ "displayName": "A6",
69
+ "x": -12.930497016666665,
70
+ "y": -3.192499999999999
71
+ },
72
+ {
73
+ "pinId": "schematic_port_10",
74
+ "displayName": "A7",
75
+ "x": -12.930497016666665,
76
+ "y": -3.5924999999999994
77
+ },
78
+ {
79
+ "pinId": "schematic_port_11",
80
+ "displayName": "B6",
81
+ "x": -12.930497016666665,
82
+ "y": -3.3925
83
+ },
84
+ {
85
+ "pinId": "schematic_port_12",
86
+ "displayName": "A8",
87
+ "x": -12.930497016666665,
88
+ "y": -4.1425
89
+ },
90
+ {
91
+ "pinId": "schematic_port_13",
92
+ "displayName": "B5",
93
+ "x": -12.930497016666665,
94
+ "y": -2.8424999999999994
95
+ },
96
+ {
97
+ "pinId": "schematic_port_14",
98
+ "displayName": "B4A9",
99
+ "x": -12.930497016666665,
100
+ "y": -2.2924999999999986
101
+ },
102
+ {
103
+ "pinId": "schematic_port_15",
104
+ "displayName": "B1A12",
105
+ "x": -12.930497016666665,
106
+ "y": -4.892499999999999
107
+ }
108
+ ],
109
+ "sectionId": "USB"
110
+ },
111
+ {
112
+ "chipId": "schematic_component_1",
113
+ "center": {
114
+ "x": -11.530497016666665,
115
+ "y": -8.1975
116
+ },
117
+ "width": 2,
118
+ "height": 1.8000000000000007,
119
+ "pins": [
120
+ {
121
+ "pinId": "schematic_port_16",
122
+ "displayName": "GND",
123
+ "x": -12.530497016666665,
124
+ "y": -7.4975
125
+ },
126
+ {
127
+ "pinId": "schematic_port_17",
128
+ "displayName": "TXD",
129
+ "x": -12.530497016666665,
130
+ "y": -7.6975
131
+ },
132
+ {
133
+ "pinId": "schematic_port_18",
134
+ "displayName": "RXD",
135
+ "x": -12.530497016666665,
136
+ "y": -7.8975
137
+ },
138
+ {
139
+ "pinId": "schematic_port_19",
140
+ "displayName": "V3",
141
+ "x": -12.530497016666665,
142
+ "y": -8.0975
143
+ },
144
+ {
145
+ "pinId": "schematic_port_20",
146
+ "displayName": "D_POS",
147
+ "x": -12.530497016666665,
148
+ "y": -8.2975
149
+ },
150
+ {
151
+ "pinId": "schematic_port_21",
152
+ "displayName": "D_NEG",
153
+ "x": -12.530497016666665,
154
+ "y": -8.4975
155
+ },
156
+ {
157
+ "pinId": "schematic_port_22",
158
+ "displayName": "7",
159
+ "x": -12.530497016666665,
160
+ "y": -8.6975
161
+ },
162
+ {
163
+ "pinId": "schematic_port_23",
164
+ "displayName": "N_OUT",
165
+ "x": -12.530497016666665,
166
+ "y": -8.897499999999999
167
+ },
168
+ {
169
+ "pinId": "schematic_port_24",
170
+ "displayName": "N_CTS",
171
+ "x": -10.530497016666665,
172
+ "y": -8.897499999999999
173
+ },
174
+ {
175
+ "pinId": "schematic_port_25",
176
+ "displayName": "N_DSR",
177
+ "x": -10.530497016666665,
178
+ "y": -8.6975
179
+ },
180
+ {
181
+ "pinId": "schematic_port_26",
182
+ "displayName": "N_RI",
183
+ "x": -10.530497016666665,
184
+ "y": -8.4975
185
+ },
186
+ {
187
+ "pinId": "schematic_port_27",
188
+ "displayName": "N_DCD",
189
+ "x": -10.530497016666665,
190
+ "y": -8.2975
191
+ },
192
+ {
193
+ "pinId": "schematic_port_28",
194
+ "displayName": "N_DTR",
195
+ "x": -10.530497016666665,
196
+ "y": -8.0975
197
+ },
198
+ {
199
+ "pinId": "schematic_port_29",
200
+ "displayName": "N_RTS",
201
+ "x": -10.530497016666665,
202
+ "y": -7.8975
203
+ },
204
+ {
205
+ "pinId": "schematic_port_30",
206
+ "displayName": "R232",
207
+ "x": -10.530497016666665,
208
+ "y": -7.6975
209
+ },
210
+ {
211
+ "pinId": "schematic_port_31",
212
+ "displayName": "VCC",
213
+ "x": -10.530497016666665,
214
+ "y": -7.4975
215
+ }
216
+ ],
217
+ "sectionId": "USB"
218
+ },
219
+ {
220
+ "chipId": "schematic_component_2",
221
+ "center": {
222
+ "x": -3.9396636833333316,
223
+ "y": -6.089999999999999
224
+ },
225
+ "width": 2,
226
+ "height": 0.5999999999999996,
227
+ "pins": [
228
+ {
229
+ "pinId": "schematic_port_32",
230
+ "displayName": "VIN",
231
+ "x": -4.939663683333332,
232
+ "y": -5.889999999999999
233
+ },
234
+ {
235
+ "pinId": "schematic_port_33",
236
+ "displayName": "GND",
237
+ "x": -4.939663683333332,
238
+ "y": -6.089999999999999
239
+ },
240
+ {
241
+ "pinId": "schematic_port_34",
242
+ "displayName": "EN",
243
+ "x": -4.939663683333332,
244
+ "y": -6.289999999999999
245
+ },
246
+ {
247
+ "pinId": "schematic_port_35",
248
+ "displayName": "NC",
249
+ "x": -2.9396636833333316,
250
+ "y": -6.189999999999999
251
+ },
252
+ {
253
+ "pinId": "schematic_port_36",
254
+ "displayName": "VOUT",
255
+ "x": -2.9396636833333316,
256
+ "y": -5.989999999999999
257
+ }
258
+ ],
259
+ "sectionId": "POWER"
260
+ },
261
+ {
262
+ "chipId": "schematic_component_3",
263
+ "center": {
264
+ "x": 5.59408631666667,
265
+ "y": -5.735
266
+ },
267
+ "width": 2,
268
+ "height": 6.200000000000001,
269
+ "pins": [
270
+ {
271
+ "pinId": "schematic_port_37",
272
+ "displayName": "GND23",
273
+ "x": 6.59408631666667,
274
+ "y": -4.235
275
+ },
276
+ {
277
+ "pinId": "schematic_port_38",
278
+ "displayName": "GND24",
279
+ "x": 6.59408631666667,
280
+ "y": -4.035
281
+ },
282
+ {
283
+ "pinId": "schematic_port_39",
284
+ "displayName": "GND25",
285
+ "x": 6.59408631666667,
286
+ "y": -3.835
287
+ },
288
+ {
289
+ "pinId": "schematic_port_40",
290
+ "displayName": "GND26",
291
+ "x": 6.59408631666667,
292
+ "y": -3.635
293
+ },
294
+ {
295
+ "pinId": "schematic_port_41",
296
+ "displayName": "GND27",
297
+ "x": 6.59408631666667,
298
+ "y": -3.4349999999999996
299
+ },
300
+ {
301
+ "pinId": "schematic_port_42",
302
+ "displayName": "GND28",
303
+ "x": 6.59408631666667,
304
+ "y": -3.2349999999999994
305
+ },
306
+ {
307
+ "pinId": "schematic_port_43",
308
+ "displayName": "GND29",
309
+ "x": 6.59408631666667,
310
+ "y": -3.0349999999999993
311
+ },
312
+ {
313
+ "pinId": "schematic_port_44",
314
+ "displayName": "GND30",
315
+ "x": 6.59408631666667,
316
+ "y": -2.834999999999999
317
+ },
318
+ {
319
+ "pinId": "schematic_port_45",
320
+ "displayName": "GND1",
321
+ "x": 4.59408631666667,
322
+ "y": -2.734999999999999
323
+ },
324
+ {
325
+ "pinId": "schematic_port_46",
326
+ "displayName": "GND2",
327
+ "x": 4.59408631666667,
328
+ "y": -2.934999999999999
329
+ },
330
+ {
331
+ "pinId": "schematic_port_47",
332
+ "displayName": "3V3",
333
+ "x": 4.59408631666667,
334
+ "y": -3.134999999999999
335
+ },
336
+ {
337
+ "pinId": "schematic_port_48",
338
+ "displayName": "NC1",
339
+ "x": 4.59408631666667,
340
+ "y": -3.334999999999999
341
+ },
342
+ {
343
+ "pinId": "schematic_port_49",
344
+ "displayName": "IO2",
345
+ "x": 4.59408631666667,
346
+ "y": -3.5349999999999993
347
+ },
348
+ {
349
+ "pinId": "schematic_port_50",
350
+ "displayName": "IO3",
351
+ "x": 4.59408631666667,
352
+ "y": -3.734999999999999
353
+ },
354
+ {
355
+ "pinId": "schematic_port_51",
356
+ "displayName": "NC2",
357
+ "x": 4.59408631666667,
358
+ "y": -3.9349999999999987
359
+ },
360
+ {
361
+ "pinId": "schematic_port_52",
362
+ "displayName": "EN",
363
+ "x": 4.59408631666667,
364
+ "y": -4.134999999999999
365
+ },
366
+ {
367
+ "pinId": "schematic_port_53",
368
+ "displayName": "NC3",
369
+ "x": 4.59408631666667,
370
+ "y": -4.334999999999999
371
+ },
372
+ {
373
+ "pinId": "schematic_port_54",
374
+ "displayName": "NC4",
375
+ "x": 4.59408631666667,
376
+ "y": -4.534999999999998
377
+ },
378
+ {
379
+ "pinId": "schematic_port_55",
380
+ "displayName": "GND3",
381
+ "x": 4.59408631666667,
382
+ "y": -4.7349999999999985
383
+ },
384
+ {
385
+ "pinId": "schematic_port_56",
386
+ "displayName": "IO0",
387
+ "x": 4.59408631666667,
388
+ "y": -4.934999999999999
389
+ },
390
+ {
391
+ "pinId": "schematic_port_57",
392
+ "displayName": "IO1",
393
+ "x": 4.59408631666667,
394
+ "y": -5.134999999999999
395
+ },
396
+ {
397
+ "pinId": "schematic_port_58",
398
+ "displayName": "GND4",
399
+ "x": 4.59408631666667,
400
+ "y": -5.334999999999999
401
+ },
402
+ {
403
+ "pinId": "schematic_port_59",
404
+ "displayName": "NC5",
405
+ "x": 4.59408631666667,
406
+ "y": -5.534999999999999
407
+ },
408
+ {
409
+ "pinId": "schematic_port_60",
410
+ "displayName": "IO10",
411
+ "x": 4.59408631666667,
412
+ "y": -5.734999999999999
413
+ },
414
+ {
415
+ "pinId": "schematic_port_61",
416
+ "displayName": "NC6",
417
+ "x": 4.59408631666667,
418
+ "y": -5.935
419
+ },
420
+ {
421
+ "pinId": "schematic_port_62",
422
+ "displayName": "IO4",
423
+ "x": 4.59408631666667,
424
+ "y": -6.135
425
+ },
426
+ {
427
+ "pinId": "schematic_port_63",
428
+ "displayName": "IO5",
429
+ "x": 4.59408631666667,
430
+ "y": -6.335
431
+ },
432
+ {
433
+ "pinId": "schematic_port_64",
434
+ "displayName": "IO6",
435
+ "x": 4.59408631666667,
436
+ "y": -6.535
437
+ },
438
+ {
439
+ "pinId": "schematic_port_65",
440
+ "displayName": "IO7",
441
+ "x": 4.59408631666667,
442
+ "y": -6.734999999999999
443
+ },
444
+ {
445
+ "pinId": "schematic_port_66",
446
+ "displayName": "IO8",
447
+ "x": 4.59408631666667,
448
+ "y": -6.9350000000000005
449
+ },
450
+ {
451
+ "pinId": "schematic_port_67",
452
+ "displayName": "IO9",
453
+ "x": 4.59408631666667,
454
+ "y": -7.135
455
+ },
456
+ {
457
+ "pinId": "schematic_port_68",
458
+ "displayName": "NC7",
459
+ "x": 4.59408631666667,
460
+ "y": -7.335000000000001
461
+ },
462
+ {
463
+ "pinId": "schematic_port_69",
464
+ "displayName": "NC8",
465
+ "x": 4.59408631666667,
466
+ "y": -7.535
467
+ },
468
+ {
469
+ "pinId": "schematic_port_70",
470
+ "displayName": "IO18",
471
+ "x": 4.59408631666667,
472
+ "y": -7.735000000000001
473
+ },
474
+ {
475
+ "pinId": "schematic_port_71",
476
+ "displayName": "IO19",
477
+ "x": 4.59408631666667,
478
+ "y": -7.9350000000000005
479
+ },
480
+ {
481
+ "pinId": "schematic_port_72",
482
+ "displayName": "NC9",
483
+ "x": 4.59408631666667,
484
+ "y": -8.135000000000002
485
+ },
486
+ {
487
+ "pinId": "schematic_port_73",
488
+ "displayName": "NC10",
489
+ "x": 4.59408631666667,
490
+ "y": -8.335
491
+ },
492
+ {
493
+ "pinId": "schematic_port_74",
494
+ "displayName": "RXD0",
495
+ "x": 4.59408631666667,
496
+ "y": -8.535000000000002
497
+ },
498
+ {
499
+ "pinId": "schematic_port_75",
500
+ "displayName": "TXD0",
501
+ "x": 4.59408631666667,
502
+ "y": -8.735000000000001
503
+ },
504
+ {
505
+ "pinId": "schematic_port_76",
506
+ "displayName": "NC11",
507
+ "x": 6.59408631666667,
508
+ "y": -8.635000000000002
509
+ },
510
+ {
511
+ "pinId": "schematic_port_77",
512
+ "displayName": "NC12",
513
+ "x": 6.59408631666667,
514
+ "y": -8.435000000000002
515
+ },
516
+ {
517
+ "pinId": "schematic_port_78",
518
+ "displayName": "NC13",
519
+ "x": 6.59408631666667,
520
+ "y": -8.235000000000001
521
+ },
522
+ {
523
+ "pinId": "schematic_port_79",
524
+ "displayName": "NC14",
525
+ "x": 6.59408631666667,
526
+ "y": -8.035000000000002
527
+ },
528
+ {
529
+ "pinId": "schematic_port_80",
530
+ "displayName": "GND5",
531
+ "x": 6.59408631666667,
532
+ "y": -7.835000000000002
533
+ },
534
+ {
535
+ "pinId": "schematic_port_81",
536
+ "displayName": "GND6",
537
+ "x": 6.59408631666667,
538
+ "y": -7.635000000000002
539
+ },
540
+ {
541
+ "pinId": "schematic_port_82",
542
+ "displayName": "GND7",
543
+ "x": 6.59408631666667,
544
+ "y": -7.435000000000001
545
+ },
546
+ {
547
+ "pinId": "schematic_port_83",
548
+ "displayName": "GND8",
549
+ "x": 6.59408631666667,
550
+ "y": -7.235000000000001
551
+ },
552
+ {
553
+ "pinId": "schematic_port_84",
554
+ "displayName": "GND9",
555
+ "x": 6.59408631666667,
556
+ "y": -7.035000000000002
557
+ },
558
+ {
559
+ "pinId": "schematic_port_85",
560
+ "displayName": "GND10",
561
+ "x": 6.59408631666667,
562
+ "y": -6.835000000000002
563
+ },
564
+ {
565
+ "pinId": "schematic_port_86",
566
+ "displayName": "GND11",
567
+ "x": 6.59408631666667,
568
+ "y": -6.635000000000002
569
+ },
570
+ {
571
+ "pinId": "schematic_port_87",
572
+ "displayName": "GND12",
573
+ "x": 6.59408631666667,
574
+ "y": -6.435000000000002
575
+ },
576
+ {
577
+ "pinId": "schematic_port_88",
578
+ "displayName": "GND13",
579
+ "x": 6.59408631666667,
580
+ "y": -6.235000000000001
581
+ },
582
+ {
583
+ "pinId": "schematic_port_89",
584
+ "displayName": "GND14",
585
+ "x": 6.59408631666667,
586
+ "y": -6.035000000000002
587
+ },
588
+ {
589
+ "pinId": "schematic_port_90",
590
+ "displayName": "GND15",
591
+ "x": 6.59408631666667,
592
+ "y": -5.835000000000001
593
+ },
594
+ {
595
+ "pinId": "schematic_port_91",
596
+ "displayName": "GND16",
597
+ "x": 6.59408631666667,
598
+ "y": -5.635000000000002
599
+ },
600
+ {
601
+ "pinId": "schematic_port_92",
602
+ "displayName": "GND17",
603
+ "x": 6.59408631666667,
604
+ "y": -5.4350000000000005
605
+ },
606
+ {
607
+ "pinId": "schematic_port_93",
608
+ "displayName": "GND22",
609
+ "x": 6.59408631666667,
610
+ "y": -5.235000000000001
611
+ },
612
+ {
613
+ "pinId": "schematic_port_94",
614
+ "displayName": "GND18",
615
+ "x": 6.59408631666667,
616
+ "y": -5.035
617
+ },
618
+ {
619
+ "pinId": "schematic_port_95",
620
+ "displayName": "GND19",
621
+ "x": 6.59408631666667,
622
+ "y": -4.835000000000001
623
+ },
624
+ {
625
+ "pinId": "schematic_port_96",
626
+ "displayName": "GND20",
627
+ "x": 6.59408631666667,
628
+ "y": -4.635000000000001
629
+ },
630
+ {
631
+ "pinId": "schematic_port_97",
632
+ "displayName": "GND21",
633
+ "x": 6.59408631666667,
634
+ "y": -4.4350000000000005
635
+ }
636
+ ],
637
+ "sectionId": "MCU"
638
+ },
639
+ {
640
+ "chipId": "schematic_component_4",
641
+ "center": {
642
+ "x": 13.00408631666667,
643
+ "y": -3.892499999999999
644
+ },
645
+ "width": 2,
646
+ "height": 0.40000000000000036,
647
+ "pins": [
648
+ {
649
+ "pinId": "schematic_port_98",
650
+ "displayName": "B",
651
+ "x": 12.00408631666667,
652
+ "y": -3.792499999999999
653
+ },
654
+ {
655
+ "pinId": "schematic_port_99",
656
+ "displayName": "E",
657
+ "x": 12.00408631666667,
658
+ "y": -3.9924999999999993
659
+ },
660
+ {
661
+ "pinId": "schematic_port_100",
662
+ "displayName": "C",
663
+ "x": 14.00408631666667,
664
+ "y": -3.892499999999999
665
+ }
666
+ ],
667
+ "sectionId": "AUTO"
668
+ },
669
+ {
670
+ "chipId": "schematic_component_5",
671
+ "center": {
672
+ "x": 13.00408631666667,
673
+ "y": -6.2924999999999995
674
+ },
675
+ "width": 2,
676
+ "height": 0.40000000000000036,
677
+ "pins": [
678
+ {
679
+ "pinId": "schematic_port_101",
680
+ "displayName": "B",
681
+ "x": 12.00408631666667,
682
+ "y": -6.192499999999999
683
+ },
684
+ {
685
+ "pinId": "schematic_port_102",
686
+ "displayName": "E",
687
+ "x": 12.00408631666667,
688
+ "y": -6.3925
689
+ },
690
+ {
691
+ "pinId": "schematic_port_103",
692
+ "displayName": "C",
693
+ "x": 14.00408631666667,
694
+ "y": -6.2924999999999995
695
+ }
696
+ ],
697
+ "sectionId": "AUTO"
698
+ },
699
+ {
700
+ "chipId": "schematic_component_6",
701
+ "center": {
702
+ "x": 15.56854166666667,
703
+ "y": -6.762499999999999
704
+ },
705
+ "width": 0.7189106999999986,
706
+ "height": 0.9399999999999995,
707
+ "pins": [
708
+ {
709
+ "pinId": "schematic_port_104",
710
+ "displayName": "1",
711
+ "x": 15.56854166666667,
712
+ "y": -6.2924999999999995,
713
+ "_facingDirection": "y+"
714
+ },
715
+ {
716
+ "pinId": "schematic_port_105",
717
+ "displayName": "2",
718
+ "x": 15.56854166666667,
719
+ "y": -7.232499999999999,
720
+ "_facingDirection": "y-"
721
+ }
722
+ ],
723
+ "sectionId": "AUTO"
724
+ },
725
+ {
726
+ "chipId": "schematic_component_7",
727
+ "center": {
728
+ "x": 15.56854166666667,
729
+ "y": -4.6125
730
+ },
731
+ "width": 0.7189106999999986,
732
+ "height": 0.9399999999999995,
733
+ "pins": [
734
+ {
735
+ "pinId": "schematic_port_106",
736
+ "displayName": "1",
737
+ "x": 15.56854166666667,
738
+ "y": -4.1425,
739
+ "_facingDirection": "y+"
740
+ },
741
+ {
742
+ "pinId": "schematic_port_107",
743
+ "displayName": "2",
744
+ "x": 15.56854166666667,
745
+ "y": -5.0825,
746
+ "_facingDirection": "y-"
747
+ }
748
+ ],
749
+ "sectionId": "AUTO"
750
+ },
751
+ {
752
+ "chipId": "schematic_component_8",
753
+ "center": {
754
+ "x": -3.0300000000000002,
755
+ "y": -15.919999999999998
756
+ },
757
+ "width": 1.1250000000000004,
758
+ "height": 1.1300000000000008,
759
+ "pins": [
760
+ {
761
+ "pinId": "schematic_port_108",
762
+ "displayName": "anode",
763
+ "x": -3.2675,
764
+ "y": -15.354999999999997,
765
+ "_facingDirection": "y+"
766
+ },
767
+ {
768
+ "pinId": "schematic_port_109",
769
+ "displayName": "cathode",
770
+ "x": -3.2675,
771
+ "y": -16.485,
772
+ "_facingDirection": "y-"
773
+ }
774
+ ],
775
+ "sectionId": "LED"
776
+ },
777
+ {
778
+ "chipId": "schematic_component_9",
779
+ "center": {
780
+ "x": -11.167997016666664,
781
+ "y": -5.3925
782
+ },
783
+ "width": 1.084999999999999,
784
+ "height": 0.6000000000000014,
785
+ "pins": [
786
+ {
787
+ "pinId": "schematic_port_110",
788
+ "displayName": "anode",
789
+ "x": -11.385497016666665,
790
+ "y": -5.092499999999999
791
+ },
792
+ {
793
+ "pinId": "schematic_port_111",
794
+ "displayName": "cathode",
795
+ "x": -11.385497016666665,
796
+ "y": -5.692500000000001
797
+ }
798
+ ],
799
+ "sectionId": "USB"
800
+ },
801
+ {
802
+ "chipId": "schematic_component_10",
803
+ "center": {
804
+ "x": -11.167997016666664,
805
+ "y": -3.5824999999999996
806
+ },
807
+ "width": 1.084999999999999,
808
+ "height": 0.5999999999999996,
809
+ "pins": [
810
+ {
811
+ "pinId": "schematic_port_112",
812
+ "displayName": "anode",
813
+ "x": -11.385497016666665,
814
+ "y": -3.2824999999999998,
815
+ "_facingDirection": "y+"
816
+ },
817
+ {
818
+ "pinId": "schematic_port_113",
819
+ "displayName": "cathode",
820
+ "x": -11.385497016666665,
821
+ "y": -3.8824999999999994,
822
+ "_facingDirection": "y-"
823
+ }
824
+ ],
825
+ "sectionId": "USB"
826
+ },
827
+ {
828
+ "chipId": "schematic_component_11",
829
+ "center": {
830
+ "x": 1.142836316666669,
831
+ "y": -5.6075
832
+ },
833
+ "width": 0.9649999999999999,
834
+ "height": 0.5999999999999996,
835
+ "pins": [
836
+ {
837
+ "pinId": "schematic_port_114",
838
+ "displayName": "anode",
839
+ "x": 0.9853363166666691,
840
+ "y": -5.3075,
841
+ "_facingDirection": "y+"
842
+ },
843
+ {
844
+ "pinId": "schematic_port_115",
845
+ "displayName": "cathode",
846
+ "x": 0.9853363166666691,
847
+ "y": -5.9075,
848
+ "_facingDirection": "y-"
849
+ }
850
+ ],
851
+ "sectionId": "MCU"
852
+ },
853
+ {
854
+ "chipId": "schematic_component_12",
855
+ "center": {
856
+ "x": 3.2065863166666695,
857
+ "y": -7.379999999999999
858
+ },
859
+ "width": 0.9650000000000003,
860
+ "height": 0.5999999999999996,
861
+ "pins": [
862
+ {
863
+ "pinId": "schematic_port_116",
864
+ "displayName": "anode",
865
+ "x": 3.0490863166666697,
866
+ "y": -7.079999999999999,
867
+ "_facingDirection": "y+"
868
+ },
869
+ {
870
+ "pinId": "schematic_port_117",
871
+ "displayName": "cathode",
872
+ "x": 3.0490863166666697,
873
+ "y": -7.679999999999999,
874
+ "_facingDirection": "y-"
875
+ }
876
+ ],
877
+ "sectionId": "MCU"
878
+ },
879
+ {
880
+ "chipId": "schematic_component_13",
881
+ "center": {
882
+ "x": 3.2065863166666695,
883
+ "y": -9.189999999999998
884
+ },
885
+ "width": 0.9650000000000003,
886
+ "height": 0.6000000000000014,
887
+ "pins": [
888
+ {
889
+ "pinId": "schematic_port_118",
890
+ "displayName": "anode",
891
+ "x": 3.0490863166666697,
892
+ "y": -8.889999999999997,
893
+ "_facingDirection": "y+"
894
+ },
895
+ {
896
+ "pinId": "schematic_port_119",
897
+ "displayName": "cathode",
898
+ "x": 3.0490863166666697,
899
+ "y": -9.489999999999998,
900
+ "_facingDirection": "y-"
901
+ }
902
+ ],
903
+ "sectionId": "MCU"
904
+ },
905
+ {
906
+ "chipId": "schematic_component_14",
907
+ "center": {
908
+ "x": 3.2065863166666695,
909
+ "y": -1.7999999999999998
910
+ },
911
+ "width": 0.9650000000000003,
912
+ "height": 0.5999999999999999,
913
+ "pins": [
914
+ {
915
+ "pinId": "schematic_port_120",
916
+ "displayName": "anode",
917
+ "x": 3.0490863166666697,
918
+ "y": -1.5,
919
+ "_facingDirection": "y+"
920
+ },
921
+ {
922
+ "pinId": "schematic_port_121",
923
+ "displayName": "cathode",
924
+ "x": 3.0490863166666697,
925
+ "y": -2.0999999999999996,
926
+ "_facingDirection": "y-"
927
+ }
928
+ ],
929
+ "sectionId": "MCU"
930
+ },
931
+ {
932
+ "chipId": "schematic_component_15",
933
+ "center": {
934
+ "x": 10.494086316666671,
935
+ "y": -5.092499999999999
936
+ },
937
+ "width": 0.6000000000000014,
938
+ "height": 0.6799999999999997,
939
+ "pins": [
940
+ {
941
+ "pinId": "schematic_port_122",
942
+ "displayName": "anode",
943
+ "x": 10.19408631666667,
944
+ "y": -5.092499999999999,
945
+ "_facingDirection": "x-"
946
+ },
947
+ {
948
+ "pinId": "schematic_port_123",
949
+ "displayName": "cathode",
950
+ "x": 10.794086316666672,
951
+ "y": -5.092499999999999,
952
+ "_facingDirection": "x+"
953
+ }
954
+ ],
955
+ "sectionId": "AUTO"
956
+ },
957
+ {
958
+ "chipId": "schematic_component_16",
959
+ "center": {
960
+ "x": 10.494086316666671,
961
+ "y": -6.972499999999999
962
+ },
963
+ "width": 0.6000000000000014,
964
+ "height": 0.6799999999999997,
965
+ "pins": [
966
+ {
967
+ "pinId": "schematic_port_124",
968
+ "displayName": "anode",
969
+ "x": 10.19408631666667,
970
+ "y": -6.972499999999999,
971
+ "_facingDirection": "x-"
972
+ },
973
+ {
974
+ "pinId": "schematic_port_125",
975
+ "displayName": "cathode",
976
+ "x": 10.794086316666672,
977
+ "y": -6.972499999999999,
978
+ "_facingDirection": "x+"
979
+ }
980
+ ],
981
+ "sectionId": "AUTO"
982
+ },
983
+ {
984
+ "chipId": "schematic_component_17",
985
+ "center": {
986
+ "x": -3.5675,
987
+ "y": -13.814999999999998
988
+ },
989
+ "width": 0.5999999999999996,
990
+ "height": 0.6799999999999997,
991
+ "pins": [
992
+ {
993
+ "pinId": "schematic_port_126",
994
+ "displayName": "anode",
995
+ "x": -3.8674999999999997,
996
+ "y": -13.814999999999998,
997
+ "_facingDirection": "x-"
998
+ },
999
+ {
1000
+ "pinId": "schematic_port_127",
1001
+ "displayName": "cathode",
1002
+ "x": -3.2675,
1003
+ "y": -13.814999999999998,
1004
+ "_facingDirection": "x+"
1005
+ }
1006
+ ],
1007
+ "sectionId": "LED"
1008
+ },
1009
+ {
1010
+ "chipId": "schematic_component_18",
1011
+ "center": {
1012
+ "x": -6.407997016666665,
1013
+ "y": -4.899999999999999
1014
+ },
1015
+ "width": 1.045,
1016
+ "height": 0.7599999999999998,
1017
+ "pins": [
1018
+ {
1019
+ "pinId": "schematic_port_128",
1020
+ "displayName": "anode",
1021
+ "x": -6.480497016666665,
1022
+ "y": -4.519999999999999,
1023
+ "_facingDirection": "y+"
1024
+ },
1025
+ {
1026
+ "pinId": "schematic_port_129",
1027
+ "displayName": "cathode",
1028
+ "x": -6.480497016666665,
1029
+ "y": -5.2799999999999985,
1030
+ "_facingDirection": "y-"
1031
+ }
1032
+ ],
1033
+ "sectionId": "POWER"
1034
+ },
1035
+ {
1036
+ "chipId": "schematic_component_19",
1037
+ "center": {
1038
+ "x": -4.962997016666666,
1039
+ "y": -4.899999999999999
1040
+ },
1041
+ "width": 1.0450000000000008,
1042
+ "height": 0.7599999999999998,
1043
+ "pins": [
1044
+ {
1045
+ "pinId": "schematic_port_130",
1046
+ "displayName": "anode",
1047
+ "x": -5.035497016666666,
1048
+ "y": -4.519999999999999,
1049
+ "_facingDirection": "y+"
1050
+ },
1051
+ {
1052
+ "pinId": "schematic_port_131",
1053
+ "displayName": "cathode",
1054
+ "x": -5.035497016666666,
1055
+ "y": -5.2799999999999985,
1056
+ "_facingDirection": "y-"
1057
+ }
1058
+ ],
1059
+ "sectionId": "POWER"
1060
+ },
1061
+ {
1062
+ "chipId": "schematic_component_20",
1063
+ "center": {
1064
+ "x": 1.7790863166666693,
1065
+ "y": -3.634999999999999
1066
+ },
1067
+ "width": 1.0449999999999997,
1068
+ "height": 0.7600000000000002,
1069
+ "pins": [
1070
+ {
1071
+ "pinId": "schematic_port_132",
1072
+ "displayName": "anode",
1073
+ "x": 1.7065863166666695,
1074
+ "y": -3.254999999999999,
1075
+ "_facingDirection": "y+"
1076
+ },
1077
+ {
1078
+ "pinId": "schematic_port_133",
1079
+ "displayName": "cathode",
1080
+ "x": 1.7065863166666695,
1081
+ "y": -4.014999999999999,
1082
+ "_facingDirection": "y-"
1083
+ }
1084
+ ],
1085
+ "sectionId": "MCU"
1086
+ },
1087
+ {
1088
+ "chipId": "schematic_component_21",
1089
+ "center": {
1090
+ "x": 3.3440863166666697,
1091
+ "y": -3.634999999999999
1092
+ },
1093
+ "width": 1.1650000000000005,
1094
+ "height": 0.7600000000000002,
1095
+ "pins": [
1096
+ {
1097
+ "pinId": "schematic_port_134",
1098
+ "displayName": "anode",
1099
+ "x": 3.2115863166666694,
1100
+ "y": -3.254999999999999,
1101
+ "_facingDirection": "y+"
1102
+ },
1103
+ {
1104
+ "pinId": "schematic_port_135",
1105
+ "displayName": "cathode",
1106
+ "x": 3.2115863166666694,
1107
+ "y": -4.014999999999999,
1108
+ "_facingDirection": "y-"
1109
+ }
1110
+ ],
1111
+ "sectionId": "MCU"
1112
+ },
1113
+ {
1114
+ "chipId": "schematic_component_22",
1115
+ "center": {
1116
+ "x": 3.000336316666669,
1117
+ "y": -5.6075
1118
+ },
1119
+ "width": 0.9250000000000003,
1120
+ "height": 0.7599999999999998,
1121
+ "pins": [
1122
+ {
1123
+ "pinId": "schematic_port_136",
1124
+ "displayName": "anode",
1125
+ "x": 2.987836316666669,
1126
+ "y": -5.2275,
1127
+ "_facingDirection": "y+"
1128
+ },
1129
+ {
1130
+ "pinId": "schematic_port_137",
1131
+ "displayName": "cathode",
1132
+ "x": 2.987836316666669,
1133
+ "y": -5.9875,
1134
+ "_facingDirection": "y-"
1135
+ }
1136
+ ],
1137
+ "sectionId": "MCU"
1138
+ },
1139
+ {
1140
+ "chipId": "schematic_component_23",
1141
+ "center": {
1142
+ "x": -15.345497016666666,
1143
+ "y": -8.5975
1144
+ },
1145
+ "width": 1.1649999999999991,
1146
+ "height": 0.759999999999998,
1147
+ "pins": [
1148
+ {
1149
+ "pinId": "schematic_port_138",
1150
+ "displayName": "anode",
1151
+ "x": -15.477997016666666,
1152
+ "y": -8.217500000000001,
1153
+ "_facingDirection": "y+"
1154
+ },
1155
+ {
1156
+ "pinId": "schematic_port_139",
1157
+ "displayName": "cathode",
1158
+ "x": -15.477997016666666,
1159
+ "y": -8.9775,
1160
+ "_facingDirection": "y-"
1161
+ }
1162
+ ],
1163
+ "sectionId": "USB"
1164
+ },
1165
+ {
1166
+ "chipId": "schematic_component_24",
1167
+ "center": {
1168
+ "x": -13.780497016666665,
1169
+ "y": -8.5975
1170
+ },
1171
+ "width": 1.1649999999999991,
1172
+ "height": 0.759999999999998,
1173
+ "pins": [
1174
+ {
1175
+ "pinId": "schematic_port_140",
1176
+ "displayName": "anode",
1177
+ "x": -13.912997016666665,
1178
+ "y": -8.217500000000001,
1179
+ "_facingDirection": "y+"
1180
+ },
1181
+ {
1182
+ "pinId": "schematic_port_141",
1183
+ "displayName": "cathode",
1184
+ "x": -13.912997016666665,
1185
+ "y": -8.9775,
1186
+ "_facingDirection": "y-"
1187
+ }
1188
+ ],
1189
+ "sectionId": "USB"
1190
+ },
1191
+ {
1192
+ "chipId": "schematic_component_25",
1193
+ "center": {
1194
+ "x": 1.2575000000000003,
1195
+ "y": -14.987499999999999
1196
+ },
1197
+ "width": 1.2000000000000002,
1198
+ "height": 2.1999999999999993,
1199
+ "pins": [
1200
+ {
1201
+ "pinId": "schematic_port_142",
1202
+ "displayName": "1",
1203
+ "x": 1.8575000000000004,
1204
+ "y": -14.087499999999999
1205
+ },
1206
+ {
1207
+ "pinId": "schematic_port_143",
1208
+ "displayName": "2",
1209
+ "x": 1.8575000000000004,
1210
+ "y": -14.2875
1211
+ },
1212
+ {
1213
+ "pinId": "schematic_port_144",
1214
+ "displayName": "3",
1215
+ "x": 1.8575000000000004,
1216
+ "y": -14.487499999999999
1217
+ },
1218
+ {
1219
+ "pinId": "schematic_port_145",
1220
+ "displayName": "4",
1221
+ "x": 1.8575000000000004,
1222
+ "y": -14.687499999999998
1223
+ },
1224
+ {
1225
+ "pinId": "schematic_port_146",
1226
+ "displayName": "5",
1227
+ "x": 1.8575000000000004,
1228
+ "y": -14.8875
1229
+ },
1230
+ {
1231
+ "pinId": "schematic_port_147",
1232
+ "displayName": "6",
1233
+ "x": 1.8575000000000004,
1234
+ "y": -15.087499999999999
1235
+ },
1236
+ {
1237
+ "pinId": "schematic_port_148",
1238
+ "displayName": "7",
1239
+ "x": 1.8575000000000004,
1240
+ "y": -15.287499999999998
1241
+ },
1242
+ {
1243
+ "pinId": "schematic_port_149",
1244
+ "displayName": "8",
1245
+ "x": 1.8575000000000004,
1246
+ "y": -15.487499999999999
1247
+ },
1248
+ {
1249
+ "pinId": "schematic_port_150",
1250
+ "displayName": "9",
1251
+ "x": 1.8575000000000004,
1252
+ "y": -15.687499999999998
1253
+ },
1254
+ {
1255
+ "pinId": "schematic_port_151",
1256
+ "displayName": "10",
1257
+ "x": 1.8575000000000004,
1258
+ "y": -15.8875
1259
+ }
1260
+ ],
1261
+ "sectionId": "HEADERS"
1262
+ },
1263
+ {
1264
+ "chipId": "schematic_component_26",
1265
+ "center": {
1266
+ "x": 3.6675000000000004,
1267
+ "y": -14.987499999999999
1268
+ },
1269
+ "width": 1.1999999999999993,
1270
+ "height": 2.1999999999999993,
1271
+ "pins": [
1272
+ {
1273
+ "pinId": "schematic_port_152",
1274
+ "displayName": "1",
1275
+ "x": 4.2675,
1276
+ "y": -14.087499999999999
1277
+ },
1278
+ {
1279
+ "pinId": "schematic_port_153",
1280
+ "displayName": "2",
1281
+ "x": 4.2675,
1282
+ "y": -14.2875
1283
+ },
1284
+ {
1285
+ "pinId": "schematic_port_154",
1286
+ "displayName": "3",
1287
+ "x": 4.2675,
1288
+ "y": -14.487499999999999
1289
+ },
1290
+ {
1291
+ "pinId": "schematic_port_155",
1292
+ "displayName": "4",
1293
+ "x": 4.2675,
1294
+ "y": -14.687499999999998
1295
+ },
1296
+ {
1297
+ "pinId": "schematic_port_156",
1298
+ "displayName": "5",
1299
+ "x": 4.2675,
1300
+ "y": -14.8875
1301
+ },
1302
+ {
1303
+ "pinId": "schematic_port_157",
1304
+ "displayName": "6",
1305
+ "x": 4.2675,
1306
+ "y": -15.087499999999999
1307
+ },
1308
+ {
1309
+ "pinId": "schematic_port_158",
1310
+ "displayName": "7",
1311
+ "x": 4.2675,
1312
+ "y": -15.287499999999998
1313
+ },
1314
+ {
1315
+ "pinId": "schematic_port_159",
1316
+ "displayName": "8",
1317
+ "x": 4.2675,
1318
+ "y": -15.487499999999999
1319
+ },
1320
+ {
1321
+ "pinId": "schematic_port_160",
1322
+ "displayName": "9",
1323
+ "x": 4.2675,
1324
+ "y": -15.687499999999998
1325
+ },
1326
+ {
1327
+ "pinId": "schematic_port_161",
1328
+ "displayName": "10",
1329
+ "x": 4.2675,
1330
+ "y": -15.8875
1331
+ }
1332
+ ],
1333
+ "sectionId": "HEADERS"
1334
+ }
1335
+ ],
1336
+ "directConnections": [],
1337
+ "netConnections": [
1338
+ {
1339
+ "netId": "GND",
1340
+ "isGround": true,
1341
+ "netLabelWidth": 0.42,
1342
+ "netLabelHeight": 0.48,
1343
+ "pinIds": [
1344
+ "schematic_port_0",
1345
+ "schematic_port_1",
1346
+ "schematic_port_2",
1347
+ "schematic_port_3",
1348
+ "schematic_port_4",
1349
+ "schematic_port_15",
1350
+ "schematic_port_16",
1351
+ "schematic_port_33",
1352
+ "schematic_port_37",
1353
+ "schematic_port_38",
1354
+ "schematic_port_39",
1355
+ "schematic_port_40",
1356
+ "schematic_port_41",
1357
+ "schematic_port_42",
1358
+ "schematic_port_43",
1359
+ "schematic_port_44",
1360
+ "schematic_port_45",
1361
+ "schematic_port_46",
1362
+ "schematic_port_55",
1363
+ "schematic_port_58",
1364
+ "schematic_port_80",
1365
+ "schematic_port_81",
1366
+ "schematic_port_82",
1367
+ "schematic_port_83",
1368
+ "schematic_port_84",
1369
+ "schematic_port_85",
1370
+ "schematic_port_86",
1371
+ "schematic_port_87",
1372
+ "schematic_port_88",
1373
+ "schematic_port_89",
1374
+ "schematic_port_90",
1375
+ "schematic_port_91",
1376
+ "schematic_port_92",
1377
+ "schematic_port_93",
1378
+ "schematic_port_94",
1379
+ "schematic_port_95",
1380
+ "schematic_port_96",
1381
+ "schematic_port_97",
1382
+ "schematic_port_105",
1383
+ "schematic_port_107",
1384
+ "schematic_port_109",
1385
+ "schematic_port_111",
1386
+ "schematic_port_113",
1387
+ "schematic_port_129",
1388
+ "schematic_port_131",
1389
+ "schematic_port_133",
1390
+ "schematic_port_135",
1391
+ "schematic_port_137",
1392
+ "schematic_port_139",
1393
+ "schematic_port_141",
1394
+ "schematic_port_143",
1395
+ "schematic_port_153"
1396
+ ]
1397
+ },
1398
+ {
1399
+ "netId": "VBUS",
1400
+ "isGround": false,
1401
+ "netLabelWidth": 0.42,
1402
+ "netLabelHeight": 0.6,
1403
+ "pinIds": [
1404
+ "schematic_port_5",
1405
+ "schematic_port_14",
1406
+ "schematic_port_32",
1407
+ "schematic_port_34",
1408
+ "schematic_port_128",
1409
+ "schematic_port_152"
1410
+ ]
1411
+ },
1412
+ {
1413
+ "netId": "CC1",
1414
+ "isGround": false,
1415
+ "netLabelWidth": 0.48,
1416
+ "anchoredNetLabelWidth": 0.48,
1417
+ "allowInlineNetLabel": true,
1418
+ "inlineNetLabelHeight": 0.12,
1419
+ "inlineNetLabelWidth": 0.32,
1420
+ "pinIds": [
1421
+ "schematic_port_7",
1422
+ "schematic_port_110"
1423
+ ]
1424
+ },
1425
+ {
1426
+ "netId": "USB_DM",
1427
+ "isGround": false,
1428
+ "netLabelWidth": 0.84,
1429
+ "anchoredNetLabelWidth": 0.84,
1430
+ "allowInlineNetLabel": true,
1431
+ "inlineNetLabelHeight": 0.12,
1432
+ "inlineNetLabelWidth": 0.56,
1433
+ "pinIds": [
1434
+ "schematic_port_8",
1435
+ "schematic_port_10",
1436
+ "schematic_port_21"
1437
+ ]
1438
+ },
1439
+ {
1440
+ "netId": "USB_DP",
1441
+ "isGround": false,
1442
+ "netLabelWidth": 0.84,
1443
+ "anchoredNetLabelWidth": 0.84,
1444
+ "allowInlineNetLabel": true,
1445
+ "inlineNetLabelHeight": 0.12,
1446
+ "inlineNetLabelWidth": 0.56,
1447
+ "pinIds": [
1448
+ "schematic_port_9",
1449
+ "schematic_port_11",
1450
+ "schematic_port_20"
1451
+ ]
1452
+ },
1453
+ {
1454
+ "netId": "CC2",
1455
+ "isGround": false,
1456
+ "netLabelWidth": 0.48,
1457
+ "anchoredNetLabelWidth": 0.48,
1458
+ "allowInlineNetLabel": true,
1459
+ "inlineNetLabelHeight": 0.12,
1460
+ "inlineNetLabelWidth": 0.32,
1461
+ "pinIds": [
1462
+ "schematic_port_13",
1463
+ "schematic_port_112"
1464
+ ]
1465
+ },
1466
+ {
1467
+ "netId": "IO20",
1468
+ "isGround": false,
1469
+ "netLabelWidth": 0.6,
1470
+ "anchoredNetLabelWidth": 0.6,
1471
+ "allowInlineNetLabel": true,
1472
+ "inlineNetLabelHeight": 0.12,
1473
+ "inlineNetLabelWidth": 0.4,
1474
+ "pinIds": [
1475
+ "schematic_port_17",
1476
+ "schematic_port_74",
1477
+ "schematic_port_156"
1478
+ ]
1479
+ },
1480
+ {
1481
+ "netId": "IO21",
1482
+ "isGround": false,
1483
+ "netLabelWidth": 0.6,
1484
+ "anchoredNetLabelWidth": 0.6,
1485
+ "allowInlineNetLabel": true,
1486
+ "inlineNetLabelHeight": 0.12,
1487
+ "inlineNetLabelWidth": 0.4,
1488
+ "pinIds": [
1489
+ "schematic_port_18",
1490
+ "schematic_port_75",
1491
+ "schematic_port_155"
1492
+ ]
1493
+ },
1494
+ {
1495
+ "netId": "V3V3",
1496
+ "isGround": false,
1497
+ "netLabelWidth": 0.42,
1498
+ "netLabelHeight": 0.6,
1499
+ "pinIds": [
1500
+ "schematic_port_19",
1501
+ "schematic_port_31",
1502
+ "schematic_port_36",
1503
+ "schematic_port_47",
1504
+ "schematic_port_114",
1505
+ "schematic_port_116",
1506
+ "schematic_port_118",
1507
+ "schematic_port_120",
1508
+ "schematic_port_130",
1509
+ "schematic_port_132",
1510
+ "schematic_port_134",
1511
+ "schematic_port_138",
1512
+ "schematic_port_140",
1513
+ "schematic_port_142"
1514
+ ]
1515
+ },
1516
+ {
1517
+ "netId": "DTR",
1518
+ "isGround": false,
1519
+ "netLabelWidth": 0.48,
1520
+ "anchoredNetLabelWidth": 0.48,
1521
+ "allowInlineNetLabel": true,
1522
+ "inlineNetLabelHeight": 0.12,
1523
+ "inlineNetLabelWidth": 0.32,
1524
+ "pinIds": [
1525
+ "schematic_port_28",
1526
+ "schematic_port_102",
1527
+ "schematic_port_122"
1528
+ ]
1529
+ },
1530
+ {
1531
+ "netId": "RTS",
1532
+ "isGround": false,
1533
+ "netLabelWidth": 0.48,
1534
+ "anchoredNetLabelWidth": 0.48,
1535
+ "allowInlineNetLabel": true,
1536
+ "inlineNetLabelHeight": 0.12,
1537
+ "inlineNetLabelWidth": 0.32,
1538
+ "pinIds": [
1539
+ "schematic_port_29",
1540
+ "schematic_port_99",
1541
+ "schematic_port_124"
1542
+ ]
1543
+ },
1544
+ {
1545
+ "netId": "IO2",
1546
+ "isGround": false,
1547
+ "netLabelWidth": 0.48,
1548
+ "anchoredNetLabelWidth": 0.48,
1549
+ "allowInlineNetLabel": true,
1550
+ "inlineNetLabelHeight": 0.12,
1551
+ "inlineNetLabelWidth": 0.32,
1552
+ "pinIds": [
1553
+ "schematic_port_49",
1554
+ "schematic_port_121",
1555
+ "schematic_port_146"
1556
+ ]
1557
+ },
1558
+ {
1559
+ "netId": "IO3",
1560
+ "isGround": false,
1561
+ "netLabelWidth": 0.48,
1562
+ "anchoredNetLabelWidth": 0.48,
1563
+ "allowInlineNetLabel": true,
1564
+ "inlineNetLabelHeight": 0.12,
1565
+ "inlineNetLabelWidth": 0.32,
1566
+ "pinIds": [
1567
+ "schematic_port_50",
1568
+ "schematic_port_147"
1569
+ ]
1570
+ },
1571
+ {
1572
+ "netId": "EN",
1573
+ "isGround": false,
1574
+ "netLabelWidth": 0.36,
1575
+ "anchoredNetLabelWidth": 0.36,
1576
+ "allowInlineNetLabel": true,
1577
+ "inlineNetLabelHeight": 0.12,
1578
+ "inlineNetLabelWidth": 0.24,
1579
+ "pinIds": [
1580
+ "schematic_port_52",
1581
+ "schematic_port_100",
1582
+ "schematic_port_106",
1583
+ "schematic_port_115",
1584
+ "schematic_port_136",
1585
+ "schematic_port_154"
1586
+ ]
1587
+ },
1588
+ {
1589
+ "netId": "IO0",
1590
+ "isGround": false,
1591
+ "netLabelWidth": 0.48,
1592
+ "anchoredNetLabelWidth": 0.48,
1593
+ "allowInlineNetLabel": true,
1594
+ "inlineNetLabelHeight": 0.12,
1595
+ "inlineNetLabelWidth": 0.32,
1596
+ "pinIds": [
1597
+ "schematic_port_56",
1598
+ "schematic_port_144"
1599
+ ]
1600
+ },
1601
+ {
1602
+ "netId": "IO1",
1603
+ "isGround": false,
1604
+ "netLabelWidth": 0.48,
1605
+ "anchoredNetLabelWidth": 0.48,
1606
+ "allowInlineNetLabel": true,
1607
+ "inlineNetLabelHeight": 0.12,
1608
+ "inlineNetLabelWidth": 0.32,
1609
+ "pinIds": [
1610
+ "schematic_port_57",
1611
+ "schematic_port_145"
1612
+ ]
1613
+ },
1614
+ {
1615
+ "netId": "IO10",
1616
+ "isGround": false,
1617
+ "netLabelWidth": 0.6,
1618
+ "anchoredNetLabelWidth": 0.6,
1619
+ "allowInlineNetLabel": true,
1620
+ "inlineNetLabelHeight": 0.12,
1621
+ "inlineNetLabelWidth": 0.4,
1622
+ "pinIds": [
1623
+ "schematic_port_60",
1624
+ "schematic_port_126",
1625
+ "schematic_port_159"
1626
+ ]
1627
+ },
1628
+ {
1629
+ "netId": "IO4",
1630
+ "isGround": false,
1631
+ "netLabelWidth": 0.48,
1632
+ "anchoredNetLabelWidth": 0.48,
1633
+ "allowInlineNetLabel": true,
1634
+ "inlineNetLabelHeight": 0.12,
1635
+ "inlineNetLabelWidth": 0.32,
1636
+ "pinIds": [
1637
+ "schematic_port_62",
1638
+ "schematic_port_148"
1639
+ ]
1640
+ },
1641
+ {
1642
+ "netId": "IO5",
1643
+ "isGround": false,
1644
+ "netLabelWidth": 0.48,
1645
+ "anchoredNetLabelWidth": 0.48,
1646
+ "allowInlineNetLabel": true,
1647
+ "inlineNetLabelHeight": 0.12,
1648
+ "inlineNetLabelWidth": 0.32,
1649
+ "pinIds": [
1650
+ "schematic_port_63",
1651
+ "schematic_port_149"
1652
+ ]
1653
+ },
1654
+ {
1655
+ "netId": "IO6",
1656
+ "isGround": false,
1657
+ "netLabelWidth": 0.48,
1658
+ "anchoredNetLabelWidth": 0.48,
1659
+ "allowInlineNetLabel": true,
1660
+ "inlineNetLabelHeight": 0.12,
1661
+ "inlineNetLabelWidth": 0.32,
1662
+ "pinIds": [
1663
+ "schematic_port_64",
1664
+ "schematic_port_150"
1665
+ ]
1666
+ },
1667
+ {
1668
+ "netId": "IO7",
1669
+ "isGround": false,
1670
+ "netLabelWidth": 0.48,
1671
+ "anchoredNetLabelWidth": 0.48,
1672
+ "allowInlineNetLabel": true,
1673
+ "inlineNetLabelHeight": 0.12,
1674
+ "inlineNetLabelWidth": 0.32,
1675
+ "pinIds": [
1676
+ "schematic_port_65",
1677
+ "schematic_port_151"
1678
+ ]
1679
+ },
1680
+ {
1681
+ "netId": "IO8",
1682
+ "isGround": false,
1683
+ "netLabelWidth": 0.48,
1684
+ "anchoredNetLabelWidth": 0.48,
1685
+ "allowInlineNetLabel": true,
1686
+ "inlineNetLabelHeight": 0.12,
1687
+ "inlineNetLabelWidth": 0.32,
1688
+ "pinIds": [
1689
+ "schematic_port_66",
1690
+ "schematic_port_119",
1691
+ "schematic_port_161"
1692
+ ]
1693
+ },
1694
+ {
1695
+ "netId": "IO9",
1696
+ "isGround": false,
1697
+ "netLabelWidth": 0.48,
1698
+ "anchoredNetLabelWidth": 0.48,
1699
+ "allowInlineNetLabel": true,
1700
+ "inlineNetLabelHeight": 0.12,
1701
+ "inlineNetLabelWidth": 0.32,
1702
+ "pinIds": [
1703
+ "schematic_port_67",
1704
+ "schematic_port_103",
1705
+ "schematic_port_104",
1706
+ "schematic_port_117",
1707
+ "schematic_port_160"
1708
+ ]
1709
+ },
1710
+ {
1711
+ "netId": "IO18",
1712
+ "isGround": false,
1713
+ "netLabelWidth": 0.6,
1714
+ "anchoredNetLabelWidth": 0.6,
1715
+ "allowInlineNetLabel": true,
1716
+ "inlineNetLabelHeight": 0.12,
1717
+ "inlineNetLabelWidth": 0.4,
1718
+ "pinIds": [
1719
+ "schematic_port_70",
1720
+ "schematic_port_158"
1721
+ ]
1722
+ },
1723
+ {
1724
+ "netId": "IO19",
1725
+ "isGround": false,
1726
+ "netLabelWidth": 0.6,
1727
+ "anchoredNetLabelWidth": 0.6,
1728
+ "allowInlineNetLabel": true,
1729
+ "inlineNetLabelHeight": 0.12,
1730
+ "inlineNetLabelWidth": 0.4,
1731
+ "pinIds": [
1732
+ "schematic_port_71",
1733
+ "schematic_port_157"
1734
+ ]
1735
+ },
1736
+ {
1737
+ "netId": "BASE_EN",
1738
+ "isGround": false,
1739
+ "netLabelWidth": 0.96,
1740
+ "anchoredNetLabelWidth": 0.96,
1741
+ "allowInlineNetLabel": true,
1742
+ "inlineNetLabelHeight": 0.12,
1743
+ "inlineNetLabelWidth": 0.64,
1744
+ "pinIds": [
1745
+ "schematic_port_98",
1746
+ "schematic_port_123"
1747
+ ]
1748
+ },
1749
+ {
1750
+ "netId": "BASE_BOOT",
1751
+ "isGround": false,
1752
+ "netLabelWidth": 1.2,
1753
+ "anchoredNetLabelWidth": 1.2,
1754
+ "allowInlineNetLabel": true,
1755
+ "inlineNetLabelHeight": 0.12,
1756
+ "inlineNetLabelWidth": 0.8,
1757
+ "pinIds": [
1758
+ "schematic_port_101",
1759
+ "schematic_port_125"
1760
+ ]
1761
+ },
1762
+ {
1763
+ "netId": "LED_A",
1764
+ "isGround": false,
1765
+ "netLabelWidth": 0.72,
1766
+ "anchoredNetLabelWidth": 0.72,
1767
+ "allowInlineNetLabel": true,
1768
+ "inlineNetLabelHeight": 0.12,
1769
+ "inlineNetLabelWidth": 0.48,
1770
+ "pinIds": [
1771
+ "schematic_port_108",
1772
+ "schematic_port_127"
1773
+ ]
1774
+ }
1775
+ ],
1776
+ "textBoxes": [
1777
+ {
1778
+ "chipId": "schematic_component_0",
1779
+ "center": {
1780
+ "x": -13.270497016666665,
1781
+ "y": -6.022499999999999
1782
+ },
1783
+ "width": 2.5199999999999996,
1784
+ "height": 0.17999999999999972,
1785
+ "text": "TYPE-C 16PIN 2MD(073)"
1786
+ },
1787
+ {
1788
+ "chipId": "schematic_component_0",
1789
+ "center": {
1790
+ "x": -14.410497016666664,
1791
+ "y": -1.7774999999999985
1792
+ },
1793
+ "width": 0.3600000000000012,
1794
+ "height": 0.2500000000000002,
1795
+ "text": "J1"
1796
+ },
1797
+ {
1798
+ "chipId": "schematic_component_1",
1799
+ "center": {
1800
+ "x": -11.770497016666663,
1801
+ "y": -9.2275
1802
+ },
1803
+ "width": 0.7200000000000006,
1804
+ "height": 0.17999999999999972,
1805
+ "text": "CH340C"
1806
+ },
1807
+ {
1808
+ "chipId": "schematic_component_1",
1809
+ "center": {
1810
+ "x": -12.010497016666665,
1811
+ "y": -7.182499999999999
1812
+ },
1813
+ "width": 0.3600000000000012,
1814
+ "height": 0.2499999999999991,
1815
+ "text": "U2"
1816
+ },
1817
+ {
1818
+ "chipId": "schematic_component_2",
1819
+ "center": {
1820
+ "x": -3.6396636833333322,
1821
+ "y": -6.519999999999999
1822
+ },
1823
+ "width": 1.7999999999999998,
1824
+ "height": 0.17999999999999972,
1825
+ "text": "AP2112K-3.3TRG1"
1826
+ },
1827
+ {
1828
+ "chipId": "schematic_component_2",
1829
+ "center": {
1830
+ "x": -4.419663683333332,
1831
+ "y": -5.674999999999999
1832
+ },
1833
+ "width": 0.35999999999999943,
1834
+ "height": 0.2499999999999991,
1835
+ "text": "U3"
1836
+ },
1837
+ {
1838
+ "chipId": "schematic_component_3",
1839
+ "center": {
1840
+ "x": 6.134086316666669,
1841
+ "y": -8.965
1842
+ },
1843
+ "width": 2.2799999999999994,
1844
+ "height": 0.17999999999999972,
1845
+ "text": "ESP32-C3-MINI-1-H4X"
1846
+ },
1847
+ {
1848
+ "chipId": "schematic_component_3",
1849
+ "center": {
1850
+ "x": 5.114086316666669,
1851
+ "y": -2.5200000000000005
1852
+ },
1853
+ "width": 0.35999999999999943,
1854
+ "height": 0.24999999999999956,
1855
+ "text": "U1"
1856
+ },
1857
+ {
1858
+ "chipId": "schematic_component_4",
1859
+ "center": {
1860
+ "x": 12.884086316666671,
1861
+ "y": -4.222499999999999
1862
+ },
1863
+ "width": 0.9600000000000009,
1864
+ "height": 0.17999999999999972,
1865
+ "text": "MMBT3904"
1866
+ },
1867
+ {
1868
+ "chipId": "schematic_component_4",
1869
+ "center": {
1870
+ "x": 12.524086316666672,
1871
+ "y": -3.577499999999999
1872
+ },
1873
+ "width": 0.3600000000000012,
1874
+ "height": 0.24999999999999956,
1875
+ "text": "Q1"
1876
+ },
1877
+ {
1878
+ "chipId": "schematic_component_5",
1879
+ "center": {
1880
+ "x": 12.884086316666671,
1881
+ "y": -6.6225
1882
+ },
1883
+ "width": 0.9600000000000009,
1884
+ "height": 0.17999999999999972,
1885
+ "text": "MMBT3904"
1886
+ },
1887
+ {
1888
+ "chipId": "schematic_component_5",
1889
+ "center": {
1890
+ "x": 12.524086316666672,
1891
+ "y": -5.977499999999999
1892
+ },
1893
+ "width": 0.3600000000000012,
1894
+ "height": 0.2499999999999991,
1895
+ "text": "Q2"
1896
+ },
1897
+ {
1898
+ "chipId": "schematic_component_25",
1899
+ "center": {
1900
+ "x": 1.1775000000000002,
1901
+ "y": -13.772499999999999
1902
+ },
1903
+ "width": 0.3600000000000001,
1904
+ "height": 0.25,
1905
+ "text": "J2"
1906
+ },
1907
+ {
1908
+ "chipId": "schematic_component_26",
1909
+ "center": {
1910
+ "x": 3.5875000000000004,
1911
+ "y": -13.772499999999999
1912
+ },
1913
+ "width": 0.3600000000000003,
1914
+ "height": 0.25,
1915
+ "text": "J3"
1916
+ }
1917
+ ],
1918
+ "availableNetLabelOrientations": {
1919
+ "VBUS": [
1920
+ "y+"
1921
+ ],
1922
+ "V3V3": [
1923
+ "y+"
1924
+ ],
1925
+ "GND": [
1926
+ "y-"
1927
+ ],
1928
+ "CC1": [
1929
+ "x-",
1930
+ "x+"
1931
+ ],
1932
+ "CC2": [
1933
+ "x-",
1934
+ "x+"
1935
+ ],
1936
+ "USB_DP": [
1937
+ "x-",
1938
+ "x+"
1939
+ ],
1940
+ "USB_DM": [
1941
+ "x-",
1942
+ "x+"
1943
+ ],
1944
+ "DTR": [
1945
+ "x-",
1946
+ "x+"
1947
+ ],
1948
+ "RTS": [
1949
+ "x-",
1950
+ "x+"
1951
+ ],
1952
+ "EN": [
1953
+ "x-",
1954
+ "x+"
1955
+ ],
1956
+ "BASE_EN": [
1957
+ "x-",
1958
+ "x+"
1959
+ ],
1960
+ "BASE_BOOT": [
1961
+ "x-",
1962
+ "x+"
1963
+ ],
1964
+ "LED_A": [
1965
+ "x-",
1966
+ "x+"
1967
+ ],
1968
+ "IO0": [
1969
+ "x-",
1970
+ "x+"
1971
+ ],
1972
+ "IO1": [
1973
+ "x-",
1974
+ "x+"
1975
+ ],
1976
+ "IO2": [
1977
+ "x-",
1978
+ "x+"
1979
+ ],
1980
+ "IO3": [
1981
+ "x-",
1982
+ "x+"
1983
+ ],
1984
+ "IO4": [
1985
+ "x-",
1986
+ "x+"
1987
+ ],
1988
+ "IO5": [
1989
+ "x-",
1990
+ "x+"
1991
+ ],
1992
+ "IO6": [
1993
+ "x-",
1994
+ "x+"
1995
+ ],
1996
+ "IO7": [
1997
+ "x-",
1998
+ "x+"
1999
+ ],
2000
+ "IO8": [
2001
+ "x-",
2002
+ "x+"
2003
+ ],
2004
+ "IO9": [
2005
+ "x-",
2006
+ "x+"
2007
+ ],
2008
+ "IO10": [
2009
+ "x-",
2010
+ "x+"
2011
+ ],
2012
+ "IO18": [
2013
+ "x-",
2014
+ "x+"
2015
+ ],
2016
+ "IO19": [
2017
+ "x-",
2018
+ "x+"
2019
+ ],
2020
+ "IO20": [
2021
+ "x-",
2022
+ "x+"
2023
+ ],
2024
+ "IO21": [
2025
+ "x-",
2026
+ "x+"
2027
+ ]
2028
+ },
2029
+ "maxMspPairDistance": 2.4,
2030
+ "_hideRatsNet": false
2031
+ }