-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathUDB.kicad_pcb
7850 lines (7800 loc) · 284 KB
/
UDB.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 20221018) (generator pcbnew)
(general
(thickness 1.6062)
)
(paper "User" 150.012 150.012)
(title_block
(title "Unified Daughterboard")
(date "2022-10-31")
(rev "C4-RC1")
(company "Designed by the UDB team")
)
(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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Black") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.2104) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 2" (type "prepreg") (thickness 1.065) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 3" (type "core") (thickness 0.2104) (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") (color "Black") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 80.7025 65.993)
(pcbplotparams
(layerselection 0x00310fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(J1-CC1)")
(net 3 "unconnected-(J1-SBU1-PadA8)")
(net 4 "Net-(J1-CC2)")
(net 5 "DP")
(net 6 "unconnected-(J1-SBU2-PadB8)")
(net 7 "DN")
(net 8 "VBUS")
(net 9 "VCOM")
(footprint "Fuse:Fuse_1206_3216Metric" (layer "F.Cu")
(tstamp 1cb607c3-ffab-4be2-a7cd-97617113efa8)
(at 67.8905 63.207 -90)
(descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC Part Number" "C135342")
(property "Manufacturer" "Shenzhen JDT Fuse")
(property "Manufacturer Part Number" "ASMD1206-150")
(property "Package" "F1206")
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resettable fuse, polymeric positive temperature coefficient")
(property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch")
(path "/00000000-0000-0000-0000-00005e78a38e")
(attr smd)
(fp_text reference "F1" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 0.635 0.635) (thickness 0.127)))
(tstamp 30453d80-c497-4077-8df2-47919dfce449)
)
(fp_text value "ASMD1206-150" (at -0.015 1.143 90) (layer "F.Fab")
(effects (font (size 0.254 0.254) (thickness 0.0635)))
(tstamp 9e682075-ec7b-4fea-9821-a33b53e382f6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 0ba0e6ca-9a54-40ef-ab1e-8cba9b25ecdc)
)
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46e861a3-7a4d-4f39-a150-1bc4bfc077a8))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ac33df0-235e-4a54-8760-00f0608b053e))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0f6ac89-a90f-44e0-b24b-65457a0b4f14))
(fp_line (start -2.28 1.12) (end -2.28 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ebc14bc-696e-47e3-a8df-f822b96e3644))
(fp_line (start 2.28 -1.12) (end 2.28 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47eb6398-4efa-4628-b698-3ea3c5d9ed19))
(fp_line (start 2.28 1.12) (end -2.28 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21f668ec-0a65-44ca-8183-82a3d9f5c9a4))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dc129554-79e7-451e-bcaa-0d33d2317d48))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8eb87b6a-fdea-4734-9f5f-2f15bcc7c8cd))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3aaa6ad3-6e4e-40c3-b1f3-db6886d1c7c1))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d6ce27a-2b3c-4d8e-8247-30b8488f9493))
(pad "1" smd roundrect (at -1.4 0 270) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 8 "VBUS") (pintype "passive") (tstamp 5e06f0a2-7213-43b2-ae63-92c9d5c3895a))
(pad "2" smd roundrect (at 1.4 0 270) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 9 "VCOM") (pintype "passive") (tstamp d70de7eb-69b4-4043-8e0b-b0c63ccc466c))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "random-keyboard-parts:Generic-Mounthole" (layer "F.Cu")
(tstamp 1fa19fe0-d155-440b-884e-7ac2f9e960b6)
(at 68.0045 71.043)
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00005c91ecc0")
(clearance 0.5)
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "MH3" (at 0 2) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39097002-076c-4a45-b2ae-67b641b19841)
)
(fp_text value "Mount-M2" (at 0 -2) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b994e95c-9bab-4467-b2bf-c5c61cb0cf18)
)
(pad "" np_thru_hole circle (at 0 0) (size 3.500001 3.500001) (drill 2.2) (layers "F.Cu" "F.Mask")
(clearance 0.508) (tstamp 6a268857-74e7-4974-be74-55552e2a1371))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 3f60449a-0961-4221-8640-15c88b660c7a)
(at 82.3025 65.993 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Package" "R0402")
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/00000000-0000-0000-0000-00005c91b0d9")
(attr smd)
(fp_text reference "R2" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7f6029d-2d2a-4172-b96a-f392464024dc)
)
(fp_text value "5.1k" (at -0.853 0) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.06)))
(tstamp 1e4c8333-4ef8-4c67-8e23-9793fdf302e8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp a58a3555-f68d-406c-b646-503198869de7)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbedcda3-99b0-40b4-b0c3-cb82c6dbe326))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c560ec76-2832-4d43-b38c-037d9dea73f2))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47b12e1a-04eb-4777-b5dc-785cb8321e83))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0745d8e9-061a-489e-a69e-45d0498998eb))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ee7dd8b-3226-482f-af0b-fd607e5c2b40))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6125323f-dfaf-47f3-9578-60a2701482f9))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b1fa6e5-a6f7-4713-9b48-1a40671baf49))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ccc5b6d-7609-4dee-a567-d4cd22f7d995))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 564308b9-5494-45af-8dd3-0de8cde3cd09))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 478ca5ca-f8b2-40f4-aeee-55d6187cc09e))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(J1-CC2)") (pintype "passive") (tstamp 569f2ac4-7565-49ba-abf3-773910c7be6d))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6d2a9d2d-5bef-49c0-8480-e6fadf954bf4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "random-keyboard-parts:Generic-Mounthole" (layer "F.Cu")
(tstamp 5113d870-f387-47c9-9a1f-39016d30f25d)
(at 68.0045 58.543)
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00005c91ec0e")
(clearance 0.5)
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "MH1" (at 0 2) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 125370ea-0135-4996-82ba-f8735c7f930e)
)
(fp_text value "Mount-M2" (at 0 -2) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ffe5308-afe2-4594-b697-dc19624928a6)
)
(pad "" np_thru_hole circle (at 0 0) (size 3.500001 3.500001) (drill 2.2) (layers "F.Cu" "F.Mask")
(clearance 0.508) (tstamp 60581764-681c-44ff-8d39-510cfe024877))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 5e88d555-10d3-4bff-ae1f-85d1d763b297)
(at 80.7025 65.993 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC Part Number" "C25905")
(property "Manufacturer" "Uniroyal")
(property "Manufacturer Part Number" "0402WGF5101TCE")
(property "Package" "R0402")
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/00000000-0000-0000-0000-00005c91b042")
(attr smd)
(fp_text reference "R1" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80b7c5e5-e1de-4e0b-86b2-550c6d88bd33)
)
(fp_text value "5.1k" (at -0.853 0) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.06)))
(tstamp b4ec9923-d305-4182-b5fe-5c98b3dec848)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp c45c718b-9d7a-4702-a063-821ee9b59424)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f82c2245-8591-457e-865e-59dfbfe9f317))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e83bb0f0-668d-4324-952c-2cd361c5b383))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b21b01a3-ee0d-4c13-9308-85a539da2edc))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1fbc9510-cb58-4f12-94e0-216c7d6847a4))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17ec001e-4cd4-4140-b551-b3a93db66d96))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f2d3c654-6375-4912-89cb-ec9a3fe084c8))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65c7d2e8-290f-404c-8942-abb5cc68b2e5))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9b66dd3-cfb1-465f-8d11-fd300ccf76b8))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9adb2050-5a6b-4044-91eb-9fd86cc1408f))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7bb64a47-b0fa-4235-978e-e1f0c6d31502))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(J1-CC1)") (pintype "passive") (tstamp 762053d6-0ef3-4102-8bda-ede1f245e461))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 9eac83c6-6d21-44cd-9d19-e91745f897d5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "random-keyboard-parts:Generic-Mounthole" (layer "F.Cu")
(tstamp 6b606cd7-3ade-4624-a32c-ab8826bd8b0c)
(at 82.0045 58.543)
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00005c91ec94")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "MH2" (at 0 2) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 093b6d14-2402-4da5-a66f-a5d1c6c6e278)
)
(fp_text value "Mount-M2" (at 0 -2) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 523342a1-ee85-4bc3-ac81-78991f5b1da8)
)
(pad "1" thru_hole circle (at 0 0) (size 3.500001 3.500001) (drill 2.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp e17af03a-c484-40c7-999c-86025ee9bb89))
)
(footprint "locallib:PicoEZMate-Reinforced-Alt" (layer "F.Cu")
(tstamp 7b045359-6334-4069-a149-a790c661c14e)
(at 75.0045 70.143)
(descr "Molex Pico-EZmate series connector, 78171-0004 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex Pico-EZmate side entry")
(property "LCSC Part Number" "C528030")
(property "Manufacturer" "XKB Connectivity")
(property "Manufacturer Part Number" "X1224WRS-04-LPV01")
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connectable mounting pin connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00005c91afcb")
(attr smd)
(fp_text reference "J2" (at 0 0.557) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa2e3da8-3e7b-4973-8d7b-c304bc435e64)
)
(fp_text value "X1224WRS-04-LPV01" (at 0 3.247) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.06)))
(tstamp f89176b0-7429-46d7-8686-ec40c8129cd5)
)
(fp_text user "${REFERENCE}" (at -0.0045 0.557) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41bbd8be-ead1-4198-a8fd-ae373961c532)
)
(fp_line (start -3.3 -2) (end -3.3 1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4937085f-0d61-47d4-b832-bbc8138e67af))
(fp_line (start -3.3 -2) (end -2.4 -2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27110d78-1f2c-47d8-ab72-8742c5dd487b))
(fp_line (start -2.4 -1.6) (end -3.3 -1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9127e557-cb41-421a-9a7c-6918e2ba5636))
(fp_line (start -2 2.5) (end -2.5 2.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 910ecbbb-ad05-4409-a756-18ba6362c8b5))
(fp_line (start -1.45 1.8) (end -2 2.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48abf06f-893c-4285-b4f4-875e8bc42def))
(fp_line (start 1.45 1.8) (end -1.45 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6afe4e8-83b8-45e0-a13a-a23cc6c9de19))
(fp_line (start 2 2.5) (end 1.45 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d371df1d-662d-4132-b7c0-10ddf50ac48a))
(fp_line (start 2 2.5) (end 2.5 2.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93968130-824c-4b83-9d2f-099ea40242b4))
(fp_line (start 2.4 -2) (end 3.3 -2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c82299d2-7491-4421-9885-ae7be0fcfeee))
(fp_line (start 3.3 -2) (end 3.3 1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b965d50-f5e6-4e02-af55-f86a36c21a24))
(fp_line (start 3.3 -1.6) (end 2.4 -1.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e2b9a71-2c59-4100-ab1f-c2ddcebb19fa))
(fp_circle (center -1.8 -1.041421) (end -1.7 -1.141421)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp e9af0adc-9b66-4493-95ba-91509b1f89c4))
(fp_rect (start -3.3 -2.1) (end 3.3 2.5)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 978aef92-aa1e-4cc7-9026-4c5f07ea0911))
(fp_line (start -3.3 -1.98) (end -3.3 2.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8993008-8eb5-440f-a306-beef7246c92f))
(fp_line (start -3.3 -1.98) (end 3.3 -1.98)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ae7c2ba-9957-4e6b-b865-78dfc6d340a4))
(fp_line (start -3.3 2.52) (end -1.95 2.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5da99b7a-06cb-455f-abb3-ee70567ae647))
(fp_line (start -2.3 -1.98) (end -1.8 -1.272893)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41b8e9c3-4a75-4b6f-8819-657847521dc7))
(fp_line (start -1.95 2.52) (end -1.65 2.02)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19b8405a-1bb5-4a9f-97d0-92d0796924fd))
(fp_line (start -1.8 -1.272893) (end -1.3 -1.98)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d143106a-d216-4e26-8f94-24bcaef0e684))
(fp_line (start -1.65 2.02) (end 1.65 2.02)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93eac6c9-e4e0-4047-ad1f-8772f053e616))
(fp_line (start 1.65 2.02) (end 1.95 2.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27e9a358-d8ef-4de2-bca7-ad617e744be8))
(fp_line (start 1.95 2.52) (end 3.3 2.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fffdaade-ede0-43c2-8100-82ae840dcbd7))
(fp_line (start 3.3 -1.98) (end 3.3 2.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d06b9ed6-1a98-4f7e-9ce8-55597a99e77c))
(pad "" smd roundrect (at -2.95 2) (size 0.7 1) (layers "F.Paste" "F.Mask") (roundrect_rratio 0.1428571429) (tstamp c691b77c-54ab-4e03-8616-454e50236ce0))
(pad "" smd roundrect (at -1.8 -2) (size 0.75 1.2) (layers "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667) (tstamp 49a785d3-9ead-40d7-a229-6d59cc09c1a7))
(pad "" smd roundrect (at -0.6 -2) (size 0.75 1.2) (layers "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667) (tstamp cbda9130-ea35-4d9f-97b8-24c9670353dd))
(pad "" smd roundrect (at 0.6 -2) (size 0.75 1.2) (layers "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667) (tstamp b029d36d-7b57-494d-9b3c-45006f9ebf03))
(pad "" smd roundrect (at 1.8 -2) (size 0.75 1.2) (layers "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667) (tstamp 944e212a-577f-4d91-a8e4-7f423e5c286a))
(pad "" smd roundrect (at 2.95 2) (size 0.7 1) (layers "F.Paste" "F.Mask") (roundrect_rratio 0.1428571429) (tstamp 483fda9e-465b-4a84-8abb-12ea2e317303))
(pad "1" smd roundrect (at -1.8 -1.95) (size 1 1.3) (layers "F.Cu") (roundrect_rratio 0.166667)
(net 9 "VCOM") (pinfunction "Pin_1") (pintype "passive") (tstamp 093658f8-99f0-473b-a476-a2d4985efcfa))
(pad "2" smd roundrect (at -0.6 -1.95) (size 1 1.3) (layers "F.Cu") (roundrect_rratio 0.166667)
(net 7 "DN") (pinfunction "Pin_2") (pintype "passive") (tstamp 4b6d11e4-6bb8-46c4-922e-4c4f14e0b85b))
(pad "3" smd roundrect (at 0.6 -1.95) (size 1 1.3) (layers "F.Cu") (roundrect_rratio 0.166667)
(net 5 "DP") (pinfunction "Pin_3") (pintype "passive") (tstamp 0e9dd965-bfc2-4489-a851-e8e072abb705))
(pad "4" smd roundrect (at 1.8 -1.95) (size 1 1.3) (layers "F.Cu") (roundrect_rratio 0.166667)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp e1c58c1b-d019-4b96-8276-0a98d5819aa8))
(pad "MP" thru_hole circle (at -3 0.8) (size 0.6 0.6) (drill 0.4) (layers "*.Cu")
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 22273ec5-6772-464c-9b92-925fe5692189))
(pad "MP" smd roundrect (at -2.575 1.5) (size 1.45 2) (layers "F.Cu") (roundrect_rratio 0.06896551724)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 4a42ddc9-90ae-40d5-a83b-f3506883cda0))
(pad "MP" smd roundrect (at -2.575 1.5) (size 1.45 2) (layers "B.Cu") (roundrect_rratio 0.06896551724)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 7a6ac882-6302-4bd8-aa1d-43b82e72ab5b))
(pad "MP" thru_hole circle (at -2.2 0.8) (size 0.6 0.6) (drill 0.4) (layers "*.Cu")
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp c3e8893c-c032-40e4-94f2-a614a6568e40))
(pad "MP" thru_hole circle (at -2.2 1.5) (size 0.6 0.6) (drill 0.4) (layers "*.Cu")
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 13821804-e51e-424f-8c28-db4d6c93c5e3))
(pad "MP" thru_hole circle (at -2.2 2.2) (size 0.6 0.6) (drill 0.4) (layers "*.Cu")
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 7be6c8dd-4fc3-4404-bbda-cbc6560c77c8))
(pad "MP" thru_hole circle (at 2.2 0.8) (size 0.6 0.6) (drill 0.4) (layers "*.Cu")
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp a7e8bb2c-330b-41bc-ba89-5a1199acb0c3))
(pad "MP" thru_hole circle (at 2.2 1.5) (size 0.6 0.6) (drill 0.4) (layers "*.Cu")
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 8db4765a-dee9-465a-839c-5d5bf78d8aea))
(pad "MP" thru_hole circle (at 2.2 2.2) (size 0.6 0.6) (drill 0.4) (layers "*.Cu")
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 5b1f43f4-6e1a-4658-bc04-02ae4fe35a6a))
(pad "MP" smd roundrect (at 2.575 1.5) (size 1.45 2) (layers "F.Cu") (roundrect_rratio 0.06896551724)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 84e5a3a3-b3fb-4ea0-a4ea-8ed82f88c360))
(pad "MP" smd roundrect (at 2.575 1.5) (size 1.45 2) (layers "B.Cu") (roundrect_rratio 0.06896551724)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 0d1f5e0e-ee4c-44d3-8ca2-3bb1dab17597))
(pad "MP" thru_hole circle (at 2.95 0.8) (size 0.6 0.6) (drill 0.4) (layers "*.Cu")
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp caf35ecb-8f58-49db-aa61-d16f0d405fc4))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_Pico-EZmate_78171-0004_1x04-1MP_P1.20mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KILIB}/ck-pcbs/libs/locallib.pretty/781710004.stp"
(offset (xyz 0 -0.25 1.4375))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "acheron_Connectors:TYPE-C-31-M-12" (layer "F.Cu")
(tstamp b481f771-e31a-4977-b86d-9257417100da)
(at 75.0025 64.843 180)
(property "LCSC Part Number" "C165948")
(property "Manufacturer" "Korean Hroparts")
(property "Manufacturer Part Number" "TYPE-C-31-M-12")
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e77a5d1")
(attr through_hole)
(fp_text reference "J1" (at 0 5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45c2a39f-8a4a-48d8-b0c2-000457529b8a)
)
(fp_text value "TYPE-C-31-M12_13" (at 0.05 7.35) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp eddb4c2b-a488-4b42-88a6-45c55dffcc6d)
)
(fp_text user "KEEPOUT ZONE" (at 0 4) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 54dcb84f-cadb-46ed-914d-862551a824f9)
)
(fp_line (start 4.8 8.42) (end -4.8 8.42)
(stroke (width 0.15) (type solid)) (layer "Cmts.User") (tstamp 0131ebd4-ba36-435d-94e1-3085d972e7db))
(fp_line (start -5 1.4) (end -5 6.8)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp a7c93d45-643f-402e-b9e0-b3507e6ec957))
(fp_line (start -5 2.5) (end -3.9 1.4)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp c12e1783-63e1-4f0e-aa15-dc793799edf8))
(fp_line (start -5 3.5) (end -2.9 1.4)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 73226fd6-03fa-4be3-a53c-8047f73ec0c9))
(fp_line (start -5 4.5) (end -1.9 1.4)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 7d2411c3-d1fe-4bcc-a726-3724a42d60ea))
(fp_line (start -5 5.5) (end -0.9 1.4)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 74cd0875-636b-4381-aa04-53900367d171))
(fp_line (start -5 6.5) (end -2.9 4.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 33ce1918-fbcb-4236-9344-75e009041ca9))
(fp_line (start -5 6.8) (end 5 6.8)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp aa875eb2-3e9e-4aad-9975-a60666937997))
(fp_line (start -4.3 6.8) (end -1.9 4.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 1e96bce0-8fc1-4997-a7be-f78d04ca6dbe))
(fp_line (start -3.3 6.8) (end -0.9 4.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 16287866-d5f9-4e14-8d2d-fb28859fec8f))
(fp_line (start -2.3 6.8) (end 0.1 4.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp c4d13ec0-8a1c-46ee-a073-69f7c69cc461))
(fp_line (start -1.9 3.4) (end 0.1 1.4)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp fc717633-d64d-4ff1-8f8d-56b0883bb732))
(fp_line (start -1.3 6.8) (end 1.1 4.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 83fb97ff-3a93-49f4-b658-887e822d7f00))
(fp_line (start -0.9 3.4) (end 1.1 1.4)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 370c36b5-bd31-444e-9ec1-c0d495e9e73f))
(fp_line (start -0.3 6.8) (end 2.1 4.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 70f5ce4e-5a49-4e4e-933e-47fbc91d101d))
(fp_line (start 0.1 3.4) (end 2.1 1.4)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 9934a51e-d048-454f-9372-45b8acba5b60))
(fp_line (start 0.7 6.8) (end 5 2.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 23a5fb4d-ba35-4a1a-8d0c-04be4df99106))
(fp_line (start 1.1 3.4) (end 3.1 1.4)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 3f46e411-3a6d-4ca6-a190-af39823bfd16))
(fp_line (start 1.7 6.8) (end 5 3.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp ec2e8a2e-646b-4eb3-b717-a74d72b93b2f))
(fp_line (start 2.1 3.4) (end 4.1 1.4)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp d12e3f85-f883-4079-9cb7-8322478d1a77))
(fp_line (start 2.7 6.8) (end 5 4.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp d5b11fa6-d873-453e-947d-6a411e516942))
(fp_line (start 3.1 3.4) (end 5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp 958ca201-2d14-46bd-afe7-e0df292844e9))
(fp_line (start 3.7 6.8) (end 5 5.5)
(stroke (width 0.05) (type solid)) (layer "F.Fab") (tstamp eb485831-d77b-4825-bf2e-d875febc5200))
(fp_line (start 5 1.4) (end -5 1.4)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp a36a0c49-386a-4760-ab85-ba1f1f977463))
(fp_line (start 5 6.8) (end 5 1.4)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 6d2b5ce1-9182-421d-8129-ef9847126414))
(pad "" np_thru_hole circle (at -2.89 2.051 180) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp ababf97a-03b7-4711-a516-16f80fa54132))
(pad "" np_thru_hole circle (at 2.89 2.051 180) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp 98a669aa-fd35-43ba-90cb-01d702ff69c4))
(pad "A1" smd roundrect (at -3.25 1.275 180) (size 0.6 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_out") (tstamp a815c064-28c3-412e-9fd4-70991cb48df8))
(pad "A4" smd roundrect (at -2.45 1.275 180) (size 0.6 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VBUS") (pinfunction "VBUS") (pintype "power_out") (tstamp 798f7966-d990-40e9-ac1d-f6b2c6e07da3))
(pad "A5" smd roundrect (at -1.25 1.275 180) (size 0.3 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(J1-CC1)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 33bfeea2-cd7d-4323-bfbe-3d67d68ad5a4))
(pad "A6" smd roundrect (at -0.254 1.275 180) (size 0.3 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "DP") (pinfunction "D+") (pintype "bidirectional") (tstamp 8b3ee0a8-3afd-4529-a46b-48659a8629ab))
(pad "A7" smd roundrect (at 0.25 1.275 180) (size 0.3 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "DN") (pinfunction "D-") (pintype "bidirectional") (tstamp 0aad4b95-c846-4e05-bcaf-44237069f5aa))
(pad "A8" smd roundrect (at 1.25 1.275 180) (size 0.3 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "unconnected-(J1-SBU1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 5474a728-a516-49c6-bdfe-66c6b7a704d6))
(pad "B1" smd roundrect (at 3.25 1.275 180) (size 0.6 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_out") (tstamp f07a7cb9-4152-4775-9350-47a4970eae64))
(pad "B4" smd roundrect (at 2.45 1.275 180) (size 0.6 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VBUS") (pinfunction "VBUS") (pintype "power_out") (tstamp 37d3e55c-4afc-43db-802c-195280897de6))
(pad "B5" smd roundrect (at 1.75 1.275 180) (size 0.3 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(J1-CC2)") (pinfunction "CC2") (pintype "bidirectional") (tstamp b353e62a-06b2-4499-97da-4a7f3fc2d081))
(pad "B6" smd roundrect (at 0.75 1.275 180) (size 0.3 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "DP") (pinfunction "D+") (pintype "bidirectional") (tstamp d983aaf5-0c93-4739-9be8-02d3915392f2))
(pad "B7" smd roundrect (at -0.75 1.275 180) (size 0.3 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "DN") (pinfunction "D-") (pintype "bidirectional") (tstamp 3075a469-94b6-434b-b12d-72bfcd44af7b))
(pad "B8" smd roundrect (at -1.75 1.275 180) (size 0.3 1.45) (drill (offset 0 -0.55)) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "unconnected-(J1-SBU2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp 9a71cb26-f8c8-4bad-8cb7-01037783993c))
(pad "S" thru_hole oval (at -4.3 1.5 180) (size 1.1 2.2) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 6e8cbade-da3a-46b3-812e-c399ed1d6073))
(pad "S" thru_hole oval (at -4.3 5.7 180) (size 1.3 1.9) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 128d9d08-6f2a-4c35-a86b-00589bbc542a))
(pad "S" thru_hole oval (at 4.3 1.5 180) (size 1.1 2.2) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 3e7e36fe-c3a1-45f3-a1b6-7274565b82e1))
(pad "S" thru_hole oval (at 4.3 5.7 180) (size 1.3 1.9) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 8bfe10f5-2f61-49ac-9911-a464a44296d6))
(model "${ACHERON_3D}/TYPE-C-31-M-12.step"
(offset (xyz -4.46 -8.25 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "acheron_Components:USON-10_2.5x1.0mm_P0.5mm" (layer "F.Cu")
(tstamp cde18dd7-502d-48a3-ab83-b5a0b12fde90)
(at 75.0025 66.0264 90)
(descr "USON-10 2.5x1.0mm_ Pitch 0.5mm http://www.ti.com/lit/ds/symlink/tpd4e02b04.pdf")
(tags "USON-10 2.5x1.0mm Pitch 0.5mm")
(property "LCSC Part Number" "C138714")
(property "Manufacturer" "Texas Instruments")
(property "Manufacturer Part Number" "TPD4E05U06DQAR")
(property "Package" "uSON-10")
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e787d68")
(attr smd)
(fp_text reference "U1" (at 0 1.7272 90) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 73b827dd-e0d4-40fb-bc67-48996ae81166)
)
(fp_text value "TPD4E05U06DQAR" (at 0.8024 0 180) (layer "F.Fab")
(effects (font (size 0.254 0.254) (thickness 0.0635)))
(tstamp 946f08c8-9f8c-47af-9a3e-ec4d53d5b25a)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.55 0.55) (thickness 0.1)))
(tstamp 70590bf7-6669-4e9f-b751-2c6bdede22d9)
)
(fp_circle (center -0.4 -1.5) (end -0.4 -1.5)
(stroke (width 0.4) (type solid)) (fill none) (layer "F.SilkS") (tstamp d2c65808-23fa-4571-be1a-79d902844db5))
(fp_line (start -0.91 -1.5) (end 0.91 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8152343a-34ad-4028-b28d-73369cc634f1))
(fp_line (start -0.91 1.5) (end -0.91 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb4c1ba1-3b04-4885-9b36-7da28d2f0f45))
(fp_line (start 0.91 -1.5) (end 0.91 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f98c437-e282-4cd7-8a6c-25b94a48fd83))
(fp_line (start 0.91 1.5) (end -0.91 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cbcd30fe-819d-45e8-93e9-ee39e147a302))
(fp_line (start -0.5 -1) (end -0.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c7b9754b-121c-4e1b-a859-fae7cc56d004))
(fp_line (start -0.5 1.25) (end 0.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb8bb016-2863-418a-b029-3ec0b374c19e))
(fp_line (start -0.25 -1.25) (end -0.5 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c034a915-c025-46c2-aea1-ff52244f713e))
(fp_line (start 0.5 -1.25) (end -0.25 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dcb28690-aa1b-4314-a107-1eea6c17c9a4))
(fp_line (start 0.5 -1.25) (end 0.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4b33e7b-108e-4f2c-838c-6f33504b1030))
(pad "1" smd roundrect (at -0.385 -1) (size 0.25 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 5 "DP") (pinfunction "IO1") (pintype "bidirectional") (tstamp 5213bb94-ad3d-4f50-b1e2-e1e17c619341))
(pad "2" smd rect (at -0.385 -0.5) (size 0.25 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "DN") (pinfunction "IO2") (pintype "bidirectional") (tstamp 0997b6b7-cfc9-4f89-a6f1-5384d3108c51))
(pad "3" smd rect (at -0.385 0) (size 0.3 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cb46988f-edbd-4bf8-b228-36bd3fd3e0bc))
(pad "4" smd rect (at -0.385 0.5) (size 0.25 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "DP") (pinfunction "D2+") (pintype "bidirectional") (tstamp c035ecfd-1200-47ce-9c78-39fe2bff2468))
(pad "5" smd rect (at -0.385 1) (size 0.25 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "DN") (pinfunction "D2-") (pintype "bidirectional") (tstamp d206283f-ae1a-4938-bd4c-11e98ed63e56))
(pad "6" smd rect (at 0.385 1) (size 0.25 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "DN") (pinfunction "NC") (pintype "bidirectional") (tstamp 2b96e452-4c1e-4d40-b6e2-156c7e60139d))
(pad "7" smd rect (at 0.385 0.5) (size 0.25 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "DP") (pinfunction "NC") (pintype "bidirectional") (tstamp 0ca0353f-159c-4125-a472-4d0ad1cad949))
(pad "8" smd rect (at 0.385 0) (size 0.3 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ba633d34-b261-49ea-a61d-91bf15508172))
(pad "9" smd rect (at 0.385 -0.5) (size 0.25 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "DN") (pinfunction "NC") (pintype "bidirectional") (tstamp f754b961-a60e-4ccb-a77a-ca47978dfeca))
(pad "10" smd rect (at 0.385 -1) (size 0.25 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "DP") (pinfunction "NC") (pintype "bidirectional") (tstamp f031c62a-e024-461a-a81f-4543979623f4))
(model "${KISYS3DMOD}/Package_SON.3dshapes/USON-10_2.5x1.0mm_P0.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "random-keyboard-parts:Generic-Mounthole" (layer "F.Cu")
(tstamp df93a472-211c-478d-9dbe-54da03c12d06)
(at 82.0045 71.043)
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00005c91ece4")
(clearance 0.5)
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "MH4" (at 0 2) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec671cd1-251e-4f32-b2e1-ac1185e859aa)
)
(fp_text value "Mount-M2" (at 0 -2) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08e74241-c4f8-4086-9ba6-71fd938a2574)
)
(pad "" np_thru_hole circle (at 0 0) (size 3.500001 3.500001) (drill 2.2) (layers "F.Cu" "F.Mask")
(clearance 0.5) (tstamp b14ae28e-d089-426f-b877-e1a8b9b57e0c))
)
(footprint "acheron_Components:D_SOD-123" (layer "F.Cu")
(tstamp f0e5d81b-29a4-46f2-85c7-85ae9540519f)
(at 68.8045 66.89)
(descr "SOD-123")
(tags "SOD-123")
(property "LCSC Part Number" "C708002")
(property "Manufacturer" "FTR")
(property "Manufacturer Part Number" "SMF6.0A")
(property "Package" "SOD-123FL")
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Zener diode")
(property "ki_keywords" "diode")
(path "/00000000-0000-0000-0000-00005e18209e")
(attr smd)
(fp_text reference "D1" (at -3.2 0 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.2)) (justify right))
(tstamp 933a0f95-ceb6-4f4b-8e46-36e6d009c72a)
)
(fp_text value "SMF6.0A" (at 0 1.4) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp 3700dc4b-0bd3-477e-a6d0-aa65e602de24)
)
(fp_text user "${REFERENCE}" (at 0 -1.4) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.08)))
(tstamp 8450b29b-6359-4559-b2cc-f333ff6673df)
)
(fp_line (start -2.55 -0.5) (end -2.55 0.5)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3d3540c1-f262-4090-a10b-77224882503a))
(fp_line (start -2.05 -1) (end -1.25 -1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c8fe1ecd-3b2e-4044-be3f-b58612cbec72))
(fp_line (start -1.25 1) (end -2.05 1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 38cb7150-739d-43e5-ba09-e364af77a867))
(fp_line (start -0.75 -0.5) (end -0.75 0.5)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2f19eddb-682f-49d2-8776-e3bd9e27fb87))
(fp_arc (start -2.55 -0.5) (mid -2.403553 -0.853553) (end -2.05 -1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ebd0b591-8522-4d7c-ad0f-7371be4534c7))
(fp_arc (start -2.05 1) (mid -2.403553 0.853553) (end -2.55 0.5)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cb3162e0-a4a7-4962-af00-505b6d98cfc1))
(fp_arc (start -1.25 -1) (mid -0.896447 -0.853553) (end -0.75 -0.5)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp de0b036b-d545-4588-9568-f3ccb9631dd4))
(fp_arc (start -0.75 0.5) (mid -0.896447 0.853553) (end -1.25 1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3186306a-0021-4691-be44-2ca2a3b6eae5))
(fp_poly
(pts
(xy -0.4 0)
(xy 0.6 -0.8)
(xy 0.6 0.8)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 3e8955f1-0057-4706-b479-17fd4788428f))
(fp_line (start -2.4 -1.2) (end -2.4 1.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee47c5b5-af1d-464b-b0f9-e39bb384be62))
(fp_line (start -2.4 -1.2) (end 2.4 -1.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4c72c032-6691-4ac1-b529-3f7f0bbbca95))
(fp_line (start 2.4 -1.2) (end 2.4 1.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a58de1c9-d337-4701-abfb-0b4f3285d11a))
(fp_line (start 2.4 1.2) (end -2.4 1.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1db2b083-f093-40ec-87d6-f97bd0757d17))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b3a9c22-151e-4661-9659-da945051a7e5))
(fp_line (start -1.4 0.9) (end -1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a92ca5f-8d28-49b4-a0c0-264f4ff9bbe9))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3935d9b3-5c20-49e7-9108-0f208af97e2d))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b79a460-c63a-41b1-b789-68e2141370de))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1f34680-c2a0-401f-ab31-f2b6048863fd))
(fp_line (start -0.35 0) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92feb5b9-b7e0-417e-8395-59226037dd5d))
(fp_line (start 0.25 -0.4) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04b782f6-8de9-4999-8c4c-d0f4d52ff335))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e543360-38ea-4742-a2e9-eed5d578b133))
(fp_line (start 0.25 0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20b5b1c6-98f1-40bc-9847-d108ec2684a5))
(fp_line (start 1.4 -0.9) (end 1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b45400ff-b045-4323-929d-9e3f7f6f2cb2))
(fp_line (start 1.4 0.9) (end -1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c6d5772-73e3-44a0-8666-ec26168367da))
(pad "1" smd roundrect (at -1.65 0) (size 1 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "VCOM") (pinfunction "K") (pintype "passive") (tstamp d739d93a-cdd8-4a46-9d50-684be8f21dd3))
(pad "2" smd roundrect (at 1.65 0) (size 1 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "A") (pintype "passive") (tstamp bcb9f5a9-2f3e-459b-8f19-037b10558669))
(model "${KISYS3DMOD}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Unified-Daughterboard-Logo:Unified-Daughterboard-Logo.pretty" (layer "B.Cu")
(tstamp 735577a7-e513-42e1-b78d-864829cff9d3)
(at 75.0025 67.143 180)
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/00000000-0000-0000-0000-00005e790861")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "G1" (at 0 0) (layer "B.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror))
(tstamp ac712b4b-f86f-406f-89cd-c440117e78aa)
)
(fp_text value "Unified-Daughterboard-Logo" (at 0.75 0) (layer "B.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror))
(tstamp b47b8af9-69cc-43d6-8a84-5948c881f479)
)
(fp_poly
(pts
(xy -3.399648 -1.04053)
(xy -2.41062 -1.040569)
(xy -3.210738 -1.621933)
(xy -2.905148 -2.562566)
(xy -3.70531 -1.98126)
(xy -4.505471 -2.562566)
(xy -4.199881 -1.621933)
(xy -4.999999 -1.040567)
(xy -4.010971 -1.04053)
(xy -3.70531 -0.099921)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp d4f26cfe-1618-48a0-85f5-4853effafe35))
(fp_poly
(pts
(xy -3.399648 1.367326)
(xy -2.41062 1.367288)
(xy -3.210738 0.785923)
(xy -2.905148 -0.15471)
(xy -3.705309 0.426596)
(xy -4.505471 -0.15471)
(xy -4.199881 0.785923)
(xy -4.999999 1.367289)
(xy -4.010971 1.367326)
(xy -3.705309 2.307936)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 5da1eea1-1339-4631-a965-2b8f5ac9c7f0))
(fp_poly
(pts
(xy -1.984346 -2.988526)
(xy -0.995318 -2.988565)
(xy -1.795436 -3.569929)
(xy -1.489845 -4.510561)
(xy -2.290007 -3.929257)
(xy -3.090169 -4.510561)
(xy -2.784579 -3.569929)
(xy -3.584696 -2.988563)
(xy -2.595669 -2.988526)
(xy -2.290007 -2.047917)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp bfc7d19a-f1df-4f2c-a955-440b1097a825))
(fp_poly
(pts
(xy -1.984345 3.315323)
(xy -0.995318 3.315284)
(xy -1.795436 2.733919)
(xy -1.489845 1.793287)
(xy -2.290007 2.374593)
(xy -3.090169 1.793287)
(xy -2.784578 2.73392)
(xy -3.584696 3.315285)
(xy -2.595669 3.315323)
(xy -2.290007 4.255932)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 001741c6-4979-4b17-a21f-5d5fa3c55074))
(fp_poly
(pts
(xy 0.305662 -3.732595)
(xy 1.29469 -3.732633)
(xy 0.494571 -4.313998)
(xy 0.800162 -5.25463)
(xy 0 -4.673325)
(xy -0.800162 -5.25463)
(xy -0.494571 -4.313998)
(xy -1.294689 -3.732632)
(xy -0.305662 -3.732595)
(xy 0 -2.791985)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 6edc9bc0-9c99-45cf-b91a-c03b1730bf7c))
(fp_poly
(pts
(xy 0.305662 4.059391)
(xy 1.29469 4.059353)
(xy 0.494571 3.477988)
(xy 0.800162 2.537355)
(xy 0 3.118661)
(xy -0.800162 2.537355)
(xy -0.494571 3.477988)
(xy -1.294689 4.059354)
(xy -0.305662 4.059391)
(xy 0 5)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp ddf4a5f8-46e7-4b69-9e4e-62e47d8dcb0f))
(fp_poly
(pts
(xy 2.59567 -2.988526)
(xy 3.584697 -2.988565)
(xy 2.784579 -3.569929)
(xy 3.090169 -4.510561)
(xy 2.290008 -3.929257)
(xy 1.489846 -4.510561)
(xy 1.795436 -3.569929)
(xy 0.995319 -2.988563)
(xy 1.984346 -2.988526)
(xy 2.290008 -2.047917)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 6756e9f2-3474-4673-956d-905917bd8297))
(fp_poly
(pts
(xy 2.59567 3.315322)
(xy 3.584697 3.315284)
(xy 2.784579 2.733919)
(xy 3.090169 1.793287)
(xy 2.290008 2.374592)
(xy 1.489846 1.793287)
(xy 1.795436 2.733919)
(xy 0.995319 3.315285)
(xy 1.984346 3.315323)
(xy 2.290008 4.255932)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 14425428-f658-460d-94ef-fa07a77a0bfa))
(fp_poly
(pts
(xy 4.010971 -1.04053)
(xy 4.999998 -1.040569)
(xy 4.199881 -1.621933)
(xy 4.505472 -2.562566)
(xy 3.705309 -1.98126)
(xy 2.905147 -2.562566)
(xy 3.210739 -1.621933)
(xy 2.410621 -1.040567)
(xy 3.399648 -1.04053)
(xy 3.705309 -0.099921)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 0634b8ae-9da0-4825-b55d-6b4cb5dde062))
(fp_poly
(pts
(xy 4.010971 1.317119)
(xy 4.999998 1.31708)
(xy 4.199881 0.735716)
(xy 4.505472 -0.204917)
(xy 3.705309 0.376388)
(xy 2.905147 -0.204917)
(xy 3.210739 0.735716)
(xy 2.410621 1.317081)
(xy 3.399648 1.317119)
(xy 3.705309 2.257728)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp d4c3633c-7982-4560-a854-0b8e2d23897a))
)
(footprint "Unified-Daughterboard-Logo:Unified-Daughterboard-Name.pretty" (layer "B.Cu")
(tstamp cd579bb2-0c8f-4b5d-93f5-f2fe92b9741f)
(at 75.025352 58.716092 180)
(property "Sheetfile" "UDB.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(clearance 0.5)
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "G2" (at 0 0) (layer "B.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror))
(tstamp 6761103d-838e-4b92-91a6-0951efdbeb01)
)
(fp_text value "Unified-Daughterboard-Name" (at 0.75 0) (layer "B.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror))
(tstamp 92166af8-44e8-4ada-b4d8-e51c838cbac7)
)
(fp_poly
(pts
(xy -0.524554 0.276606)
(xy -0.688267 0.276606)
(xy -0.688267 1.143174)
(xy -0.524554 1.143174)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp 2e4e79e6-d3d8-4361-b54f-8f343e0a5549))
(fp_poly
(pts
(xy 0.7913 0.276606)
(xy 0.627588 0.276606)
(xy 0.627588 1.143174)
(xy 0.7913 1.143174)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp 77cbdac7-9df6-440d-b5c3-ac266cc94406))
(fp_poly
(pts
(xy -0.997228 0.499402)
(xy -0.997228 1.143174)
(xy -0.854441 1.143174)
(xy -0.854441 0.276606)
(xy -0.934451 0.276606)
(xy -1.858872 0.95115)
(xy -1.858872 0.276606)
(xy -2.00166 0.276606)
(xy -2.00166 1.143174)
(xy -1.860103 1.143174)
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp 5aee68a6-3bbf-4c67-80e1-c40bc12b1a86))
(fp_poly
(pts
(xy 0.532808 1.015158)
(xy -0.194666 1.015158)
(xy -0.194666 0.761588)
(xy 0.483571 0.761588)
(xy 0.483571 0.633573)
(xy -0.194665 0.633573)
(xy -0.194665 0.276606)
(xy -0.358378 0.276606)
(xy -0.358378 1.143174)
(xy 0.532808 1.143174)