-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDextraBoard.kicad_pcb
14133 lines (14081 loc) · 618 KB
/
DextraBoard.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 4.69)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "unconnected-(U1-Pad3)")
(net 2 "unconnected-(U1-Pad11)")
(net 3 "unconnected-(J6-PadA8)")
(net 4 "unconnected-(J6-PadB8)")
(net 5 "unconnected-(J9-PadA8)")
(net 6 "unconnected-(J9-PadB8)")
(net 7 "GND")
(net 8 "+5V")
(net 9 "+3V3")
(net 10 "+BATT")
(net 11 "VBUS")
(net 12 "Net-(J6-PadA5)")
(net 13 "/USB_DP")
(net 14 "/USB_DN")
(net 15 "Net-(J6-PadB5)")
(net 16 "Net-(J9-PadA5)")
(net 17 "Net-(J9-PadB5)")
(net 18 "/PWM0")
(net 19 "/PWM1")
(net 20 "/ANA4")
(net 21 "/ANA3")
(net 22 "/ANA2")
(net 23 "/ANA0")
(net 24 "/ANA1")
(net 25 "/I2C_SDA")
(net 26 "/I2C_SCL")
(net 27 "/VSENSE")
(net 28 "/VIN")
(net 29 "unconnected-(U1-Pad24)")
(net 30 "unconnected-(U1-Pad27)")
(net 31 "unconnected-(U1-Pad30)")
(net 32 "unconnected-(U1-Pad31)")
(net 33 "unconnected-(U1-Pad32)")
(net 34 "unconnected-(U1-Pad33)")
(net 35 "unconnected-(U1-Pad34)")
(net 36 "unconnected-(U1-Pad35)")
(net 37 "unconnected-(U1-Pad36)")
(net 38 "unconnected-(U1-Pad37)")
(net 39 "/HY_VDD")
(net 40 "/IO14")
(net 41 "/IO15")
(net 42 "/IO13")
(net 43 "/PWM3")
(net 44 "/PWM2")
(net 45 "Net-(C1-Pad2)")
(net 46 "/N76E003s (PWM + ADC + IO)/PWM14")
(net 47 "/N76E003s (PWM + ADC + IO)/PWM15")
(net 48 "/N76E003s (PWM + ADC + IO)/PWM10")
(net 49 "/N76E003s (PWM + ADC + IO)/PWM11")
(net 50 "/N76E003s (PWM + ADC + IO)/PWM12")
(net 51 "/N76E003s (PWM + ADC + IO)/PWM13")
(net 52 "/N76E003s (PWM + ADC + IO)/PWM6")
(net 53 "/N76E003s (PWM + ADC + IO)/PWM7")
(net 54 "/N76E003s (PWM + ADC + IO)/PWM8")
(net 55 "/N76E003s (PWM + ADC + IO)/PWM9")
(net 56 "/N76E003s (PWM + ADC + IO)/PWM4")
(net 57 "/N76E003s (PWM + ADC + IO)/PWM5")
(net 58 "unconnected-(U2-Pad1)")
(net 59 "unconnected-(U2-Pad2)")
(net 60 "unconnected-(U2-Pad3)")
(net 61 "unconnected-(U2-Pad4)")
(net 62 "unconnected-(U2-Pad5)")
(net 63 "unconnected-(U2-Pad23)")
(net 64 "unconnected-(U2-Pad24)")
(net 65 "unconnected-(U2-Pad25)")
(net 66 "/N76E003s (PWM + ADC + IO)/IO9")
(net 67 "/N76E003s (PWM + ADC + IO)/MUX_CH5")
(net 68 "/N76E003s (PWM + ADC + IO)/MUX_CH4")
(net 69 "/N76E003s (PWM + ADC + IO)/MUX_CH3")
(net 70 "/N76E003s (PWM + ADC + IO)/MUX_CH2")
(net 71 "/N76E003s (PWM + ADC + IO)/MUX_CH1")
(net 72 "/N76E003s (PWM + ADC + IO)/MUX_CH0")
(net 73 "/N76E003s (PWM + ADC + IO)/IO8")
(net 74 "/N76E003s (PWM + ADC + IO)/MUX_CH11")
(net 75 "/N76E003s (PWM + ADC + IO)/MUX_CH10")
(net 76 "/N76E003s (PWM + ADC + IO)/MUX_CH9")
(net 77 "/N76E003s (PWM + ADC + IO)/MUX_CH8")
(net 78 "/N76E003s (PWM + ADC + IO)/MUX_CH7")
(net 79 "/N76E003s (PWM + ADC + IO)/MUX_CH6")
(net 80 "/N76E003s (PWM + ADC + IO)/IO7")
(net 81 "/N76E003s (PWM + ADC + IO)/MUX_CH17")
(net 82 "/N76E003s (PWM + ADC + IO)/MUX_CH16")
(net 83 "/N76E003s (PWM + ADC + IO)/MUX_CH15")
(net 84 "/N76E003s (PWM + ADC + IO)/MUX_CH14")
(net 85 "/N76E003s (PWM + ADC + IO)/MUX_CH13")
(net 86 "/N76E003s (PWM + ADC + IO)/MUX_CH12")
(net 87 "/N76E003s (PWM + ADC + IO)/IO4")
(net 88 "/N76E003s (PWM + ADC + IO)/IO6")
(net 89 "/N76E003s (PWM + ADC + IO)/MUX_CH23")
(net 90 "/N76E003s (PWM + ADC + IO)/MUX_CH22")
(net 91 "/N76E003s (PWM + ADC + IO)/MUX_CH21")
(net 92 "/N76E003s (PWM + ADC + IO)/MUX_CH20")
(net 93 "/N76E003s (PWM + ADC + IO)/MUX_CH19")
(net 94 "/N76E003s (PWM + ADC + IO)/MUX_CH18")
(net 95 "/N76E003s (PWM + ADC + IO)/IO5")
(net 96 "/N76E003s (PWM + ADC + IO)/MUX_CH29")
(net 97 "/N76E003s (PWM + ADC + IO)/MUX_CH28")
(net 98 "/N76E003s (PWM + ADC + IO)/MUX_CH27")
(net 99 "/N76E003s (PWM + ADC + IO)/MUX_CH26")
(net 100 "/N76E003s (PWM + ADC + IO)/MUX_CH25")
(net 101 "/N76E003s (PWM + ADC + IO)/MUX_CH24")
(net 102 "/IO7")
(net 103 "unconnected-(U1-Pad9)")
(net 104 "unconnected-(U1-Pad10)")
(net 105 "/IO8")
(net 106 "/IO9")
(net 107 "/IO10")
(net 108 "/IO11")
(net 109 "unconnected-(U1-Pad20)")
(net 110 "/N76E003s (PWM + ADC + IO)/I2C_SCL")
(net 111 "/N76E003s (PWM + ADC + IO)/I2C_SDA")
(net 112 "/N76E003s (PWM + ADC + IO)/MUX_CH31")
(net 113 "/N76E003s (PWM + ADC + IO)/MUX_CH30")
(net 114 "Net-(Q1-Pad1)")
(net 115 "/MID_BAT")
(net 116 "Net-(Q1-Pad3)")
(net 117 "Net-(Q2-Pad1)")
(net 118 "Net-(Q2-Pad3)")
(net 119 "+3.3V")
(net 120 "unconnected-(U6-Pad1)")
(net 121 "Net-(R1-Pad2)")
(net 122 "unconnected-(U6-Pad4)")
(net 123 "unconnected-(U6-Pad5)")
(net 124 "unconnected-(U7-Pad1)")
(net 125 "Net-(R2-Pad2)")
(net 126 "unconnected-(U7-Pad4)")
(net 127 "unconnected-(U7-Pad5)")
(net 128 "Net-(C6-Pad1)")
(net 129 "Net-(D1-Pad1)")
(net 130 "Net-(D1-Pad2)")
(net 131 "-BATT")
(net 132 "Net-(Q4-Pad3)")
(net 133 "/OD")
(net 134 "/OC")
(net 135 "Net-(R7-Pad1)")
(net 136 "Net-(R14-Pad2)")
(footprint "Connector_USB:USB_C_Receptacle_GCT_USB4085" locked (layer "F.Cu")
(tedit 5BCCCD93) (tstamp 332e694d-f32e-4513-b4bf-0775641e1cc9)
(at 45.525 73.975)
(descr "USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf")
(tags "USB Type-C Receptacle Through-hole Right angle")
(property "Sheetfile" "Fichier: DextraBoard.kicad_sch")
(property "Sheetname" "")
(path "/80077240-0fd4-484c-b4b8-47cde2622fcd")
(attr through_hole)
(fp_text reference "J9" (at -3.225 3.125 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 946a5dc1-166f-4e11-9a76-dec65f634fa6)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 2.975 9.925) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c34fae71-3b03-4714-804c-754a104d3244)
)
(fp_text user "PCB Edge" (at 2.975 6.1) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp a89dbca1-b912-440d-bd9a-72440f2ddd1f)
)
(fp_text user "${REFERENCE}" (at 2.975 4.025) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78e2a907-b982-491a-a534-03917abb5c89)
)
(fp_line (start 7.57 6) (end 7.57 8.73) (layer "F.SilkS") (width 0.12) (tstamp 13bd17bb-119f-4928-b1ca-baff5e469fba))
(fp_line (start 7.57 2.4) (end 7.57 3.3) (layer "F.SilkS") (width 0.12) (tstamp 2211e764-a34a-4698-9daf-e460c8b642e5))
(fp_line (start -1.62 6) (end -1.62 8.73) (layer "F.SilkS") (width 0.12) (tstamp 47ede0bb-3a3c-4c94-bcfd-939960b0ace4))
(fp_line (start -1.62 2.4) (end -1.62 3.3) (layer "F.SilkS") (width 0.12) (tstamp 671b11b2-eb67-43ed-b51f-b5b61e2b9993))
(fp_line (start -1.5 -0.68) (end 7.45 -0.68) (layer "F.SilkS") (width 0.12) (tstamp e3de2907-6354-435f-b734-ba7e469ea0ad))
(fp_line (start -1.62 8.73) (end 7.57 8.73) (layer "F.SilkS") (width 0.12) (tstamp f7973c04-ae62-4ef8-8cdd-d5f31bb871f4))
(fp_line (start -2.3 -1.06) (end -2.3 9.11) (layer "F.CrtYd") (width 0.05) (tstamp 108efce1-d851-4cec-96f5-9c2c58930247))
(fp_line (start 8.25 -1.06) (end 8.25 9.11) (layer "F.CrtYd") (width 0.05) (tstamp ada9f860-520a-4111-ae60-ed8770ea640f))
(fp_line (start -2.3 9.11) (end 8.25 9.11) (layer "F.CrtYd") (width 0.05) (tstamp dd34486f-815f-4e6a-92db-bb49f4454df9))
(fp_line (start -2.3 -1.06) (end 8.25 -1.06) (layer "F.CrtYd") (width 0.05) (tstamp ee0c4c2d-8567-49b1-8ef3-df5088ca4489))
(fp_line (start -1.5 -0.56) (end -1.5 8.61) (layer "F.Fab") (width 0.1) (tstamp 00fdaa9b-d752-4c3a-818e-fa033bbf760b))
(fp_line (start 7.45 -0.56) (end 7.45 8.61) (layer "F.Fab") (width 0.1) (tstamp 05033e0a-7e1f-4dfd-bd1a-bd8985be10c4))
(fp_line (start -0.025 6.1) (end 5.975 6.1) (layer "F.Fab") (width 0.1) (tstamp 4f0024bd-63b8-4297-b43c-5f969daff9f8))
(fp_line (start -1.5 8.61) (end 7.45 8.61) (layer "F.Fab") (width 0.1) (tstamp 8587d6a0-6401-4bd1-aa0f-fccbd1d51a25))
(fp_line (start -1.5 -0.56) (end 7.45 -0.56) (layer "F.Fab") (width 0.1) (tstamp 956783e7-515a-4a75-816e-7c4902ba1cb2))
(pad "A1" thru_hole circle locked (at 0 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp 5474c14e-734a-4d80-b4b8-7a86302fc55a))
(pad "A4" thru_hole circle locked (at 0.85 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp bdb172e7-6482-4691-8983-a8c281da8f64))
(pad "A5" thru_hole circle locked (at 1.7 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 16 "Net-(J9-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 30dfc346-e481-48ca-ae76-8026d8d97c5c))
(pad "A6" thru_hole circle locked (at 2.55 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 13 "/USB_DP") (pinfunction "D+") (pintype "bidirectional") (tstamp a66c5123-0df6-4ddd-82df-5f7f72a78920))
(pad "A7" thru_hole circle locked (at 3.4 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 14 "/USB_DN") (pinfunction "D-") (pintype "bidirectional") (tstamp 94def480-d50f-4c0f-826d-7d4ce71c9c4e))
(pad "A8" thru_hole circle locked (at 4.25 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 5 "unconnected-(J9-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 9bd706f6-d93e-4913-96b8-54a4b1dc24a9))
(pad "A9" thru_hole circle locked (at 5.1 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 8bb5476d-0e0a-4abb-9aa3-476755220974))
(pad "A12" thru_hole circle locked (at 5.95 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp d874367c-82ec-4a69-88c6-9147346e8044))
(pad "B1" thru_hole circle locked (at 5.95 1.35) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp 06c8a4f6-cbb0-4540-9209-003574ee74ee))
(pad "B4" thru_hole circle locked (at 5.1 1.35) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 6f4bfc22-08c6-4ddb-97a4-26dee9bd7ca0))
(pad "B5" thru_hole circle locked (at 4.25 1.35) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 17 "Net-(J9-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp b9643400-be55-4a40-8c79-745aa3c65eef))
(pad "B6" thru_hole circle locked (at 3.4 1.35) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 13 "/USB_DP") (pinfunction "D+") (pintype "bidirectional") (tstamp 8323e762-7e5d-4969-bd12-7df271f59a39))
(pad "B7" thru_hole circle locked (at 2.55 1.35) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 14 "/USB_DN") (pinfunction "D-") (pintype "bidirectional") (tstamp 17d3d376-6c6d-4860-8949-260b02a7f1ff))
(pad "B8" thru_hole circle locked (at 1.7 1.35) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 6 "unconnected-(J9-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp 154d3377-6296-4aab-9aa3-3cabfc82996f))
(pad "B9" thru_hole circle locked (at 0.85 1.35) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp db1a3512-6c01-4e83-9a03-d1465e9e17d2))
(pad "B12" thru_hole circle locked (at 0 1.35) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp 176b056b-2165-4705-b0a1-c5220a69ed68))
(pad "S1" thru_hole oval locked (at 7.3 4.36) (size 0.9 1.7) (drill oval 0.6 1.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 214867a0-ffee-4e19-8962-477680f8b97e))
(pad "S1" thru_hole oval locked (at 7.3 0.98) (size 0.9 2.4) (drill oval 0.6 2.1) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 248bf024-709d-488b-8e53-cc221871009f))
(pad "S1" thru_hole oval locked (at -1.35 4.36) (size 0.9 1.7) (drill oval 0.6 1.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 55c6cd87-079a-4d30-9a97-f589bd3184d6))
(pad "S1" thru_hole oval locked (at -1.35 0.98) (size 0.9 2.4) (drill oval 0.6 2.1) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp cfc232b9-1b02-4eb7-97dd-68df00a0c5a8))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_GCT_USB4085.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu")
(tedit 5C28146C) (tstamp 3af54c5a-6498-4234-921a-4ae4b1cb077f)
(at 108.4 77.15 180)
(descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical")
(property "Sheetfile" "Fichier: DextraBoard.kicad_sch")
(property "Sheetname" "")
(path "/7bdc35f1-8474-493c-91c4-7551df890f22")
(attr through_hole)
(fp_text reference "J8" (at 2.5 -3.55) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37a9d2c1-5fa4-4c86-af31-649d870f1461)
)
(fp_text value "Conn_01x03_Female" (at 2.5 4.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 553611e1-1156-4515-89c8-fc0a5c73eff1)
)
(fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f95839d-fdb2-46ff-b516-c112c13e58c2)
)
(fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 0dfa5edc-712d-4e0c-9a81-1ab7df5eeaa0))
(fp_line (start -1.8 2.75) (end 2.5 2.75) (layer "F.SilkS") (width 0.12) (tstamp 1c8676b8-ec08-42df-80e6-8730ebcd580d))
(fp_line (start 7.56 -2.46) (end -2.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp 1f07e2e8-40d1-4e7a-a357-dab87c432389))
(fp_line (start 7.56 3.51) (end 7.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp 21b26653-52df-410f-be6c-9cb81de63cbc))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 2223f5ea-c27e-45b8-9ff7-6bc6a7ece299))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 24188dc5-2cb5-4adc-ac00-588e23ae8e4a))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 32296bf6-f3a8-4257-babe-e35c3c10fcde))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 3259fff0-64f1-4c9a-963b-3baafbd75d38))
(fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp 42b4b3be-1455-4b49-8a72-b924e6f13200))
(fp_line (start 6.8 -0.2) (end 6.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp 6883429d-6370-40e9-9030-08f9207d7b5c))
(fp_line (start 7.55 -1.7) (end 7.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 6c054da5-b740-42ad-b7a9-d9bd5a3176d3))
(fp_line (start 5.75 -1.7) (end 7.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 6ebb728c-c11a-4e25-b34b-70864846b60d))
(fp_line (start 4.25 -2.45) (end 0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 7e80bbe0-8298-4ca1-87ef-d97115ff9984))
(fp_line (start -2.85 -2.75) (end -2.85 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 85cecc47-0ea9-425b-b1db-c8ea966eb7b5))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp a3148fcd-2914-4edb-bab3-aa3e5003b6fd))
(fp_line (start 7.55 -2.45) (end 5.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp ab1bc0c1-c188-4c90-b57d-f4381988dd80))
(fp_line (start -2.56 -2.46) (end -2.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp ab47be51-ea55-409c-852e-daa5dcfa9e3f))
(fp_line (start 0.75 -1.7) (end 4.25 -1.7) (layer "F.SilkS") (width 0.12) (tstamp b327153c-b802-4743-9345-b34801f56c4e))
(fp_line (start 4.25 -1.7) (end 4.25 -2.45) (layer "F.SilkS") (width 0.12) (tstamp b76bdd73-1b80-464e-ad9b-4e0a854aa2ce))
(fp_line (start 7.55 -0.2) (end 6.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp bbb2d669-aa9a-4421-ad46-a7e83f6ead79))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp c856a57c-7450-4b7f-b8a6-7f7badb9c473))
(fp_line (start 6.8 2.75) (end 2.5 2.75) (layer "F.SilkS") (width 0.12) (tstamp d91ba1b0-2222-4a7d-98e8-dd838d216fb4))
(fp_line (start 5.75 -2.45) (end 5.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp e1eee08d-1389-4a87-9d85-0702bc204eb9))
(fp_line (start -2.56 3.51) (end 7.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp f1e3831f-50ca-40fe-a7d4-4520c9f5d53e))
(fp_line (start -2.95 3.9) (end 7.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 05b60760-39a4-4430-8781-72bd9874672d))
(fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 4d288ada-0b63-4cc0-9270-1e1408a7eaf9))
(fp_line (start 7.95 -2.85) (end -2.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 76945751-5f99-4a19-9bfd-5bef9410e406))
(fp_line (start 7.95 3.9) (end 7.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp ed091f88-89d2-471d-99d4-3372b32f2814))
(fp_line (start 7.45 3.4) (end 7.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp 410d1032-ff49-498e-b348-86ca0c5df2a6))
(fp_line (start -2.45 3.4) (end 7.45 3.4) (layer "F.Fab") (width 0.1) (tstamp 5989dc37-b794-4deb-aa64-c6d9084bc1fe))
(fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer "F.Fab") (width 0.1) (tstamp ab0a8c3b-7519-4fd4-87d5-082226498ae5))
(fp_line (start 7.45 -2.35) (end -2.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp c9cd14c6-6b6e-4983-b046-43baf28f748b))
(fp_line (start 0 -1.35) (end 0.625 -2.35) (layer "F.Fab") (width 0.1) (tstamp de0d949d-87a5-4d2e-8c83-d96105de33d4))
(fp_line (start -0.625 -2.35) (end 0 -1.35) (layer "F.Fab") (width 0.1) (tstamp ec65a6d7-3281-4acd-a2b4-78c8cc1ee3a8))
(pad "1" thru_hole roundrect (at 0 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask) (roundrect_rratio 0.147059)
(net 131 "-BATT") (pinfunction "Pin_1") (pintype "passive") (tstamp 749ccf6c-57d1-426a-9b4a-f70af0a17f55))
(pad "2" thru_hole oval (at 2.5 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 115 "/MID_BAT") (pinfunction "Pin_2") (pintype "passive") (tstamp 6eb9e1ec-5337-4e47-8f7d-9c49d19d9d44))
(pad "3" thru_hole oval (at 5 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 10 "+BATT") (pinfunction "Pin_3") (pintype "passive") (tstamp e40a01eb-fff4-4bcc-9d62-f111651fb2ed))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_CuK_OS102011MA1QN1_SPDT_Angled" locked (layer "F.Cu")
(tedit 5A02FE31) (tstamp 436974e3-d260-44d5-9e83-e8dcc8a87280)
(at 57.5 76.6)
(descr "CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf")
(tags "switch SPDT")
(property "Sheetfile" "Fichier: DextraBoard.kicad_sch")
(property "Sheetname" "")
(path "/4aa76e72-29ce-47ca-9d66-6e60b3372706")
(attr through_hole)
(fp_text reference "SW2" (at 9 -0.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6a8f8b1-cf05-4426-8b0c-4a39c90b89c1)
)
(fp_text value "SW_SPDT" (at 1.7 7.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e561e658-0c99-4b93-8922-c966e2a7156f)
)
(fp_text user "${REFERENCE}" (at 2.3 1.7) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 397c563c-73db-4bf2-bcd8-9ed7a736d9a1)
)
(fp_line (start 4 2.3) (end 6.3 2.3) (layer "F.SilkS") (width 0.15) (tstamp 344a0636-ce84-4a56-88e3-7a14e29c6400))
(fp_line (start -2.3 -2.3) (end 6.3 -2.3) (layer "F.SilkS") (width 0.15) (tstamp b5795f6c-813d-4fe1-9a2f-0c3e289db711))
(fp_line (start -2.3 2.3) (end -0.1 2.3) (layer "F.SilkS") (width 0.15) (tstamp db92161d-064b-4231-941a-efc5ec146b0c))
(fp_line (start -3.7 6.7) (end -3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 2e886ec2-53d5-4c7f-bab2-2aa52e09fa43))
(fp_line (start -3.7 -2.7) (end 7.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 4b6cadbb-b908-4275-b5eb-9824ef904c90))
(fp_line (start 7.7 6.7) (end -3.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 514d4ece-4d15-4580-b4c6-525ed1e86144))
(fp_line (start 7.7 -2.7) (end 7.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp af335765-6e08-48f1-91c7-7c1fbd77be52))
(fp_line (start 2 6.2) (end 0 6.2) (layer "F.Fab") (width 0.1) (tstamp 0f98c307-727d-440e-a6e0-785d84f69f8a))
(fp_line (start 2 2.2) (end 2 6.2) (layer "F.Fab") (width 0.1) (tstamp 27618427-173e-42f1-8841-5bc123d4d738))
(fp_line (start -2.3 -2.2) (end -2.3 2.2) (layer "F.Fab") (width 0.1) (tstamp 49c1c4f0-cf9a-4997-982f-1293c7f8c3d1))
(fp_line (start 6.3 2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp 99381003-fa95-4046-b604-78044c732651))
(fp_line (start -2.3 -2.2) (end 6.3 -2.2) (layer "F.Fab") (width 0.1) (tstamp 9fcefa51-bdc7-4659-a05d-e58513b2152d))
(fp_line (start -2.3 2.2) (end 6.3 2.2) (layer "F.Fab") (width 0.1) (tstamp af824bc7-9df8-4f9b-9ced-154d411850f7))
(fp_line (start 0 6.2) (end 0 2.2) (layer "F.Fab") (width 0.1) (tstamp c97b32ec-bd42-4cbc-bae4-beb0db468e43))
(pad "" thru_hole oval locked (at -2.1 0) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 02fcd1b2-c70a-436b-88d4-f6524e9e42f5))
(pad "" thru_hole oval locked (at 6.1 0) (size 2.2 3.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp b6387909-f907-4f7a-aa6d-d2d1a62ae508))
(pad "1" thru_hole rect locked (at 0 0) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "A") (pintype "passive") (tstamp f84a6789-ba5b-41ac-b438-9621c8176808))
(pad "2" thru_hole oval locked (at 2 0) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 28 "/VIN") (pinfunction "B") (pintype "passive") (tstamp 1ae992d9-d34a-4f45-ace3-289e603ccffa))
(pad "3" thru_hole oval locked (at 4 0) (size 1.5 2.5) (drill 0.9) (layers *.Cu *.Mask)
(net 10 "+BATT") (pinfunction "C") (pintype "passive") (tstamp 209503c4-68e0-4957-8fbc-4e2fdc265dc3))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_CuK_OS102011MA1QN1_SPDT_Angled.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_GCT_USB4085" locked (layer "F.Cu")
(tedit 5BCCCD93) (tstamp 44281c6a-7199-4fc6-b691-78611af1fea4)
(at 51.475 53.025 180)
(descr "USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf")
(tags "USB Type-C Receptacle Through-hole Right angle")
(property "Sheetfile" "Fichier: DextraBoard.kicad_sch")
(property "Sheetname" "")
(path "/9199e329-2e9c-4b6a-948d-70b2700840af")
(attr through_hole)
(fp_text reference "J6" (at 9.575 0.925 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5aaf31cd-299d-4ffc-a002-a52281745d47)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 2.975 9.925) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e47ee89e-f990-4adc-8af1-d6262d5b9d81)
)
(fp_text user "PCB Edge" (at 2.975 6.1) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp e19edb75-fa86-4a7d-a704-943e69bb074c)
)
(fp_text user "${REFERENCE}" (at 2.975 4.025) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e149d40a-0070-4e71-a9f2-7283551e6402)
)
(fp_line (start -1.62 6) (end -1.62 8.73) (layer "F.SilkS") (width 0.12) (tstamp 3e120a50-39f6-40bc-abca-be763fc71496))
(fp_line (start -1.62 2.4) (end -1.62 3.3) (layer "F.SilkS") (width 0.12) (tstamp 717a21a1-468c-4af5-8f1e-d91649ca6eb0))
(fp_line (start 7.57 2.4) (end 7.57 3.3) (layer "F.SilkS") (width 0.12) (tstamp 93cf88c0-524f-45fd-ac83-865aa27d11cc))
(fp_line (start -1.5 -0.68) (end 7.45 -0.68) (layer "F.SilkS") (width 0.12) (tstamp a1ddb8bf-b739-42d6-bc83-a5ec46cc2847))
(fp_line (start 7.57 6) (end 7.57 8.73) (layer "F.SilkS") (width 0.12) (tstamp ac4c8f26-6862-4686-a63f-ba999f649c57))
(fp_line (start -1.62 8.73) (end 7.57 8.73) (layer "F.SilkS") (width 0.12) (tstamp aed6f1ad-56c0-4f4d-bb80-68c8e0509a4c))
(fp_line (start -2.3 -1.06) (end 8.25 -1.06) (layer "F.CrtYd") (width 0.05) (tstamp 42b7daf2-5aa3-461b-9b93-3aeae9a70818))
(fp_line (start -2.3 -1.06) (end -2.3 9.11) (layer "F.CrtYd") (width 0.05) (tstamp 9f58765b-28e1-4b4e-ab04-6066082b1079))
(fp_line (start -2.3 9.11) (end 8.25 9.11) (layer "F.CrtYd") (width 0.05) (tstamp b250732b-7f2b-49ba-8960-d4218cdf8291))
(fp_line (start 8.25 -1.06) (end 8.25 9.11) (layer "F.CrtYd") (width 0.05) (tstamp f3045f67-283a-4d9e-a94e-b77e3edd84d2))
(fp_line (start -1.5 -0.56) (end -1.5 8.61) (layer "F.Fab") (width 0.1) (tstamp 0e1f632b-abea-4b7f-90d4-2043dd7b5be9))
(fp_line (start -1.5 8.61) (end 7.45 8.61) (layer "F.Fab") (width 0.1) (tstamp 44c08ce6-6c73-4599-9ece-998c1ca1a404))
(fp_line (start -0.025 6.1) (end 5.975 6.1) (layer "F.Fab") (width 0.1) (tstamp 6051b7f9-fe79-422d-a981-9bcb45407257))
(fp_line (start 7.45 -0.56) (end 7.45 8.61) (layer "F.Fab") (width 0.1) (tstamp 74967a39-4035-4a09-9061-d54142f62d64))
(fp_line (start -1.5 -0.56) (end 7.45 -0.56) (layer "F.Fab") (width 0.1) (tstamp 9e4854ee-c510-4bbd-afd8-631f9a48580e))
(pad "A1" thru_hole circle locked (at 0 0 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp c37862b7-9046-4331-8425-95e02e416dec))
(pad "A4" thru_hole circle locked (at 0.85 0 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 95f31e07-4a8f-4abc-9046-144be2b840a6))
(pad "A5" thru_hole circle locked (at 1.7 0 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 12 "Net-(J6-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 8f648115-00f9-4682-afcd-7a1ff44653a1))
(pad "A6" thru_hole circle locked (at 2.55 0 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 13 "/USB_DP") (pinfunction "D+") (pintype "bidirectional") (tstamp ae19f5c0-e1d7-4016-92a7-3a7ae6d8eb9f))
(pad "A7" thru_hole circle locked (at 3.4 0 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 14 "/USB_DN") (pinfunction "D-") (pintype "bidirectional") (tstamp 25c73cf5-2daa-4b48-a85c-af0d7b46ac70))
(pad "A8" thru_hole circle locked (at 4.25 0 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 3 "unconnected-(J6-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 52d7c3a0-18b1-4000-aaf4-0ddedc4e8a45))
(pad "A9" thru_hole circle locked (at 5.1 0 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 78078fee-8619-4278-b4ed-69c2e0fb8f3f))
(pad "A12" thru_hole circle locked (at 5.95 0 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp ab5e9832-1e1d-42bf-8048-880b60716a6f))
(pad "B1" thru_hole circle locked (at 5.95 1.35 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp a04f36c0-5343-4cb5-b540-9ece4a1fd534))
(pad "B4" thru_hole circle locked (at 5.1 1.35 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 4d4db3d6-779b-41d0-b2c6-4691300d113a))
(pad "B5" thru_hole circle locked (at 4.25 1.35 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 15 "Net-(J6-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 90051e8c-9dfc-49f7-8c8c-952e760db8e6))
(pad "B6" thru_hole circle locked (at 3.4 1.35 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 13 "/USB_DP") (pinfunction "D+") (pintype "bidirectional") (tstamp 72ac2a97-b38a-4c04-b9a2-f62dc484df64))
(pad "B7" thru_hole circle locked (at 2.55 1.35 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 14 "/USB_DN") (pinfunction "D-") (pintype "bidirectional") (tstamp 3117141d-6a31-4cfd-8d43-66346ae391a2))
(pad "B8" thru_hole circle locked (at 1.7 1.35 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 4 "unconnected-(J6-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp cb95c5d8-ccc9-4626-9bdb-7bec85540b50))
(pad "B9" thru_hole circle locked (at 0.85 1.35 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp a55cf60f-b9e6-44d4-beb7-a601b5266a36))
(pad "B12" thru_hole circle locked (at 0 1.35 180) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "GND") (pintype "passive") (tstamp 77305fa7-59b7-4257-9cce-1f787ea96f2e))
(pad "S1" thru_hole oval locked (at -1.35 4.36 180) (size 0.9 1.7) (drill oval 0.6 1.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 06c05fc3-2a10-4034-81ea-2511738c471c))
(pad "S1" thru_hole oval locked (at -1.35 0.98 180) (size 0.9 2.4) (drill oval 0.6 2.1) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 85ed031c-7bd9-4611-b5e9-645d23f47c6b))
(pad "S1" thru_hole oval locked (at 7.3 0.98 180) (size 0.9 2.4) (drill oval 0.6 2.1) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 8b5c5c35-9fa6-42ab-a00b-53767849c852))
(pad "S1" thru_hole oval locked (at 7.3 4.36 180) (size 0.9 1.7) (drill oval 0.6 1.4) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp f66445a3-dc52-405e-883b-923ec876e758))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_GCT_USB4085.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.00mm:PinSocket_2x07_P2.00mm_Vertical_SMD" locked (layer "F.Cu")
(tedit 5A19A42D) (tstamp 4f5627fe-379d-44ca-80f2-01b33d6012e2)
(at 58 63.5)
(descr "surface-mounted straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Surface mounted socket strip SMD 2x07 2.00mm double row")
(property "Sheetfile" "Fichier: n76e003s.kicad_sch")
(property "Sheetname" "N76E003s (PWM + ADC + IO)")
(path "/d71e87ed-80a4-4405-b430-b84b6b85f08f/09c7e803-15c4-469c-a961-c5dedcc16a29")
(attr smd)
(fp_text reference "J2" (at 0 -8.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23fb49ac-f065-40b5-aaf1-7e3fa35f7a06)
)
(fp_text value "Conn_02x07_Counter_Clockwise" (at 0 8.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24a7bf59-86c5-456d-b6f8-b969edb53499)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c15a082-90d6-4a3c-bf0d-5c133fdbe293)
)
(fp_line (start -2.06 -7.06) (end 2.06 -7.06) (layer "F.SilkS") (width 0.12) (tstamp 1084392d-0b76-48df-b7f4-6f7e6d334770))
(fp_line (start -2.06 -7.06) (end -2.06 -6.76) (layer "F.SilkS") (width 0.12) (tstamp 3aeac65c-8f36-4a05-82f7-4aab31ecb7c9))
(fp_line (start 2.06 2.76) (end 2.06 3.24) (layer "F.SilkS") (width 0.12) (tstamp 3ece881a-6b91-4a17-993a-21887e5da598))
(fp_line (start -2.06 2.76) (end -2.06 3.24) (layer "F.SilkS") (width 0.12) (tstamp 4a25be48-5485-4f72-b7c1-9b935977c271))
(fp_line (start -2.06 7.06) (end 2.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp 4d11cb51-c774-46bd-bd99-30c06cfe4167))
(fp_line (start -2.06 -1.24) (end -2.06 -0.76) (layer "F.SilkS") (width 0.12) (tstamp 555a5a47-48bb-4746-a64c-4f60b7aae434))
(fp_line (start -2.06 -3.24) (end -2.06 -2.76) (layer "F.SilkS") (width 0.12) (tstamp 5846fd81-19ca-44fd-9b37-f4c13c5db62b))
(fp_line (start -2.06 0.76) (end -2.06 1.24) (layer "F.SilkS") (width 0.12) (tstamp 600c92eb-6b20-4b06-9def-cf1e09d5a674))
(fp_line (start -2.06 4.76) (end -2.06 5.24) (layer "F.SilkS") (width 0.12) (tstamp 61d7a2c3-d0ae-4389-bc7c-26f78abd8283))
(fp_line (start 2.06 6.76) (end 2.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp 62cb486d-0a66-4e74-a967-ed281dab24f3))
(fp_line (start 2.06 -6.76) (end 4.44 -6.76) (layer "F.SilkS") (width 0.12) (tstamp 74d0c053-ac1f-48a2-bca1-66f7a9eb5f0a))
(fp_line (start 2.06 -3.24) (end 2.06 -2.76) (layer "F.SilkS") (width 0.12) (tstamp 78e68e64-ac9b-4370-aa89-6119cdff9125))
(fp_line (start -2.06 6.76) (end -2.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp 7fb491ee-e018-4521-b319-aff873a42b42))
(fp_line (start 2.06 4.76) (end 2.06 5.24) (layer "F.SilkS") (width 0.12) (tstamp 98ec82c1-07c1-4873-8d25-715c5efce5bc))
(fp_line (start -2.06 -5.24) (end -2.06 -4.76) (layer "F.SilkS") (width 0.12) (tstamp 9db68a3b-a74f-433f-aac5-7bd648999f9c))
(fp_line (start 2.06 -7.06) (end 2.06 -6.76) (layer "F.SilkS") (width 0.12) (tstamp a59b610f-c09a-42fa-959b-c0c2709cfa54))
(fp_line (start 2.06 -5.24) (end 2.06 -4.76) (layer "F.SilkS") (width 0.12) (tstamp bd16ffa5-3af3-4e99-b601-47c15af48110))
(fp_line (start 2.06 -1.24) (end 2.06 -0.76) (layer "F.SilkS") (width 0.12) (tstamp e924e4db-5e99-4329-8d01-8e570f019c13))
(fp_line (start 2.06 0.76) (end 2.06 1.24) (layer "F.SilkS") (width 0.12) (tstamp fba86569-cce7-493a-acc7-f8dc36a607c5))
(fp_line (start 5 7.5) (end -5 7.5) (layer "F.CrtYd") (width 0.05) (tstamp 0df1ce9e-848e-4487-a21e-ea807a611963))
(fp_line (start 5 -7.5) (end 5 7.5) (layer "F.CrtYd") (width 0.05) (tstamp 19a172c7-af8f-4649-b866-1c4208d0c0ee))
(fp_line (start -5 -7.5) (end 5 -7.5) (layer "F.CrtYd") (width 0.05) (tstamp 700ee417-d205-4437-affb-773b2e9159c1))
(fp_line (start -5 7.5) (end -5 -7.5) (layer "F.CrtYd") (width 0.05) (tstamp d5dc399f-72e4-46e4-ae3b-2e99d4297fce))
(fp_line (start -3 -1.75) (end -3 -2.25) (layer "F.Fab") (width 0.1) (tstamp 06284d5b-c662-4c3b-84ad-ba917454f6bb))
(fp_line (start -3 0.25) (end -3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0f0783ad-6984-4799-bcfe-e062fe4bd0fb))
(fp_line (start -3 -4.25) (end -2 -4.25) (layer "F.Fab") (width 0.1) (tstamp 24d11e27-4550-4820-9d9a-040bd6b90c64))
(fp_line (start 3 5.75) (end 3 6.25) (layer "F.Fab") (width 0.1) (tstamp 26d3eb37-acea-4b7c-86fc-3fdf8d8e41dd))
(fp_line (start 2 7) (end -2 7) (layer "F.Fab") (width 0.1) (tstamp 2fc81b03-a646-4076-af08-477f1ed9e679))
(fp_line (start 3 4.25) (end 2 4.25) (layer "F.Fab") (width 0.1) (tstamp 37de0322-4e48-4360-81a1-20884f41b8e5))
(fp_line (start -2 2.25) (end -3 2.25) (layer "F.Fab") (width 0.1) (tstamp 3c1648b2-e429-47e0-a829-e89ab7010028))
(fp_line (start 3 -3.75) (end 2 -3.75) (layer "F.Fab") (width 0.1) (tstamp 435d328b-dab7-4a51-b1d9-97107e645117))
(fp_line (start 2 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp 464be3f4-7a41-4da1-96b3-fa3a6f24fdcc))
(fp_line (start 3 -4.25) (end 3 -3.75) (layer "F.Fab") (width 0.1) (tstamp 467a9ee6-0f95-49c7-b8eb-32cd53b6b635))
(fp_line (start 2 -6.25) (end 3 -6.25) (layer "F.Fab") (width 0.1) (tstamp 489ac250-e0cb-425f-975f-5c921d57eb54))
(fp_line (start -3 -6.25) (end -2 -6.25) (layer "F.Fab") (width 0.1) (tstamp 557aa582-763e-4eea-8559-4ec3e30d91fc))
(fp_line (start 3 -2.25) (end 3 -1.75) (layer "F.Fab") (width 0.1) (tstamp 5a96f6c6-cacf-4574-aa03-23af4df87a47))
(fp_line (start 2 -6) (end 2 7) (layer "F.Fab") (width 0.1) (tstamp 5ad60bc3-1e73-4816-868c-b5765565699c))
(fp_line (start -3 3.75) (end -2 3.75) (layer "F.Fab") (width 0.1) (tstamp 656686a3-7378-469c-b7b9-9c6f97b6f8ab))
(fp_line (start 3 1.75) (end 3 2.25) (layer "F.Fab") (width 0.1) (tstamp 6cbafc39-09a1-40c0-9b0e-503306fa9667))
(fp_line (start -3 6.25) (end -3 5.75) (layer "F.Fab") (width 0.1) (tstamp 71950aa7-d363-4af1-a9cd-42ec6d06297a))
(fp_line (start 3 -1.75) (end 2 -1.75) (layer "F.Fab") (width 0.1) (tstamp 8033e898-5c39-428a-959f-79215c21a85c))
(fp_line (start 3 3.75) (end 3 4.25) (layer "F.Fab") (width 0.1) (tstamp 8523bf69-817f-4d31-8f5b-662b067d5c6f))
(fp_line (start -2 0.25) (end -3 0.25) (layer "F.Fab") (width 0.1) (tstamp 904c3342-d84f-473e-9ff0-12e3f6cc0fc2))
(fp_line (start 3 0.25) (end 2 0.25) (layer "F.Fab") (width 0.1) (tstamp 93e9677f-0cf8-45fe-978e-896e55770eaf))
(fp_line (start 2 5.75) (end 3 5.75) (layer "F.Fab") (width 0.1) (tstamp 982ba43f-ccee-4e93-8744-241d38c083dd))
(fp_line (start -2 7) (end -2 -7) (layer "F.Fab") (width 0.1) (tstamp 9c987be3-16aa-4fee-ab08-9bdf9133f724))
(fp_line (start 3 -6.25) (end 3 -5.75) (layer "F.Fab") (width 0.1) (tstamp a273e660-a80d-4cd8-94dc-181319903bf8))
(fp_line (start 3 -5.75) (end 2 -5.75) (layer "F.Fab") (width 0.1) (tstamp a749b753-4a17-4d03-aeea-6235c84dbd23))
(fp_line (start -3 -0.25) (end -2 -0.25) (layer "F.Fab") (width 0.1) (tstamp ab6d12ab-0b38-4443-891e-7225bd98017b))
(fp_line (start 1 -7) (end 2 -6) (layer "F.Fab") (width 0.1) (tstamp acbb2d8c-f21f-4b62-a1e7-1ca635f19365))
(fp_line (start -3 -3.75) (end -3 -4.25) (layer "F.Fab") (width 0.1) (tstamp ad528cd3-0012-4374-9168-a64e1471cf40))
(fp_line (start -2 -7) (end 1 -7) (layer "F.Fab") (width 0.1) (tstamp aeaba207-434c-4889-af8f-7e7a0cdb2151))
(fp_line (start -3 4.25) (end -3 3.75) (layer "F.Fab") (width 0.1) (tstamp af0d7ecf-f9ae-46d0-a70f-2b6b02c076db))
(fp_line (start -3 -5.75) (end -3 -6.25) (layer "F.Fab") (width 0.1) (tstamp aff9e8a9-a51c-4f13-9107-40fce61f39dc))
(fp_line (start 2 -4.25) (end 3 -4.25) (layer "F.Fab") (width 0.1) (tstamp b450fa85-ea2a-4f5f-9600-429c5d629568))
(fp_line (start -3 -2.25) (end -2 -2.25) (layer "F.Fab") (width 0.1) (tstamp b4c94ddb-910c-4663-804a-b5c220d9c36b))
(fp_line (start -2 6.25) (end -3 6.25) (layer "F.Fab") (width 0.1) (tstamp bd1ea893-9f0e-45aa-aa86-4d5abade70c4))
(fp_line (start -2 -5.75) (end -3 -5.75) (layer "F.Fab") (width 0.1) (tstamp bfbf74fe-59bb-4a8f-8db4-430a14c29eb4))
(fp_line (start 3 -0.25) (end 3 0.25) (layer "F.Fab") (width 0.1) (tstamp c4feecaa-9682-4c0a-bfee-18c0b3f842c6))
(fp_line (start 3 6.25) (end 2 6.25) (layer "F.Fab") (width 0.1) (tstamp c514767f-a4d4-47ac-915f-85487c99d64c))
(fp_line (start 2 -2.25) (end 3 -2.25) (layer "F.Fab") (width 0.1) (tstamp c83fb1cc-b8e8-4256-8bd6-518f4cdc2d65))
(fp_line (start -3 5.75) (end -2 5.75) (layer "F.Fab") (width 0.1) (tstamp cb1c5a0e-6379-4c1b-8ea1-0cd293c6b609))
(fp_line (start -3 2.25) (end -3 1.75) (layer "F.Fab") (width 0.1) (tstamp d4f93775-08d9-4fde-843d-38e8f5837ea2))
(fp_line (start -2 -1.75) (end -3 -1.75) (layer "F.Fab") (width 0.1) (tstamp d8ca766c-a152-48de-b5e4-abe644df3941))
(fp_line (start -2 4.25) (end -3 4.25) (layer "F.Fab") (width 0.1) (tstamp e640ebbb-0bc7-4f33-b6a8-25a3a48e2911))
(fp_line (start 2 3.75) (end 3 3.75) (layer "F.Fab") (width 0.1) (tstamp eb86b2cc-fd75-445e-a91f-337491500314))
(fp_line (start 3 2.25) (end 2 2.25) (layer "F.Fab") (width 0.1) (tstamp ec1bfe24-63ed-4792-b0cd-4eda9c71b70d))
(fp_line (start -2 -3.75) (end -3 -3.75) (layer "F.Fab") (width 0.1) (tstamp effb4f6e-8204-4da9-8248-f39f41ac8d67))
(fp_line (start 2 -0.25) (end 3 -0.25) (layer "F.Fab") (width 0.1) (tstamp f2a902d6-c929-4d42-8313-cf365f623085))
(fp_line (start -3 1.75) (end -2 1.75) (layer "F.Fab") (width 0.1) (tstamp fae535e7-79b0-4bec-8ede-392a32561d64))
(pad "1" smd rect locked (at 3.125 -6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp c669dce2-4c59-4ef6-9083-6ed09a235b72))
(pad "2" smd rect locked (at -3.125 -6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "/N76E003s (PWM + ADC + IO)/PWM10") (pinfunction "Pin_2") (pintype "passive") (tstamp fa64de61-bcee-4634-bfc9-0b6af9e4d213))
(pad "3" smd rect locked (at 3.125 -4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "/N76E003s (PWM + ADC + IO)/PWM11") (pinfunction "Pin_3") (pintype "passive") (tstamp 0d764816-6fc8-4a28-bff1-4d6f6542ab80))
(pad "4" smd rect locked (at -3.125 -4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 50 "/N76E003s (PWM + ADC + IO)/PWM12") (pinfunction "Pin_4") (pintype "passive") (tstamp 0bd50d9d-3fd5-47ba-aec7-c40cd54fc451))
(pad "5" smd rect locked (at 3.125 -2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "/N76E003s (PWM + ADC + IO)/PWM13") (pinfunction "Pin_5") (pintype "passive") (tstamp 7f0b3666-4261-4639-9b7d-ed1469ba7229))
(pad "6" smd rect locked (at -3.125 -2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 73 "/N76E003s (PWM + ADC + IO)/IO8") (pinfunction "Pin_6") (pintype "passive") (tstamp 390dbd2c-b927-4a58-8659-16162cfe2fb0))
(pad "7" smd rect locked (at 3.125 0) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "+3V3") (pinfunction "Pin_7") (pintype "passive") (tstamp 9ec70d98-75ce-4ab7-9e1f-60ef736cb193))
(pad "8" smd rect locked (at -3.125 0) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 9f0e1689-9e84-49d1-9556-4a4789b4a502))
(pad "9" smd rect locked (at 3.125 2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 74 "/N76E003s (PWM + ADC + IO)/MUX_CH11") (pinfunction "Pin_9") (pintype "passive") (tstamp 61554507-f7af-4e60-ae7b-a4f6d464e93b))
(pad "10" smd rect locked (at -3.125 2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 75 "/N76E003s (PWM + ADC + IO)/MUX_CH10") (pinfunction "Pin_10") (pintype "passive") (tstamp 2b5ab11d-3b72-423c-b692-a2e765ab73ef))
(pad "11" smd rect locked (at 3.125 4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 76 "/N76E003s (PWM + ADC + IO)/MUX_CH9") (pinfunction "Pin_11") (pintype "passive") (tstamp 1130532a-c5a9-4332-91f0-27b06b432aa0))
(pad "12" smd rect locked (at -3.125 4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 77 "/N76E003s (PWM + ADC + IO)/MUX_CH8") (pinfunction "Pin_12") (pintype "passive") (tstamp 73ccde9f-f9f8-489f-bc7c-75aefe833187))
(pad "13" smd rect locked (at 3.125 6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 78 "/N76E003s (PWM + ADC + IO)/MUX_CH7") (pinfunction "Pin_13") (pintype "passive") (tstamp 3bedbe5c-62f2-481b-9a61-2391a4947de2))
(pad "14" smd rect locked (at -3.125 6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 79 "/N76E003s (PWM + ADC + IO)/MUX_CH6") (pinfunction "Pin_14") (pintype "passive") (tstamp 3b11c367-99a8-431a-ac67-b0d6e13e81be))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.00mm.3dshapes/PinSocket_2x07_P2.00mm_Vertical_SMD.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.00mm:PinSocket_2x06_P2.00mm_Vertical_SMD" locked (layer "F.Cu")
(tedit 5A19A433) (tstamp 529a65bd-6674-4931-b4ea-d8b1f44e8e5e)
(at 105.6 63.5)
(descr "surface-mounted straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Surface mounted socket strip SMD 2x06 2.00mm double row")
(property "Sheetfile" "Fichier: n76e003s.kicad_sch")
(property "Sheetname" "N76E003s (PWM + ADC + IO)")
(path "/d71e87ed-80a4-4405-b430-b84b6b85f08f/2443c892-3675-4a05-a6a3-2aae427198e6")
(attr smd)
(fp_text reference "J4" (at 0 -7.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8928770a-15fc-4583-aacc-0c42653c9f0d)
)
(fp_text value "Conn_02x06_Counter_Clockwise" (at 0 7.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e265552e-38d9-4348-bbf4-9cca34d3323d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df05101c-7969-443d-966d-71e6b4d2b75d)
)
(fp_line (start -2.06 -0.24) (end -2.06 0.24) (layer "F.SilkS") (width 0.12) (tstamp 126909c5-55b4-4d04-94dd-1d8326d07db6))
(fp_line (start 2.06 3.76) (end 2.06 4.24) (layer "F.SilkS") (width 0.12) (tstamp 1895d69a-c280-48cd-8dea-1fa541fd5732))
(fp_line (start 2.06 5.76) (end 2.06 6.06) (layer "F.SilkS") (width 0.12) (tstamp 238b8456-7c84-4697-9d02-608355809102))
(fp_line (start -2.06 6.06) (end 2.06 6.06) (layer "F.SilkS") (width 0.12) (tstamp 24a37680-94c0-4485-9ba8-df0b59edc403))
(fp_line (start 2.06 -0.24) (end 2.06 0.24) (layer "F.SilkS") (width 0.12) (tstamp 2a81280c-a492-4710-9441-7f4ff7b550d1))
(fp_line (start -2.06 -6.06) (end -2.06 -5.76) (layer "F.SilkS") (width 0.12) (tstamp 348218ab-5fa6-46f2-9af5-298ab9ae12bc))
(fp_line (start -2.06 3.76) (end -2.06 4.24) (layer "F.SilkS") (width 0.12) (tstamp 397a1b7b-152f-4442-8820-9850e41db88f))
(fp_line (start 2.06 -4.24) (end 2.06 -3.76) (layer "F.SilkS") (width 0.12) (tstamp 49f2915c-37d9-4df4-8df6-1a44885507e1))
(fp_line (start 2.06 1.76) (end 2.06 2.24) (layer "F.SilkS") (width 0.12) (tstamp 6675a606-af83-439d-9098-14d6e6615b4c))
(fp_line (start -2.06 -2.24) (end -2.06 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 769ee2a1-b2c3-45f7-ba7b-c0cedb2d057f))
(fp_line (start 2.06 -6.06) (end 2.06 -5.76) (layer "F.SilkS") (width 0.12) (tstamp 7c1c5bf8-651f-4c21-b54b-7fff82c0fc17))
(fp_line (start -2.06 1.76) (end -2.06 2.24) (layer "F.SilkS") (width 0.12) (tstamp a8ef4bc5-cdad-4a9d-8288-bcd5d06215c5))
(fp_line (start 2.06 -2.24) (end 2.06 -1.76) (layer "F.SilkS") (width 0.12) (tstamp aeb1b42e-3073-49dc-a712-73cc1f029966))
(fp_line (start 2.06 -5.76) (end 4.44 -5.76) (layer "F.SilkS") (width 0.12) (tstamp c67b76fb-40dc-4634-a974-e37a14627317))
(fp_line (start -2.06 -4.24) (end -2.06 -3.76) (layer "F.SilkS") (width 0.12) (tstamp d15439a8-a2dd-4cea-9d24-fd75a9bcccef))
(fp_line (start -2.06 5.76) (end -2.06 6.06) (layer "F.SilkS") (width 0.12) (tstamp ea59dfcc-1216-42ae-a280-7dea5337566e))
(fp_line (start -2.06 -6.06) (end 2.06 -6.06) (layer "F.SilkS") (width 0.12) (tstamp f5207407-5dc6-4fe9-b92e-e2af9298b6ba))
(fp_line (start -5 -6.5) (end 5 -6.5) (layer "F.CrtYd") (width 0.05) (tstamp 07aed67e-2bd9-4587-a580-7d1ebc1b764d))
(fp_line (start 5 6.5) (end -5 6.5) (layer "F.CrtYd") (width 0.05) (tstamp 2e91e822-d6ce-40d5-a79b-c59fc35978c8))
(fp_line (start 5 -6.5) (end 5 6.5) (layer "F.CrtYd") (width 0.05) (tstamp 52ca5677-a18a-403d-bfab-ee5934a83008))
(fp_line (start -5 6.5) (end -5 -6.5) (layer "F.CrtYd") (width 0.05) (tstamp 981244b5-b00e-4166-b45f-da8840fd9c05))
(fp_line (start 2 -3.25) (end 3 -3.25) (layer "F.Fab") (width 0.1) (tstamp 0a8c9431-c442-4446-af96-dbc787b35f6c))
(fp_line (start 3 -0.75) (end 2 -0.75) (layer "F.Fab") (width 0.1) (tstamp 0cb5ddeb-926f-4802-9e26-9b89f16b2dfc))
(fp_line (start 1 -6) (end 2 -5) (layer "F.Fab") (width 0.1) (tstamp 0e84bae8-3496-461d-ad30-3be91cf0657f))
(fp_line (start -3 -4.75) (end -3 -5.25) (layer "F.Fab") (width 0.1) (tstamp 14eb86c9-8335-497a-a89e-c42f5b797b56))
(fp_line (start -3 4.75) (end -2 4.75) (layer "F.Fab") (width 0.1) (tstamp 1bd2031d-8130-4890-8bc5-548b63fe200b))
(fp_line (start -3 1.25) (end -3 0.75) (layer "F.Fab") (width 0.1) (tstamp 294f3896-4845-4f68-8a98-29ee8347101b))
(fp_line (start 2 -5.25) (end 3 -5.25) (layer "F.Fab") (width 0.1) (tstamp 2e4be236-f8f0-4ce9-845c-760f13cf495b))
(fp_line (start 3 5.25) (end 2 5.25) (layer "F.Fab") (width 0.1) (tstamp 2e716e9f-6eea-4cc9-bd17-5eea6cbc0e58))
(fp_line (start -3 -3.25) (end -2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 39665edb-0453-4608-9216-b9f90c7b4be8))
(fp_line (start 3 -2.75) (end 2 -2.75) (layer "F.Fab") (width 0.1) (tstamp 4ad424d6-8980-420a-a40a-4fefc1109bea))
(fp_line (start 3 4.75) (end 3 5.25) (layer "F.Fab") (width 0.1) (tstamp 52e6e8b7-6e07-4c95-b24c-d7a2830b3e35))
(fp_line (start -3 0.75) (end -2 0.75) (layer "F.Fab") (width 0.1) (tstamp 59a103fd-39e6-40a9-981b-dc6e1e6933ff))
(fp_line (start -2 -2.75) (end -3 -2.75) (layer "F.Fab") (width 0.1) (tstamp 63f08ae9-20db-4933-835a-fdedb310b6f1))
(fp_line (start 3 1.25) (end 2 1.25) (layer "F.Fab") (width 0.1) (tstamp 6b48c45b-2319-4ef5-989b-cf9abb40e27d))
(fp_line (start 2 -1.25) (end 3 -1.25) (layer "F.Fab") (width 0.1) (tstamp 70777359-0e73-418a-ad34-a60359ccced9))
(fp_line (start 2 0.75) (end 3 0.75) (layer "F.Fab") (width 0.1) (tstamp 7346e4d3-a509-4016-a68a-ac57a6180fae))
(fp_line (start 3 -3.25) (end 3 -2.75) (layer "F.Fab") (width 0.1) (tstamp 73ee5f92-0b91-489f-8941-c647b58e9a3d))
(fp_line (start -3 3.25) (end -3 2.75) (layer "F.Fab") (width 0.1) (tstamp 82a6ae2a-3de0-48f7-aafd-74bd09f98623))
(fp_line (start -2 3.25) (end -3 3.25) (layer "F.Fab") (width 0.1) (tstamp 92bf8e8f-543c-4d33-89a9-aa31a69fe251))
(fp_line (start -3 -5.25) (end -2 -5.25) (layer "F.Fab") (width 0.1) (tstamp 9779bfd3-d6dc-417d-9d5c-2782b7827cea))
(fp_line (start 3 3.25) (end 2 3.25) (layer "F.Fab") (width 0.1) (tstamp 9aa8f459-4938-44ba-8e11-4d435797bc42))
(fp_line (start 3 2.75) (end 3 3.25) (layer "F.Fab") (width 0.1) (tstamp 9f04f509-90e0-4d54-86dc-74905d465429))
(fp_line (start 2 6) (end -2 6) (layer "F.Fab") (width 0.1) (tstamp a00a249f-a49f-4051-b12c-c7f17eced8a4))
(fp_line (start -2 -0.75) (end -3 -0.75) (layer "F.Fab") (width 0.1) (tstamp a0dcfa43-cb74-4b18-9ad5-80709c5f2843))
(fp_line (start 3 0.75) (end 3 1.25) (layer "F.Fab") (width 0.1) (tstamp a60b282a-f5d6-4160-a736-17ae751f6a59))
(fp_line (start 3 -5.25) (end 3 -4.75) (layer "F.Fab") (width 0.1) (tstamp a8d1462d-e503-43b7-a3b1-208492781187))
(fp_line (start -3 -0.75) (end -3 -1.25) (layer "F.Fab") (width 0.1) (tstamp acf36521-3da0-42cd-87cd-d5059059453b))
(fp_line (start -3 -2.75) (end -3 -3.25) (layer "F.Fab") (width 0.1) (tstamp b0c5635f-c6d6-4aee-8896-d97d7698c5a1))
(fp_line (start 3 -4.75) (end 2 -4.75) (layer "F.Fab") (width 0.1) (tstamp b5ed4c41-3077-43f2-949b-d80f153749c7))
(fp_line (start 2 4.75) (end 3 4.75) (layer "F.Fab") (width 0.1) (tstamp ca114b99-4d83-44d8-9814-db215c576a55))
(fp_line (start -2 -4.75) (end -3 -4.75) (layer "F.Fab") (width 0.1) (tstamp cbc8f0b2-b72a-4a12-ad97-068a914b18b9))
(fp_line (start -2 5.25) (end -3 5.25) (layer "F.Fab") (width 0.1) (tstamp d649ba6f-ddb6-472a-9f47-06837aa6576c))
(fp_line (start 2 2.75) (end 3 2.75) (layer "F.Fab") (width 0.1) (tstamp dca3bca0-b0ef-4829-b942-31d4c104786f))
(fp_line (start -3 2.75) (end -2 2.75) (layer "F.Fab") (width 0.1) (tstamp e0adeb5c-df7c-433f-9e5d-6f4b72671cce))
(fp_line (start -2 6) (end -2 -6) (layer "F.Fab") (width 0.1) (tstamp e32f54ec-8562-4a5e-bf6f-879e19923281))
(fp_line (start 2 -5) (end 2 6) (layer "F.Fab") (width 0.1) (tstamp e4566bb5-f372-4381-80f5-83c420a50487))
(fp_line (start -2 1.25) (end -3 1.25) (layer "F.Fab") (width 0.1) (tstamp ebf5b925-633c-43bc-b5c3-03a9639ede6a))
(fp_line (start -3 5.25) (end -3 4.75) (layer "F.Fab") (width 0.1) (tstamp eea829e3-0f1d-434f-8f8e-1d294b7aa16b))
(fp_line (start 3 -1.25) (end 3 -0.75) (layer "F.Fab") (width 0.1) (tstamp f78762e8-ed12-4780-85cb-95dc7493d3da))
(fp_line (start -2 -6) (end 1 -6) (layer "F.Fab") (width 0.1) (tstamp f828d28b-bb07-41e8-a28e-12d9212eee7f))
(fp_line (start -3 -1.25) (end -2 -1.25) (layer "F.Fab") (width 0.1) (tstamp fa16f3ab-60b0-407e-ba75-2839523bcc58))
(pad "1" smd rect locked (at 3.125 -5) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 55ddcdbe-c806-4694-80f7-c07ec0ee3a89))
(pad "2" smd rect locked (at -3.125 -5) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/PWM0") (pinfunction "Pin_2") (pintype "passive") (tstamp 1088f40c-42b8-45df-9ec2-f00e972bcec9))
(pad "3" smd rect locked (at 3.125 -3) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/PWM1") (pinfunction "Pin_3") (pintype "passive") (tstamp 45f37492-1caa-4191-a390-118c2f48a49a))
(pad "4" smd rect locked (at -3.125 -3) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp 1e797317-7528-4229-9e23-af746fe7cba9))
(pad "5" smd rect locked (at 3.125 -1) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 87 "/N76E003s (PWM + ADC + IO)/IO4") (pinfunction "Pin_5") (pintype "passive") (tstamp f1f5b3ac-fd1a-4a44-bd6c-c56028a91f5b))
(pad "6" smd rect locked (at -3.125 -1) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "/IO14") (pinfunction "Pin_6") (pintype "passive") (tstamp d6c3dde6-3642-4699-a53f-a6d8d65033b7))
(pad "7" smd rect locked (at 3.125 1) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 4e2397f5-bc5a-412d-91b4-9c1066ededdf))
(pad "8" smd rect locked (at -3.125 1) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "/ANA2") (pinfunction "Pin_8") (pintype "passive") (tstamp b34d95c4-11b7-4fd6-a57a-ac928379b843))
(pad "9" smd rect locked (at 3.125 3) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "/ANA1") (pinfunction "Pin_9") (pintype "passive") (tstamp 69c59548-e77c-4b1b-b678-28f236dedd16))
(pad "10" smd rect locked (at -3.125 3) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "/ANA0") (pinfunction "Pin_10") (pintype "passive") (tstamp 9d0a8f6e-2ce0-4379-aa18-3875b7848423))
(pad "11" smd rect locked (at 3.125 5) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "/IO15") (pinfunction "Pin_11") (pintype "passive") (tstamp 2ac95aaa-48f0-4796-85dc-3dbe9186abcd))
(pad "12" smd rect locked (at -3.125 5) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "/IO13") (pinfunction "Pin_12") (pintype "passive") (tstamp df9aa333-bdf2-4d2b-b5cb-a9ea954fb137))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.00mm.3dshapes/PinSocket_2x06_P2.00mm_Vertical_SMD.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.00mm:PinSocket_2x07_P2.00mm_Vertical_SMD" (layer "F.Cu")
(tedit 5A19A42D) (tstamp 59ee568a-599b-4f55-acbc-cd376f29701a)
(at 94 63.5)
(descr "surface-mounted straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Surface mounted socket strip SMD 2x07 2.00mm double row")
(property "Sheetfile" "Fichier: n76e003s.kicad_sch")
(property "Sheetname" "N76E003s (PWM + ADC + IO)")
(path "/d71e87ed-80a4-4405-b430-b84b6b85f08f/99d09057-b3cc-4447-b1bd-6f8e1da97284")
(attr smd)
(fp_text reference "J7" (at 0 -8.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e122b003-52f2-4bff-8627-aa4617c500b6)
)
(fp_text value "Conn_02x07_Counter_Clockwise" (at 0 8.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d5bbefc-0e15-4238-86ad-6912c99ce2ca)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef2fdde1-01fb-4b5f-a1e9-e0fdec619321)
)
(fp_line (start -2.06 -3.24) (end -2.06 -2.76) (layer "F.SilkS") (width 0.12) (tstamp 0c0f7538-da67-4975-8ced-888abd052188))
(fp_line (start -2.06 4.76) (end -2.06 5.24) (layer "F.SilkS") (width 0.12) (tstamp 16a42b51-eb93-4f55-acdb-bfe54c432f4c))
(fp_line (start -2.06 0.76) (end -2.06 1.24) (layer "F.SilkS") (width 0.12) (tstamp 1aa414fa-ff74-46d3-a241-263149750a72))
(fp_line (start 2.06 4.76) (end 2.06 5.24) (layer "F.SilkS") (width 0.12) (tstamp 2c75d006-daf4-4a29-bbb7-344d765bbacb))
(fp_line (start -2.06 7.06) (end 2.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp 3264f73f-9ef1-4700-a1e6-bf0a12d24afd))
(fp_line (start 2.06 -3.24) (end 2.06 -2.76) (layer "F.SilkS") (width 0.12) (tstamp 32c997ea-c746-48c1-81bd-8c81125a74ca))
(fp_line (start -2.06 2.76) (end -2.06 3.24) (layer "F.SilkS") (width 0.12) (tstamp 3861163b-48e3-40fb-a5cf-3e9f63b5d4ac))
(fp_line (start 2.06 -7.06) (end 2.06 -6.76) (layer "F.SilkS") (width 0.12) (tstamp 596f1f88-3eb1-4a42-999a-d7b89b4d2640))
(fp_line (start 2.06 -6.76) (end 4.44 -6.76) (layer "F.SilkS") (width 0.12) (tstamp 5a7c6525-4f39-4421-807f-e5eab10347cb))
(fp_line (start -2.06 -5.24) (end -2.06 -4.76) (layer "F.SilkS") (width 0.12) (tstamp 63802a89-f144-4059-baa5-628af483f6db))
(fp_line (start -2.06 6.76) (end -2.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp 66e5d2d8-b0e4-46df-8f97-cdf9702c9d5d))
(fp_line (start 2.06 0.76) (end 2.06 1.24) (layer "F.SilkS") (width 0.12) (tstamp 9fc12efe-4911-4e64-9a5b-41e0ffa8157a))
(fp_line (start 2.06 -1.24) (end 2.06 -0.76) (layer "F.SilkS") (width 0.12) (tstamp a2e85824-f14b-4f24-a347-d5bd9dd7f0b9))
(fp_line (start 2.06 2.76) (end 2.06 3.24) (layer "F.SilkS") (width 0.12) (tstamp b787f150-5ecd-4251-a43d-56c13d192e9e))
(fp_line (start -2.06 -1.24) (end -2.06 -0.76) (layer "F.SilkS") (width 0.12) (tstamp c9e1e6d4-94bd-4de1-8373-3ea50cfed0e4))
(fp_line (start 2.06 6.76) (end 2.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp cce69031-be02-4b60-a892-e3beadc6a871))
(fp_line (start -2.06 -7.06) (end -2.06 -6.76) (layer "F.SilkS") (width 0.12) (tstamp d4fe4086-0947-47ca-b46b-5f79d73a2214))
(fp_line (start -2.06 -7.06) (end 2.06 -7.06) (layer "F.SilkS") (width 0.12) (tstamp d9fea8b6-7337-4b87-99ad-f0a5c0e61722))
(fp_line (start 2.06 -5.24) (end 2.06 -4.76) (layer "F.SilkS") (width 0.12) (tstamp e5ab090a-f829-414a-bee7-d324a8a7630d))
(fp_line (start -5 -7.5) (end 5 -7.5) (layer "F.CrtYd") (width 0.05) (tstamp 7126ad46-0492-450f-9866-b6be72f1e1d9))
(fp_line (start 5 7.5) (end -5 7.5) (layer "F.CrtYd") (width 0.05) (tstamp be7ac166-be14-487f-8122-b6677f912163))
(fp_line (start -5 7.5) (end -5 -7.5) (layer "F.CrtYd") (width 0.05) (tstamp d9294744-db8c-465d-871c-1558e085f2c9))
(fp_line (start 5 -7.5) (end 5 7.5) (layer "F.CrtYd") (width 0.05) (tstamp f0245ee2-f650-40e1-92ea-6ace7606e884))
(fp_line (start -2 -1.75) (end -3 -1.75) (layer "F.Fab") (width 0.1) (tstamp 0c4d6973-5fa4-452d-8dc9-ddfe31dbed63))
(fp_line (start -3 -0.25) (end -2 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1cc7ead9-2b53-4098-9723-31604657e144))
(fp_line (start 3 -3.75) (end 2 -3.75) (layer "F.Fab") (width 0.1) (tstamp 29659805-3f95-4101-bd82-36a4d9be8d6a))
(fp_line (start 3 -1.75) (end 2 -1.75) (layer "F.Fab") (width 0.1) (tstamp 2fff7a1c-d80b-48ef-ac6f-00112bb089d6))
(fp_line (start -3 0.25) (end -3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 31940a60-45f0-44d3-84f8-635e836af5ef))
(fp_line (start 3 1.75) (end 3 2.25) (layer "F.Fab") (width 0.1) (tstamp 3a96dcb5-766a-432d-a7c6-e7d722edd855))
(fp_line (start -2 0.25) (end -3 0.25) (layer "F.Fab") (width 0.1) (tstamp 3b3e01db-9ccc-443f-89d8-0362b7504351))
(fp_line (start 3 3.75) (end 3 4.25) (layer "F.Fab") (width 0.1) (tstamp 3ebd0fac-b139-4791-88d5-4f72e4a4ecb5))
(fp_line (start 2 -6) (end 2 7) (layer "F.Fab") (width 0.1) (tstamp 45c0af67-3dfd-4883-91f1-8f7691a41d1c))
(fp_line (start -3 3.75) (end -2 3.75) (layer "F.Fab") (width 0.1) (tstamp 5222789b-7e60-4d8a-8613-236482660899))
(fp_line (start -3 -4.25) (end -2 -4.25) (layer "F.Fab") (width 0.1) (tstamp 52be8285-3aa8-4be6-bb4e-3e89d6747cd3))
(fp_line (start -3 4.25) (end -3 3.75) (layer "F.Fab") (width 0.1) (tstamp 5831a372-3120-4466-a374-52b3066db26a))
(fp_line (start -3 -3.75) (end -3 -4.25) (layer "F.Fab") (width 0.1) (tstamp 5b7ce8bb-b7f5-4269-a93c-795e12366992))
(fp_line (start -3 -6.25) (end -2 -6.25) (layer "F.Fab") (width 0.1) (tstamp 5fadc52e-8ae0-46bd-b97e-62f0bd1ff53f))
(fp_line (start -2 -5.75) (end -3 -5.75) (layer "F.Fab") (width 0.1) (tstamp 61fd0242-2d2b-4f3d-9d6f-551495370afc))
(fp_line (start 2 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp 6275ba8d-974e-427c-a453-41544f477236))
(fp_line (start -3 6.25) (end -3 5.75) (layer "F.Fab") (width 0.1) (tstamp 6512e129-5a5c-419e-98e0-c4c5d895e966))
(fp_line (start -2 6.25) (end -3 6.25) (layer "F.Fab") (width 0.1) (tstamp 6617ac64-b21c-4272-8294-9aa19f71340a))
(fp_line (start 3 4.25) (end 2 4.25) (layer "F.Fab") (width 0.1) (tstamp 6bac31c9-2af4-4b44-8076-547dda2a1e3b))
(fp_line (start 3 -6.25) (end 3 -5.75) (layer "F.Fab") (width 0.1) (tstamp 6c7262a3-d869-423b-935c-a81423ca0d90))
(fp_line (start 3 0.25) (end 2 0.25) (layer "F.Fab") (width 0.1) (tstamp 6d3e44c9-2b61-43f7-ba18-bebb5b141be9))
(fp_line (start -2 2.25) (end -3 2.25) (layer "F.Fab") (width 0.1) (tstamp 75dc6657-cc79-4247-b93c-ff83877a4f8c))
(fp_line (start -2 -3.75) (end -3 -3.75) (layer "F.Fab") (width 0.1) (tstamp 7aec7d0c-7e19-41c0-aab3-ae5281528a7b))
(fp_line (start 2 5.75) (end 3 5.75) (layer "F.Fab") (width 0.1) (tstamp 82d2c75c-53a6-4858-9cb5-93c7e9f6480f))
(fp_line (start -3 1.75) (end -2 1.75) (layer "F.Fab") (width 0.1) (tstamp 82f7f537-4272-42a9-b2f8-3a4f09689a93))
(fp_line (start 3 5.75) (end 3 6.25) (layer "F.Fab") (width 0.1) (tstamp 83421515-6504-4ce9-acc9-493283350296))
(fp_line (start 2 -0.25) (end 3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 8f0e1be2-6e2f-4194-a91b-cd6e334f721e))
(fp_line (start -3 5.75) (end -2 5.75) (layer "F.Fab") (width 0.1) (tstamp 917f3d35-c864-4e94-ad07-5a4bd98a9dcf))
(fp_line (start -3 2.25) (end -3 1.75) (layer "F.Fab") (width 0.1) (tstamp 91ffcfc7-308b-4420-b9a5-235f7e39d446))
(fp_line (start -2 4.25) (end -3 4.25) (layer "F.Fab") (width 0.1) (tstamp 92a292fb-e2a3-4588-8903-374020972d49))
(fp_line (start 1 -7) (end 2 -6) (layer "F.Fab") (width 0.1) (tstamp 9b8b2c90-c953-48cb-a8b6-cc68cde2f475))
(fp_line (start 3 -0.25) (end 3 0.25) (layer "F.Fab") (width 0.1) (tstamp a251597d-9d4b-4a65-ad75-619e9a661af0))
(fp_line (start 3 -2.25) (end 3 -1.75) (layer "F.Fab") (width 0.1) (tstamp a3f5a50c-55f7-4f9b-8eb5-ebf29e1c39ec))
(fp_line (start -2 -7) (end 1 -7) (layer "F.Fab") (width 0.1) (tstamp b3c01a4d-776b-4d6d-844f-927386c138db))
(fp_line (start -3 -1.75) (end -3 -2.25) (layer "F.Fab") (width 0.1) (tstamp b7cd5d25-dd5f-4c4c-b82b-5621547e107d))
(fp_line (start 3 -4.25) (end 3 -3.75) (layer "F.Fab") (width 0.1) (tstamp c693ff32-51b5-418d-9098-f67496bb3f42))
(fp_line (start 3 -5.75) (end 2 -5.75) (layer "F.Fab") (width 0.1) (tstamp c7a904a4-68ae-40da-9667-4e18c359e9aa))
(fp_line (start 2 -4.25) (end 3 -4.25) (layer "F.Fab") (width 0.1) (tstamp c9d35cd4-32dc-416d-9574-740974aced2c))
(fp_line (start 2 -6.25) (end 3 -6.25) (layer "F.Fab") (width 0.1) (tstamp ca4b34c5-01b7-425b-ba93-157239c88165))
(fp_line (start 3 2.25) (end 2 2.25) (layer "F.Fab") (width 0.1) (tstamp cd274e28-1f7b-4437-b4ba-b7b3931e7079))
(fp_line (start 2 -2.25) (end 3 -2.25) (layer "F.Fab") (width 0.1) (tstamp d06019ca-0036-41a0-9758-7f0168e0b1c5))
(fp_line (start 3 6.25) (end 2 6.25) (layer "F.Fab") (width 0.1) (tstamp d09c5150-bb6c-4cbd-9777-bc80301fd7df))
(fp_line (start -2 7) (end -2 -7) (layer "F.Fab") (width 0.1) (tstamp e3da1714-0f2a-4024-84cb-d67e043073e3))
(fp_line (start -3 -5.75) (end -3 -6.25) (layer "F.Fab") (width 0.1) (tstamp ef850b3d-e2b6-4372-9de2-5078eba5038d))
(fp_line (start 2 3.75) (end 3 3.75) (layer "F.Fab") (width 0.1) (tstamp f3876c3a-5035-49a4-94b3-24965dfb7ac1))
(fp_line (start -3 -2.25) (end -2 -2.25) (layer "F.Fab") (width 0.1) (tstamp fce63e77-3731-400d-8aa2-6657455da32a))
(fp_line (start 2 7) (end -2 7) (layer "F.Fab") (width 0.1) (tstamp fe9ef084-e692-49e1-9314-39e48e5afc0c))
(pad "1" smd rect locked (at 3.125 -6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 11945f37-b8a0-4e37-9093-75d97fdc589a))
(pad "2" smd rect locked (at -3.125 -6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/PWM0") (pinfunction "Pin_2") (pintype "passive") (tstamp 8398cca0-14eb-4e18-af4c-5a9a0c964300))
(pad "3" smd rect locked (at 3.125 -4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/PWM1") (pinfunction "Pin_3") (pintype "passive") (tstamp 189f1095-527f-4e5b-8642-ada77b814456))
(pad "4" smd rect locked (at -3.125 -4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "/PWM3") (pinfunction "Pin_4") (pintype "passive") (tstamp 74aa5b71-73dd-4991-af30-bc43d4b297cc))
(pad "5" smd rect locked (at 3.125 -2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "/PWM2") (pinfunction "Pin_5") (pintype "passive") (tstamp b54057e8-9145-4c1c-9a69-0998c225ab8e))
(pad "6" smd rect locked (at -3.125 -2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 95 "/N76E003s (PWM + ADC + IO)/IO5") (pinfunction "Pin_6") (pintype "passive") (tstamp 483ff478-aeee-4009-b468-0002a848ad71))
(pad "7" smd rect locked (at 3.125 0) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "+3V3") (pinfunction "Pin_7") (pintype "passive") (tstamp 83cd56aa-fa48-4ded-8854-81e41507edf3))
(pad "8" smd rect locked (at -3.125 0) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 18b5af23-ec3e-42c5-ac87-018e5c940f99))
(pad "9" smd rect locked (at 3.125 2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 96 "/N76E003s (PWM + ADC + IO)/MUX_CH29") (pinfunction "Pin_9") (pintype "passive") (tstamp f3dfb7af-aa66-4e07-a1f9-5785a579e2b7))
(pad "10" smd rect locked (at -3.125 2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 97 "/N76E003s (PWM + ADC + IO)/MUX_CH28") (pinfunction "Pin_10") (pintype "passive") (tstamp e810873f-c10d-4b07-80d2-15f7e473e72e))
(pad "11" smd rect locked (at 3.125 4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 98 "/N76E003s (PWM + ADC + IO)/MUX_CH27") (pinfunction "Pin_11") (pintype "passive") (tstamp 26798352-67bc-41a2-9eae-80e8882f156f))
(pad "12" smd rect locked (at -3.125 4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 99 "/N76E003s (PWM + ADC + IO)/MUX_CH26") (pinfunction "Pin_12") (pintype "passive") (tstamp 31b3c53a-5b45-45bb-8d34-ddc68f91ae15))
(pad "13" smd rect locked (at 3.125 6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 100 "/N76E003s (PWM + ADC + IO)/MUX_CH25") (pinfunction "Pin_13") (pintype "passive") (tstamp 2ea3d443-c3ed-4a3e-8a40-7bd98d8ff3c1))
(pad "14" smd rect locked (at -3.125 6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 101 "/N76E003s (PWM + ADC + IO)/MUX_CH24") (pinfunction "Pin_14") (pintype "passive") (tstamp d008e37e-4282-41c7-bf65-ebe40800650e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.00mm.3dshapes/PinSocket_2x07_P2.00mm_Vertical_SMD.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.00mm:PinSocket_2x07_P2.00mm_Vertical_SMD" (layer "F.Cu")
(tedit 5A19A42D) (tstamp 655a9ee2-fbdb-495b-93d0-40b7e4f71906)
(at 82 63.5)
(descr "surface-mounted straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Surface mounted socket strip SMD 2x07 2.00mm double row")
(property "Sheetfile" "Fichier: n76e003s.kicad_sch")
(property "Sheetname" "N76E003s (PWM + ADC + IO)")
(path "/d71e87ed-80a4-4405-b430-b84b6b85f08f/518c350d-e830-47ad-8e10-d6b1d1e932f2")
(attr smd)
(fp_text reference "J5" (at 0 -8.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c565ad43-fe0f-49ed-bbce-1e78eae996d6)
)
(fp_text value "Conn_02x07_Counter_Clockwise" (at 0 8.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 894b77bd-98b5-48dc-8eda-19f1eaa6b783)
)
(fp_text user "${REFERENCE}" (at 2.4875 12.4375) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67eab39e-11f9-4fdb-820d-dac3c4b25748)
)
(fp_line (start 2.06 -6.76) (end 4.44 -6.76) (layer "F.SilkS") (width 0.12) (tstamp 03f23079-5166-4a62-b0b3-a9a25af60f0b))
(fp_line (start 2.06 -5.24) (end 2.06 -4.76) (layer "F.SilkS") (width 0.12) (tstamp 1d600cfd-a475-4a55-b0ee-aa8eaa6e8438))
(fp_line (start -2.06 0.76) (end -2.06 1.24) (layer "F.SilkS") (width 0.12) (tstamp 1df6aba4-dd5c-46dc-8007-320bd831038d))
(fp_line (start 2.06 0.76) (end 2.06 1.24) (layer "F.SilkS") (width 0.12) (tstamp 2fb76287-4b27-4b5b-989f-e88d1f56c744))
(fp_line (start 2.06 -7.06) (end 2.06 -6.76) (layer "F.SilkS") (width 0.12) (tstamp 359d274a-5704-4dcf-b268-8018e24123d1))
(fp_line (start -2.06 2.76) (end -2.06 3.24) (layer "F.SilkS") (width 0.12) (tstamp 476b19e3-4ba2-4211-b166-0dd5306ad746))
(fp_line (start -2.06 4.76) (end -2.06 5.24) (layer "F.SilkS") (width 0.12) (tstamp 4afab244-9449-4ee1-a298-29e5f607b780))
(fp_line (start -2.06 7.06) (end 2.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp 6572be6a-e54b-4e13-b60f-572a7c0c8bc6))
(fp_line (start -2.06 -3.24) (end -2.06 -2.76) (layer "F.SilkS") (width 0.12) (tstamp 9ac97de8-4151-465d-aa55-fb9a3c65a79b))
(fp_line (start 2.06 6.76) (end 2.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp 9d4c4a73-b9ef-42aa-bb9b-51b50069cf4c))
(fp_line (start -2.06 -7.06) (end -2.06 -6.76) (layer "F.SilkS") (width 0.12) (tstamp add360ba-870c-4aa7-a1c1-4c758d7f5be9))
(fp_line (start 2.06 2.76) (end 2.06 3.24) (layer "F.SilkS") (width 0.12) (tstamp b5b6b2d0-86ef-4db1-8921-3baadb5b1005))
(fp_line (start 2.06 4.76) (end 2.06 5.24) (layer "F.SilkS") (width 0.12) (tstamp c20f7d30-5dcd-4da6-8499-1fd9bdda8fc0))
(fp_line (start -2.06 -1.24) (end -2.06 -0.76) (layer "F.SilkS") (width 0.12) (tstamp c3c85425-bf9a-46ba-b149-1fe47f1a56a8))
(fp_line (start -2.06 -5.24) (end -2.06 -4.76) (layer "F.SilkS") (width 0.12) (tstamp dd328084-c475-42c3-b02f-7a928b319056))
(fp_line (start -2.06 -7.06) (end 2.06 -7.06) (layer "F.SilkS") (width 0.12) (tstamp ecd31ff0-50a7-43ae-9e85-c966e8d43dec))
(fp_line (start 2.06 -1.24) (end 2.06 -0.76) (layer "F.SilkS") (width 0.12) (tstamp f7030d11-a168-4d5f-8437-2eeb208d9b5d))
(fp_line (start 2.06 -3.24) (end 2.06 -2.76) (layer "F.SilkS") (width 0.12) (tstamp f7f9f74e-52d3-446f-b909-6e9300995a65))
(fp_line (start -2.06 6.76) (end -2.06 7.06) (layer "F.SilkS") (width 0.12) (tstamp f853ed52-c0fa-4638-9940-b2bb550dfe50))
(fp_line (start 5 -7.5) (end 5 7.5) (layer "F.CrtYd") (width 0.05) (tstamp 6113bb2b-5997-4c7f-8ed8-fd41584390fd))
(fp_line (start -5 7.5) (end -5 -7.5) (layer "F.CrtYd") (width 0.05) (tstamp a386bbd5-afbe-4746-be8e-d81b8c918ee3))
(fp_line (start 5 7.5) (end -5 7.5) (layer "F.CrtYd") (width 0.05) (tstamp b49eb659-1a08-4bcf-a2db-d48f65d9f21c))
(fp_line (start -5 -7.5) (end 5 -7.5) (layer "F.CrtYd") (width 0.05) (tstamp c2be5ec9-531f-4ae7-a6b4-0230ad101da1))
(fp_line (start 2 3.75) (end 3 3.75) (layer "F.Fab") (width 0.1) (tstamp 011ecd3a-e25e-4762-b747-4117c86dad9d))
(fp_line (start -2 0.25) (end -3 0.25) (layer "F.Fab") (width 0.1) (tstamp 02618217-5dee-4734-90f7-66ef310fc66f))
(fp_line (start 3 0.25) (end 2 0.25) (layer "F.Fab") (width 0.1) (tstamp 045df697-034d-4145-8027-fa6ea44431ff))
(fp_line (start -2 -7) (end 1 -7) (layer "F.Fab") (width 0.1) (tstamp 06830630-d26d-4fd7-991a-6c720759240f))
(fp_line (start 2 -6.25) (end 3 -6.25) (layer "F.Fab") (width 0.1) (tstamp 0b7011b9-271b-4e3d-be80-f51151c7f401))
(fp_line (start 2 -0.25) (end 3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 2ac1b9d5-c64c-45a2-932a-1d205f90b0aa))
(fp_line (start -3 -0.25) (end -2 -0.25) (layer "F.Fab") (width 0.1) (tstamp 2f06d9da-7df7-49ab-b406-9830885a2de7))
(fp_line (start 3 2.25) (end 2 2.25) (layer "F.Fab") (width 0.1) (tstamp 328d165e-1789-48e5-b420-1e58e0582531))
(fp_line (start 3 -2.25) (end 3 -1.75) (layer "F.Fab") (width 0.1) (tstamp 36b97f77-926a-451d-b9e8-e09a0d9359ea))
(fp_line (start 2 7) (end -2 7) (layer "F.Fab") (width 0.1) (tstamp 3abda3bf-4727-4d46-b160-695e18751f9f))
(fp_line (start -3 4.25) (end -3 3.75) (layer "F.Fab") (width 0.1) (tstamp 3ac0b812-e351-4f5c-8928-a161d67f6caa))
(fp_line (start -2 -1.75) (end -3 -1.75) (layer "F.Fab") (width 0.1) (tstamp 3bf1906c-4a67-4112-88f7-89f0f9c8b920))
(fp_line (start 2 -2.25) (end 3 -2.25) (layer "F.Fab") (width 0.1) (tstamp 4d12e9d9-7eb8-4689-b02d-69852582d5b4))
(fp_line (start 3 5.75) (end 3 6.25) (layer "F.Fab") (width 0.1) (tstamp 50651498-8051-4a4a-95d1-7abd02047675))
(fp_line (start 2 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp 5192a465-3b81-446b-a107-92705beb6d16))
(fp_line (start 2 5.75) (end 3 5.75) (layer "F.Fab") (width 0.1) (tstamp 52214f52-d902-4eab-9d43-beaa495455a9))
(fp_line (start -3 3.75) (end -2 3.75) (layer "F.Fab") (width 0.1) (tstamp 54c5665f-a387-47c0-be89-edba2e4ba6f9))
(fp_line (start 3 -1.75) (end 2 -1.75) (layer "F.Fab") (width 0.1) (tstamp 5771c1a7-e754-4f48-8299-076e4b0f5053))
(fp_line (start -3 -2.25) (end -2 -2.25) (layer "F.Fab") (width 0.1) (tstamp 5d922d46-c39e-4a60-8c26-2f7100d587d1))
(fp_line (start 2 -6) (end 2 7) (layer "F.Fab") (width 0.1) (tstamp 62ef04d0-c408-4130-a79a-2570bfdade71))
(fp_line (start 3 6.25) (end 2 6.25) (layer "F.Fab") (width 0.1) (tstamp 64e8cbd8-e10b-4ed2-8788-b0bca859146b))
(fp_line (start 3 4.25) (end 2 4.25) (layer "F.Fab") (width 0.1) (tstamp 66f611b0-4cb0-4bc7-93ed-952f0be34ceb))
(fp_line (start -3 6.25) (end -3 5.75) (layer "F.Fab") (width 0.1) (tstamp 6b60d46f-7aea-40c6-9760-1ce1f7c14477))
(fp_line (start 3 -0.25) (end 3 0.25) (layer "F.Fab") (width 0.1) (tstamp 70ceabe9-336f-4ee8-8a49-729a58520a5b))
(fp_line (start -3 2.25) (end -3 1.75) (layer "F.Fab") (width 0.1) (tstamp 7d458036-f861-4562-94d1-fe3b89225623))
(fp_line (start -3 0.25) (end -3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7f570e3d-f99c-4ff5-bb7a-85bb894b20e0))
(fp_line (start 3 -3.75) (end 2 -3.75) (layer "F.Fab") (width 0.1) (tstamp 8348cfad-f69e-43fb-ba17-9c62c4b50b85))
(fp_line (start -3 -3.75) (end -3 -4.25) (layer "F.Fab") (width 0.1) (tstamp 8cb13ef0-d1b1-4421-b6c2-ca1ccae4ac4b))
(fp_line (start -3 -1.75) (end -3 -2.25) (layer "F.Fab") (width 0.1) (tstamp 9193394b-3e14-4e88-8a10-7f198a790ff1))
(fp_line (start -2 -3.75) (end -3 -3.75) (layer "F.Fab") (width 0.1) (tstamp 9a448262-9622-4c07-8bde-36b3cf513e31))
(fp_line (start 1 -7) (end 2 -6) (layer "F.Fab") (width 0.1) (tstamp 9f27b3d2-6510-48e4-92b1-0cc6b4431ff4))
(fp_line (start 3 -6.25) (end 3 -5.75) (layer "F.Fab") (width 0.1) (tstamp a14cd53c-0318-451f-b2ab-cdd50b5beb24))
(fp_line (start -2 4.25) (end -3 4.25) (layer "F.Fab") (width 0.1) (tstamp a26d5740-e423-41fd-80aa-10371bd28a63))
(fp_line (start -2 7) (end -2 -7) (layer "F.Fab") (width 0.1) (tstamp aefed872-57bd-48e0-ad12-713dece2b74f))
(fp_line (start -3 -5.75) (end -3 -6.25) (layer "F.Fab") (width 0.1) (tstamp b302f8dd-7eaf-4cd9-bbe2-9d3ad5d3d366))
(fp_line (start -2 2.25) (end -3 2.25) (layer "F.Fab") (width 0.1) (tstamp ba30257b-e7c5-4783-a1c1-a985473e5c62))
(fp_line (start -3 -6.25) (end -2 -6.25) (layer "F.Fab") (width 0.1) (tstamp befd5258-8959-406a-baee-8fbd916e2ce9))
(fp_line (start 3 1.75) (end 3 2.25) (layer "F.Fab") (width 0.1) (tstamp cd40e0c7-6908-4572-b308-1c94cc226455))
(fp_line (start 3 -4.25) (end 3 -3.75) (layer "F.Fab") (width 0.1) (tstamp ce204223-3519-4bb6-96ff-ff9ca77024dd))
(fp_line (start -2 -5.75) (end -3 -5.75) (layer "F.Fab") (width 0.1) (tstamp cf08887d-9726-4108-a5bb-4495c9bd721e))
(fp_line (start -3 5.75) (end -2 5.75) (layer "F.Fab") (width 0.1) (tstamp d23b197b-b4b3-478d-a7cf-111de38e2812))
(fp_line (start 2 -4.25) (end 3 -4.25) (layer "F.Fab") (width 0.1) (tstamp dd1884ef-6ee2-40af-b2e0-f1489eb5bb76))
(fp_line (start -3 1.75) (end -2 1.75) (layer "F.Fab") (width 0.1) (tstamp de3f71aa-3a1e-4269-9f38-21670e84c505))
(fp_line (start -2 6.25) (end -3 6.25) (layer "F.Fab") (width 0.1) (tstamp de7b638d-9ea1-40ae-b804-a2f40fee1090))
(fp_line (start -3 -4.25) (end -2 -4.25) (layer "F.Fab") (width 0.1) (tstamp e8591b95-d88c-4b08-bbca-522c81afd578))
(fp_line (start 3 3.75) (end 3 4.25) (layer "F.Fab") (width 0.1) (tstamp eec85375-4535-4542-8cde-11b46b56ac57))
(fp_line (start 3 -5.75) (end 2 -5.75) (layer "F.Fab") (width 0.1) (tstamp f1544dcf-ab2d-47bc-afb2-ba22a4e6f262))
(pad "1" smd rect locked (at 3.125 -6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 1a9a982d-1fa3-46eb-b4c0-f6c21b3f4d59))
(pad "2" smd rect locked (at -3.125 -6) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "/PWM2") (pinfunction "Pin_2") (pintype "passive") (tstamp e9f4d177-5389-4d43-9568-2ff012ee1229))
(pad "3" smd rect locked (at 3.125 -4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "/PWM3") (pinfunction "Pin_3") (pintype "passive") (tstamp 9fe14d53-1924-46c1-af0c-a11c3467f49f))
(pad "4" smd rect locked (at -3.125 -4) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "/N76E003s (PWM + ADC + IO)/PWM4") (pinfunction "Pin_4") (pintype "passive") (tstamp bd466348-9052-4106-bc0f-e92a29be4a51))
(pad "5" smd rect locked (at 3.125 -2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "/N76E003s (PWM + ADC + IO)/PWM5") (pinfunction "Pin_5") (pintype "passive") (tstamp 72f9d0a4-8de7-4643-940e-d0741e1a132f))
(pad "6" smd rect locked (at -3.125 -2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 88 "/N76E003s (PWM + ADC + IO)/IO6") (pinfunction "Pin_6") (pintype "passive") (tstamp d1c6f31f-4568-4851-927e-06e79655a9b6))
(pad "7" smd rect locked (at 3.125 0) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "+3V3") (pinfunction "Pin_7") (pintype "passive") (tstamp f656ea4d-f65e-46c4-8a4e-e69b31a7f703))
(pad "8" smd rect locked (at -3.125 0) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 2fd4822d-0ff5-45ff-859a-8279df4c3dcf))
(pad "9" smd rect locked (at 3.125 2) (size 2.75 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 89 "/N76E003s (PWM + ADC + IO)/MUX_CH23") (pinfunction "Pin_9") (pintype "passive") (tstamp 2a316812-9558-4f36-9af0-ea3b6e31a3f1))