forked from codingcatgirl/split-flap-fae-pcb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
splitflappcb.kicad_pcb
21581 lines (21485 loc) · 830 KB
/
splitflappcb.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.6)
)
(paper "A4")
(layers
(0 "F.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") (color "Purple") (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 "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Purple") (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)
(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 4)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "fab")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "Net-(U3-XTAL2{slash}PB7)")
(net 3 "Net-(U3-XTAL1{slash}PB6)")
(net 4 "+3V3")
(net 5 "Net-(D3-K)")
(net 6 "Net-(U1-BOOT)")
(net 7 "Net-(D1-A)")
(net 8 "/A5{slash}SCL")
(net 9 "/A4{slash}SDA")
(net 10 "Net-(J3-Pin_1)")
(net 11 "Net-(J3-Pin_2)")
(net 12 "Net-(J3-Pin_3)")
(net 13 "Net-(J3-Pin_4)")
(net 14 "/D6")
(net 15 "/D5")
(net 16 "/D4")
(net 17 "/D3")
(net 18 "/D7")
(net 19 "/D12")
(net 20 "/D13")
(net 21 "/D11")
(net 22 "/RESET")
(net 23 "Net-(U1-VSNS)")
(net 24 "unconnected-(U1-NC-Pad2)")
(net 25 "unconnected-(U1-NC-Pad3)")
(net 26 "unconnected-(U1-ENA-Pad5)")
(net 27 "/D10")
(net 28 "/D9")
(net 29 "/D8")
(net 30 "unconnected-(U2-I5-Pad5)")
(net 31 "unconnected-(U2-I6-Pad6)")
(net 32 "unconnected-(U2-I7-Pad7)")
(net 33 "unconnected-(U2-O7-Pad10)")
(net 34 "unconnected-(U2-O6-Pad11)")
(net 35 "unconnected-(U2-O5-Pad12)")
(net 36 "/A6")
(net 37 "/AREF")
(net 38 "/A7")
(net 39 "/A0")
(net 40 "/A1")
(net 41 "/A2")
(net 42 "/A3")
(net 43 "/D0")
(net 44 "/D1")
(net 45 "/D2")
(net 46 "unconnected-(U4-ADC-Pad2)")
(net 47 "/01-EN")
(net 48 "unconnected-(U4-GPIO16-Pad4)")
(net 49 "unconnected-(U4-GPIO14-Pad5)")
(net 50 "unconnected-(U4-GPIO12-Pad6)")
(net 51 "unconnected-(U4-GPIO13-Pad7)")
(net 52 "unconnected-(U4-CS0-Pad9)")
(net 53 "unconnected-(U4-MISO-Pad10)")
(net 54 "unconnected-(U4-GPIO9-Pad11)")
(net 55 "unconnected-(U4-GPIO10-Pad12)")
(net 56 "unconnected-(U4-MOSI-Pad13)")
(net 57 "unconnected-(U4-SCLK-Pad14)")
(net 58 "Net-(U4-GPIO15)")
(net 59 "/01-IO2")
(net 60 "/01-IO0")
(net 61 "/01-RX")
(net 62 "/01-TX")
(net 63 "GND")
(net 64 "Net-(D2-A)")
(footprint "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm_ThermalVias" (layer "F.Cu")
(tstamp 01752d07-d9d0-4ffe-acc7-69b5cb7ce55d)
(at 83.42 101.635 -90)
(descr "SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "DIGIKEY" "")
(property "LCSC" "C9864")
(property "MPR" "")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Adjustable Output, 5A Step-Down Converter, 5.5V-36V Input, 500kHz Switching Frequency")
(property "ki_keywords" "switching buck converter step-down")
(path "/b290ed12-54ad-4f9e-ad26-42f32f447338")
(attr smd)
(fp_text reference "U1" (at 0 3.47) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2082e63b-ceea-466e-94fa-531a47f1b361)
)
(fp_text value "TPS5430" (at 0 3.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c8d4033-6d1d-4b92-a1fc-18261b662b43)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp 8ca75e3b-3912-4570-9307-d7a6a09629c1)
)
(fp_line (start 0 -2.56) (end -3.45 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0aa4b9fa-6a61-4d45-9458-88f563b12114))
(fp_line (start 0 -2.56) (end 1.95 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66135dd6-d604-4148-80f7-bede802e8dbc))
(fp_line (start 0 2.56) (end -1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d4b6931-d36a-4c91-9cbc-f3a96787f0e5))
(fp_line (start 0 2.56) (end 1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 54b6d977-1494-4002-a5e9-cc0668469551))
(fp_line (start -3.7 -2.7) (end -3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4295fb26-226d-4722-872d-cab06a566308))
(fp_line (start -3.7 2.7) (end 3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9117661-cad6-45a3-9cd0-c97e0d965532))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 728c80a9-194a-4a24-92db-6dc547a77b12))
(fp_line (start 3.7 2.7) (end 3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp adba802d-de99-43c8-95e1-4d337a48357b))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f37d663b-eb49-451c-9e7a-340144824e5f))
(fp_line (start -1.95 2.45) (end -1.95 -1.475)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d92442d-c9df-4edc-91b8-ba3f87ce02f0))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b1e5cc7-7c1e-42a4-8647-7337c5a4f83c))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b6b7738-0383-4361-ba90-cdbd14660687))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9eabee12-4082-43bd-ba70-358952f2307e))
(pad "" smd roundrect (at -0.63 -0.8 270) (size 1.05 1.34) (layers "F.Paste") (roundrect_rratio 0.2380952381) (tstamp 741bf8d2-1c70-4441-bd8c-ab8e736bb69b))
(pad "" smd roundrect (at -0.63 0.8 270) (size 1.05 1.34) (layers "F.Paste") (roundrect_rratio 0.2380952381) (tstamp 7952cec2-e980-4204-b802-d63abe164a83))
(pad "" smd roundrect (at 0.63 -0.8 270) (size 1.05 1.34) (layers "F.Paste") (roundrect_rratio 0.2380952381) (tstamp c0c662b8-7d3e-441e-9e35-9c7ce285d962))
(pad "" smd roundrect (at 0.63 0.8 270) (size 1.05 1.34) (layers "F.Paste") (roundrect_rratio 0.2380952381) (tstamp 3da75fd9-bedc-4ae6-b5ca-645629eccf63))
(pad "1" smd roundrect (at -2.6375 -1.905 270) (size 1.625 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(U1-BOOT)") (pinfunction "BOOT") (pintype "input") (tstamp e6a587d5-4218-41d7-b156-0b4706857516))
(pad "2" smd roundrect (at -2.6375 -0.635 270) (size 1.625 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "unconnected-(U1-NC-Pad2)") (pinfunction "NC") (pintype "no_connect") (tstamp fbf0643d-8ff0-4e30-8d3a-010f8de45d62))
(pad "3" smd roundrect (at -2.6375 0.635 270) (size 1.625 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "unconnected-(U1-NC-Pad3)") (pinfunction "NC") (pintype "no_connect") (tstamp f028697f-c663-49f1-98c5-09eb4f385101))
(pad "4" smd roundrect (at -2.6375 1.905 270) (size 1.625 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(U1-VSNS)") (pinfunction "VSNS") (pintype "input") (tstamp ad0017d3-42a0-460c-b184-bf0397216222))
(pad "5" smd roundrect (at 2.6375 1.905 270) (size 1.625 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "unconnected-(U1-ENA-Pad5)") (pinfunction "ENA") (pintype "input") (tstamp 8748cedf-0b6c-43ae-a6d8-8c6234b450c7))
(pad "6" smd roundrect (at 2.6375 0.635 270) (size 1.625 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 63 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 22af0df5-61ca-42e7-b912-7ad8f0dbb9e4))
(pad "7" smd roundrect (at 2.6375 -0.635 270) (size 1.625 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pinfunction "VIN") (pintype "power_in") (tstamp 989759cf-d1f8-499b-b376-c32c38a1dc1c))
(pad "8" smd roundrect (at 2.6375 -1.905 270) (size 1.625 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(D3-K)") (pinfunction "PH") (pintype "power_out") (tstamp 5e983cca-2d79-4ad6-8c45-5f087e6bb780))
(pad "9" thru_hole circle (at -0.7 -1 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 63 "GND") (pinfunction "PwPad") (pintype "power_in") (tstamp 3e767f22-ea3f-4612-8b18-085d9e09666b))
(pad "9" thru_hole circle (at -0.7 0 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 63 "GND") (pinfunction "PwPad") (pintype "power_in") (tstamp 3ec78c51-df6d-4c22-9fe3-0181ebcd3815))
(pad "9" thru_hole circle (at -0.7 1 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 63 "GND") (pinfunction "PwPad") (pintype "power_in") (tstamp 58821cd7-edfa-4652-891b-613414b29bad))
(pad "9" smd rect (at 0 0 270) (size 1.9 2.5) (layers "B.Cu")
(net 63 "GND") (pinfunction "PwPad") (pintype "power_in") (tstamp 77a7332d-ee90-4952-bfbc-04d89d49de77))
(pad "9" smd rect (at 0 0 270) (size 2.514 3.2) (layers "F.Cu" "F.Mask")
(net 63 "GND") (pinfunction "PwPad") (pintype "power_in") (tstamp e009372d-2a8e-4fb3-8e29-9430e81ba66b))
(pad "9" thru_hole circle (at 0.7 -1 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 63 "GND") (pinfunction "PwPad") (pintype "power_in") (tstamp 8319a674-f511-4c95-b034-a5fa3256d653))
(pad "9" thru_hole circle (at 0.7 0 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 63 "GND") (pinfunction "PwPad") (pintype "power_in") (tstamp e0dde5b9-fb1a-43b6-9ed3-8e6fe4a2ba73))
(pad "9" thru_hole circle (at 0.7 1 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 63 "GND") (pinfunction "PwPad") (pintype "power_in") (tstamp da1cd4c1-d600-4eea-8a8a-d84ae298d09f))
(model "${KICAD7_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tstamp 058e4589-d0a5-4a0f-bd54-6b2606fad120)
(at 104 50)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/f801e617-a330-41b3-982c-43fd9f062812")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H2" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24236dda-1839-4dc2-ae5f-c8b5801ecd83)
)
(fp_text value "MountingHole_Pad" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df3c0c99-c3cf-4ab7-9463-5ef3a5fab187)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74638239-ed0b-46bc-9e27-902d0bb25c2a)
)
(fp_circle (center 0 0) (end 2.8 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 37228176-4d66-4b65-8865-252d800dda88))
(fp_circle (center 0 0) (end 3.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp f06e7830-6856-4856-af72-1ff3de1fc9ba))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 63 "GND") (pinfunction "1") (pintype "input") (tstamp 8338c233-05d5-496e-a20c-d97a0b0e1285))
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 0c2413ca-5da0-4c60-ad0e-f4773c4d35df)
(at 88.75 57.19 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1555")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/b1a0cc73-a6a7-4914-b6ec-077d712a127b")
(attr smd)
(fp_text reference "C2" (at 0.01 1.55) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81312056-5284-437c-86d4-140505e061a0)
)
(fp_text value "22pF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48345c70-5e1f-4e5d-9003-4244f4a525b0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 072a7d93-b7ff-4c42-b9d7-a3130159925d)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8b7231e-1a6d-40b6-b1e5-94555d598f57))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe03d1f8-89d8-4f15-9470-0da90d7ae584))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f18d09bd-2bb6-492e-9b9b-a2b5212104b6))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68851593-3184-494b-b692-bd3f20f0b83c))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6df4294e-db08-4991-8a49-2fc0e1ee3bb9))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54932bef-5739-4dee-8475-f16d9d28db1f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b90bf42-f874-4d35-aaed-035ecba8143f))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d783605b-97b5-4c2e-8085-4ab417e670ee))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b39f748-1f3d-4c14-9a7c-23993f0cf8fd))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 875d83e2-83fe-4fae-adbd-7801f47652ad))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 63 "GND") (pintype "passive") (tstamp fbfcc195-8d44-444f-ab12-c2bad3c2cd72))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(U3-XTAL1{slash}PB6)") (pintype "passive") (tstamp 39b6f8a2-c91b-48e1-9ff6-89e36737c0e3))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 11b6452e-3e90-4bca-a6fa-331523524db4)
(at 98.74 49.01 -90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "LCSC" "C492404")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated")
(property "ki_keywords" "connector")
(path "/7cd3c650-c623-4508-af94-fa7ad9921c0c")
(attr through_hole)
(fp_text reference "J7" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca6f7da4-2556-4f1a-917f-69d2a398b2a3)
)
(fp_text value "Serial-328P" (at 0 12.49 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73c81204-e8f1-4a4f-b01f-fa9972843453)
)
(fp_text user "${REFERENCE}" (at 0 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9094b9f5-8777-4de2-8713-f0c4528ae051)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b344bbc-2215-4244-a569-105fcf6798b6))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4efcefee-28c8-4ce1-8350-f3385b3a1e88))
(fp_line (start -1.33 1.27) (end -1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de1b8a03-70ef-47a6-a22e-1c41318c1c44))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65c035e6-00b9-4cc8-bbe3-094502efe6dc))
(fp_line (start -1.33 11.49) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d335a0d-4d54-4741-84a0-0c4f7e61aa76))
(fp_line (start 1.33 1.27) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b8bd670-c060-4d0d-ac8a-9118f4360aa2))
(fp_line (start -1.8 -1.8) (end -1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29b0a1e6-ce53-4452-813b-63379ba1c606))
(fp_line (start -1.8 11.95) (end 1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9ec46f94-1005-42c3-8188-8c4c2b23d1aa))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bde9563b-6224-4d1a-8d59-5e47f4457640))
(fp_line (start 1.8 11.95) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fbe27482-01b6-44cb-94ab-46a0b6730d7b))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84849b82-1643-46e6-a2bb-ca46ab2be97e))
(fp_line (start -1.27 11.43) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ccee385-d98a-4484-b6ac-a9512a5336d4))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e80edb5-65ae-41d3-8565-8baededf27cf))
(fp_line (start 1.27 -1.27) (end 1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aaca172d-0f03-4b08-b258-88c73aaad986))
(fp_line (start 1.27 11.43) (end -1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 716e39b4-a74b-4c8e-957d-518935cdd1bd))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 43 "/D0") (pinfunction "Pin_1") (pintype "passive") (tstamp 9277b70b-42d3-41d7-a935-5b38d6f34108))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 44 "/D1") (pinfunction "Pin_2") (pintype "passive") (tstamp 96afa089-5b5f-47b6-8d61-15e57ea7aa37))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/RESET") (pinfunction "Pin_3") (pintype "passive") (tstamp 30554453-93a0-4607-877c-96392ad6c76c))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 63 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp dff3cd68-f3d6-4e3c-bb93-8d951733d4a0))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "+3V3") (pinfunction "Pin_5") (pintype "passive") (tstamp a4672b09-b00c-4a89-9c83-108bea042d40))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 13843b24-275c-4e6b-bdd7-b50b194b5c2f)
(at 82.36 68.82 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" "C25091")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/b8ff8bc2-b077-4c27-8ed9-aa84bf133a53")
(attr smd)
(fp_text reference "R1" (at -0.06 1.26) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a29b7dd0-39e9-4caf-a6e1-244ca070e913)
)
(fp_text value "220" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e792aeb4-fc77-4e0c-a012-668fc7b3f5a9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp e68567fe-d372-4ea9-b0fd-732892c8693b)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8562610-be15-4632-852a-047b5b167a60))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d8d4b59-7021-4032-a2f9-f4d1b49cade5))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9dc87b51-b5ba-4d2c-9306-e1a29e389528))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d7af5e5-8489-474f-b869-1364516194c2))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9719044-e5b2-42ee-94fc-083d57025c6f))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d1ee728-bf67-4af7-be22-e9dfa3897589))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62da0d68-f013-4d3f-85df-7919a8767df7))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 283f5557-1b2f-4f0b-bf12-023884c91723))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c73a832-1558-48c8-a74f-1159ea5b8264))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08876f77-dc1c-4a62-ac3f-72cb42633ca5))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D1-A)") (pintype "passive") (tstamp d4d0a327-bf65-476d-9fe0-814148301f27))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/D13") (pintype "passive") (tstamp 5d3214d7-8edd-4956-ba69-86f67418ecd8))
(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 "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tstamp 174418e5-edad-454c-ad7c-22a10faa34da)
(at 80.2075 68.82)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "LCSC" "C2297")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/8b59a0b2-1791-41e3-9bdf-b0ed38af2f77")
(attr smd)
(fp_text reference "D1" (at -2.8175 -0.03) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f15a83e1-f6d8-487b-ac5d-96f61117c678)
)
(fp_text value "LED" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 205c53db-9fa1-4721-bfd3-a83423b23032)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7cb31e98-ba79-47ee-a47a-bdc0cd51eaba)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 017cef45-fe09-4efe-b7eb-0a0f0dc67ecd))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f0735a5-09ad-436d-bc9f-b840f6526dd1))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65d06301-d03e-4c61-97dc-4cb3fc88ac14))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77e826f8-14cc-4d8b-973b-3882a46fcac6))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5222e169-a675-4b1c-ae47-02c254c62c5c))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9e5b6b8-8a30-4c3a-98d5-1317be4c0e32))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3cdf4032-7f23-40b5-8d21-a9339a123401))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 867871b2-2ea7-4830-90a6-deca68843041))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bfa68ef9-ae59-4744-93a0-474e48f4c93b))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 014928e6-4461-4485-9285-18b8d98f81aa))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9985c4b8-a3d6-4630-b0b9-3635ea2e2d88))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8519c8b7-7dac-4863-a85b-39000591d9eb))
(pad "1" smd roundrect (at -0.9375 0) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 63 "GND") (pinfunction "K") (pintype "passive") (tstamp 48fb9bb9-8326-43f3-91cb-d3c3c96db79a))
(pad "2" smd roundrect (at 0.9375 0) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp bcf0af7c-b394-4ec4-b182-926726ec2ce7))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" (layer "F.Cu")
(tstamp 2855eb10-2499-49cf-8ce3-3c50ee67420d)
(at 86.19 57.19 180)
(descr "SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package")
(tags "SMD SMT crystal")
(property "LCSC" "C13738")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Four pin crystal, GND on pins 2 and 4, small symbol")
(property "ki_keywords" "quartz ceramic resonator oscillator")
(path "/66e56983-492f-4545-8629-4643b3576b52")
(attr smd)
(fp_text reference "Y2" (at -0.01 2.38) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d7b292c-de3b-4008-8ce6-131abc29b0e3)
)
(fp_text value "16MHz" (at 0 2.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a55e4690-cbc3-47b7-93b3-f9fbcd096a9d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.105)))
(tstamp e5c0139e-cbea-4646-9f9b-aef4af403aae)
)
(fp_line (start -2 -1.65) (end -2 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2da59038-e4d4-492d-976e-82f1a5d1607a))
(fp_line (start -2 1.65) (end 2 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2a3793a-a255-4cf3-af87-272f736e1241))
(fp_line (start -2.1 -1.7) (end -2.1 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9aa07cc-0877-4b3f-9d3c-e2d281a912b0))
(fp_line (start -2.1 1.7) (end 2.1 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc5d62c6-536c-402b-a967-b6cb9b50b253))
(fp_line (start 2.1 -1.7) (end -2.1 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90eb8169-bead-4d6c-95cb-e3ac97b2cb20))
(fp_line (start 2.1 1.7) (end 2.1 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71aa0f1a-768b-4b4f-8b0b-7768a7c90e63))
(fp_line (start -1.6 -1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 114e694d-32fe-4446-b6d5-251cca8717ca))
(fp_line (start -1.6 0.25) (end -0.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fff30d02-8c66-4e3b-992d-5afb882af478))
(fp_line (start -1.6 1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bcb824e9-26e3-447a-a334-7557a9f86f93))
(fp_line (start 1.6 -1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba704afe-ac03-424a-8c73-d0195c12b895))
(fp_line (start 1.6 1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 788a548a-71b7-47cb-a703-1b1af77d2c46))
(pad "1" smd rect (at -1.1 0.85 180) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(U3-XTAL1{slash}PB6)") (pinfunction "1") (pintype "passive") (tstamp 2e80d95a-0b62-4a94-b56e-eea676ea6d8a))
(pad "2" smd rect (at 1.1 0.85 180) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 63 "GND") (pinfunction "2") (pintype "passive") (tstamp bd337696-30cd-4ea7-b342-da8b98e620b8))
(pad "3" smd rect (at 1.1 -0.85 180) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(U3-XTAL2{slash}PB7)") (pinfunction "3") (pintype "passive") (tstamp eaf6bc55-2270-4985-96bb-9f0a95e5925b))
(pad "4" smd rect (at -1.1 -0.85 180) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 63 "GND") (pinfunction "4") (pintype "passive") (tstamp d33338f6-29f4-456e-a606-4e326eea1bfc))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_3225-4Pin_3.2x2.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 2be4bf28-03fd-429a-a158-450aad95fbdd)
(at 83.67 75.5)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C307331")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/2ade67a3-5b85-42b0-96e4-69773d5af18c")
(attr smd)
(fp_text reference "C6" (at -2.63 0.01) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab587b50-1df6-47e0-ad86-260cdb1f2878)
)
(fp_text value "100n" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a788560e-64c3-4ce3-ba72-2ce6ae9ae95a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 81bde043-bc57-453a-8b8f-cf91e26bcbc1)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df1e2354-2be9-41d4-9969-a76a55856577))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f723732f-842e-4d6c-80f7-f1d8cbdf024a))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eca7ff57-ba49-48a5-a145-22df75979b70))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7cfc0c9-5f88-4b16-acc1-90a84d0a0134))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 221d27cd-bd8a-4db9-a456-98580f4de939))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83de0504-aa16-4e51-9d2e-e7c719cfd9b9))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3de5921-d82d-4edf-a0cd-b84af56846e0))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f602453b-9dd7-4a65-af39-dc69123d21bf))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 097c8b36-a187-45f9-82e5-d8befd0fcf7b))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45b5f97f-c312-4de1-bad3-ef40d7ca72af))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 63 "GND") (pintype "passive") (tstamp ec055874-0792-42b4-9ef8-75a9a01ba558))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3V3") (pintype "passive") (tstamp 96ada302-5b7d-4e95-bf51-0144950e50e1))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (layer "F.Cu")
(tstamp 2e2715e0-578c-42f9-8cf2-e4898b3ef874)
(at 79.145 62.625 180)
(descr "SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "LCSC" "C7512")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "High Voltage, High Current Darlington Transistor Arrays, SOIC16/SOIC16W/DIP16/TSSOP16")
(property "ki_keywords" "darlington transistor array")
(path "/196c11ba-d5f5-44be-89d0-6a7892136915")
(attr smd)
(fp_text reference "U2" (at -0.035 5.785) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c42550e9-b1bd-48ca-9980-811cf2e1c930)
)
(fp_text value "ULN2003A" (at 0 5.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d292a1d-8e16-4042-bc29-eab4a2058d7b)
)
(fp_line (start 0 -5.06) (end -3.45 -5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59c90cf8-bf4c-4d76-85ea-82fcd7a132cb))
(fp_line (start 0 -5.06) (end 1.95 -5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ab570bc-c9d7-40e3-88c6-0bfc3033beb8))
(fp_line (start 0 5.06) (end -1.95 5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c4de4ef-84d2-4a4e-a23c-160ebb21811a))
(fp_line (start 0 5.06) (end 1.95 5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91bd1440-f7aa-4f91-b73b-1dbceab25c97))
(fp_line (start -3.7 -5.2) (end -3.7 5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c2a47ac-4841-42c6-996e-42b634b43751))
(fp_line (start -3.7 5.2) (end 3.7 5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89a14065-2d58-41e6-b251-29a092e57c51))
(fp_line (start 3.7 -5.2) (end -3.7 -5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 449fdcdc-046f-4d24-b2da-2a604f702d7d))
(fp_line (start 3.7 5.2) (end 3.7 -5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31be1fe0-0cf6-4757-92b5-2b593e48a44f))
(fp_line (start -1.95 -3.975) (end -0.975 -4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d11e4b2-3ba4-4656-9aad-0e51d0e0c7c1))
(fp_line (start -1.95 4.95) (end -1.95 -3.975)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb1a54e0-2f8b-4dd4-9b71-7128c88c8f48))
(fp_line (start -0.975 -4.95) (end 1.95 -4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac7ac9e8-b547-417f-8879-282ab9eb5c05))
(fp_line (start 1.95 -4.95) (end 1.95 4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf21a396-cac7-4934-88bf-ddfc0fb2a63b))
(fp_line (start 1.95 4.95) (end -1.95 4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 13b50b4c-2a07-4841-906f-ff2b62bed8d8))
(pad "1" smd roundrect (at -2.475 -4.445 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D11") (pinfunction "I1") (pintype "input") (tstamp 33cf7cf8-29c5-4c56-a8e4-60d917e690f9))
(pad "2" smd roundrect (at -2.475 -3.175 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/D10") (pinfunction "I2") (pintype "input") (tstamp ae7c2403-ca4a-44d0-b8cc-fcd580afee4d))
(pad "3" smd roundrect (at -2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/D9") (pinfunction "I3") (pintype "input") (tstamp d79c5931-4884-4fb4-a708-cf8f47385d39))
(pad "4" smd roundrect (at -2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/D8") (pinfunction "I4") (pintype "input") (tstamp 529fe0d6-2ede-447d-9796-2ba975b96fad))
(pad "5" smd roundrect (at -2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "unconnected-(U2-I5-Pad5)") (pinfunction "I5") (pintype "input") (tstamp 00968bcb-c5b6-4139-bcfe-3641a820a2d6))
(pad "6" smd roundrect (at -2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U2-I6-Pad6)") (pinfunction "I6") (pintype "input") (tstamp 26702651-f909-4973-8117-40f281693efe))
(pad "7" smd roundrect (at -2.475 3.175 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "unconnected-(U2-I7-Pad7)") (pinfunction "I7") (pintype "input") (tstamp 22b2bb00-cc4e-46cd-b980-d9c74f1dcf1e))
(pad "8" smd roundrect (at -2.475 4.445 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 63 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6c3d8859-819d-49c0-b38a-b8474d5d1348))
(pad "9" smd roundrect (at 2.475 4.445 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pinfunction "COM") (pintype "passive") (tstamp e991537b-8e7e-42c1-ac35-f75a97e8dfc9))
(pad "10" smd roundrect (at 2.475 3.175 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "unconnected-(U2-O7-Pad10)") (pinfunction "O7") (pintype "open_collector") (tstamp c30c8f47-2d23-4774-9ffd-60934a88c075))
(pad "11" smd roundrect (at 2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "unconnected-(U2-O6-Pad11)") (pinfunction "O6") (pintype "open_collector") (tstamp bf2c5f87-4da5-4f6c-9d1b-e97adec6bf27))
(pad "12" smd roundrect (at 2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "unconnected-(U2-O5-Pad12)") (pinfunction "O5") (pintype "open_collector") (tstamp be796fc8-2fa8-44a5-b2ff-a723b4db4ebd))
(pad "13" smd roundrect (at 2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(J3-Pin_4)") (pinfunction "O4") (pintype "open_collector") (tstamp 093d5d20-7b2f-4970-ab46-bd7a46ce6989))
(pad "14" smd roundrect (at 2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(J3-Pin_3)") (pinfunction "O3") (pintype "open_collector") (tstamp 51feadc0-2e47-4cdd-b517-a3c162b574f6))
(pad "15" smd roundrect (at 2.475 -3.175 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(J3-Pin_2)") (pinfunction "O2") (pintype "open_collector") (tstamp 0790fb4c-6a52-4567-a9cc-8f0f85b39fd1))
(pad "16" smd roundrect (at 2.475 -4.445 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(J3-Pin_1)") (pinfunction "O1") (pintype "open_collector") (tstamp a289cf56-f4c6-4d2b-8580-c9761953a9a6))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-16_3.9x9.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 31d0bec0-f287-4def-9386-7cfd76db3726)
(at 83.43 105.795 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "DIGIKEY" "")
(property "LCSC" "C307331")
(property "MPR" "")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/fced91b2-d98c-4bda-88af-af704c40e8d0")
(attr smd)
(fp_text reference "C9" (at 2.61 -0.145) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64e3670c-7ae2-4f33-be5e-2259bac8a897)
)
(fp_text value "100n" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1dff066-37e3-4f4f-ad1b-786bd771286f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp ac245d9f-cc8f-435f-bec8-7a5510e2b52f)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d22fbc5-e6aa-4afd-8900-93d68c486dac))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a9dd3e8-6a3c-4d05-9fc5-802cc6008629))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ffad42e-b717-42ee-bbad-db24eac4f055))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2ec61db-b43d-4817-8576-761b7d11b5a8))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06d70dcf-ae71-4993-9491-e1c5e3697f94))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 645a50de-f3fa-49f5-83f5-12cc0c6ccc08))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5195ac55-c84b-4d7e-bbc6-c3e67c93d22e))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c27d61b5-9775-4cf0-be4a-c63d7f5f68bf))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e417ff5-2d41-4e09-bdd4-5c6184dd9e3f))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae7b220c-ddc5-47b6-95ef-ea5e77992b10))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pintype "passive") (tstamp ca623ef9-ef42-43aa-b1b9-7dc8871f2f8c))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 63 "GND") (pintype "passive") (tstamp a92647b5-dd84-47ab-aa2c-10802d1fc573))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_XH_B4B-XH-AM_1x04_P2.50mm_Vertical" (layer "F.Cu")
(tstamp 396908fa-7495-4ba2-9a26-324a23ed3f62)
(at 97.68 124.01 180)
(descr "JST XH series connector, B4B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical boss")
(property "LCSC" "C161871")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated")
(property "ki_keywords" "connector")
(path "/cd099fd6-0002-4481-98d2-f54a73823248")
(attr through_hole)
(fp_text reference "J1" (at 3.75 -3.55) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1adbe5ce-9ea0-4eb5-9568-13506ed167ce)
)
(fp_text value "Conn_01x04_Pin" (at 3.75 4.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fe644f9-c664-4325-a221-57b2748aae52)
)
(fp_text user "${REFERENCE}" (at 3.75 2.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0c26ece-de3d-49ee-9002-397f32d3e1ab)
)
(fp_line (start -2.85 -2.75) (end -2.85 -1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 070c4a97-e1e3-4530-a326-984919877c3c))
(fp_line (start -2.56 -2.46) (end -2.56 3.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7777adec-6061-46f3-9e0a-cd9f5f96070e))
(fp_line (start -2.56 3.51) (end 10.06 3.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41255bef-6b44-450a-a9f1-39eb9150d1e7))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 344dd82d-0b39-4435-93d8-23546dce516a))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b413bd47-39a4-4c9c-b0a6-bbe598888dc3))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d389b275-ac62-42d0-a759-011a699403f1))
(fp_line (start -1.8 -0.2) (end -1.8 1.14)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6cb87155-f417-4af1-981d-6c453500dc95))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0eb4bb3c-dbc2-4559-85d0-3a19bf8f3064))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01314d32-f9d3-4d99-b34e-2c7f1e4cfc33))
(fp_line (start -0.75 -1.7) (end -0.75 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51faad6e-b60a-4350-b248-23c1ee75895f))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66ea0290-ade0-459b-8826-9dfc468075ef))
(fp_line (start 0.75 -1.7) (end 6.75 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7933429f-9e9e-46ea-8ffa-66a0654aa793))
(fp_line (start 3.75 2.75) (end -0.74 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3afcf06-e3fd-4846-b186-7f8d533e2260))
(fp_line (start 6.75 -2.45) (end 0.75 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9264a5d-c730-460d-8488-d4d22f76aa51))
(fp_line (start 6.75 -1.7) (end 6.75 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58f13fb9-27cb-4f4d-ba16-1d04a036cf0d))
(fp_line (start 8.25 -2.45) (end 8.25 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6918d99b-9a3a-41e7-b204-ec52943e0957))
(fp_line (start 8.25 -1.7) (end 10.05 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a773c0a8-87ce-45f8-a135-b7b46cbbdad6))
(fp_line (start 9.3 -0.2) (end 9.3 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4be9aae-97e0-44a9-b344-2ca921d6a4e8))
(fp_line (start 9.3 2.75) (end 3.75 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc3845e6-7643-4475-b546-3151042dc2ee))
(fp_line (start 10.05 -2.45) (end 8.25 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df01199d-012f-4375-bf43-77d9c8a59862))
(fp_line (start 10.05 -1.7) (end 10.05 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6b3be7e-1166-4a54-9602-cce72476bb1e))
(fp_line (start 10.05 -0.2) (end 9.3 -0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb4a3e1d-96f1-40ea-b263-972e6430cf03))
(fp_line (start 10.06 -2.46) (end -2.56 -2.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 934e25db-6bf0-495f-9aa9-ffec44fc5610))
(fp_line (start 10.06 3.51) (end 10.06 -2.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp befa8b6f-c776-4b64-bfb7-e0a2ff026d17))
(fp_line (start -2.95 -2.85) (end -2.95 3.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b443cf1-c488-4499-b6fb-a0ae233bdf65))
(fp_line (start -2.95 3.9) (end 10.45 3.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 556ae8b7-8b1c-439d-af9f-a994346bed6b))
(fp_line (start 10.45 -2.85) (end -2.95 -2.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a06e493-b840-45c8-b44c-300662d47266))
(fp_line (start 10.45 3.9) (end 10.45 -2.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b560690-66c7-4abe-8b50-3967f7261cad))
(fp_line (start -2.45 -2.35) (end -2.45 3.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fdae32e-3b61-4a8c-a2cd-a77e2f8c11d5))
(fp_line (start -2.45 3.4) (end 9.95 3.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62349158-1e37-40ff-bfb8-2a4f8568f673))
(fp_line (start -0.625 -2.35) (end 0 -1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33e5b5fd-2d6e-4dbc-bdd4-12dbf54b6ed8))
(fp_line (start 0 -1.35) (end 0.625 -2.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d17a5072-3217-4033-9e26-88e9e9430d94))
(fp_line (start 9.95 -2.35) (end -2.45 -2.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp caaa0caa-8da9-448a-b79f-cbfbc56f2754))
(fp_line (start 9.95 3.4) (end 9.95 -2.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f6519c3-15a6-497c-a2c5-813a4b70a9a6))
(pad "" np_thru_hole circle (at -1.6 2 180) (size 1.2 1.2) (drill 1.2) (layers "*.Cu" "*.Mask") (tstamp 3a47e46e-2bc0-47f1-9e05-fce9bfdf2bc0))
(pad "1" thru_hole roundrect (at 0 0 180) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1470588235)
(net 8 "/A5{slash}SCL") (pinfunction "Pin_1") (pintype "passive") (tstamp a147f91e-2e69-44a9-b757-a04c1cf8b6d6))
(pad "2" thru_hole oval (at 2.5 0 180) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 9 "/A4{slash}SDA") (pinfunction "Pin_2") (pintype "passive") (tstamp 68ddf24d-270b-472d-b258-e06196c7f727))
(pad "3" thru_hole oval (at 5 0 180) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 63 "GND") (pinfunction "Pin_3") (pintype "passive") (thermal_bridge_width 0.8) (tstamp fddfc63e-6ba5-4907-a08b-d47f2d4d99f5))
(pad "4" thru_hole oval (at 7.5 0 180) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 64 "Net-(D2-A)") (pinfunction "Pin_4") (pintype "passive") (thermal_bridge_width 0.8) (tstamp f2249d61-e1ad-4bbf-9f0d-b9999c8b5d62))
(model "${KICAD7_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tstamp 4b3467e4-edf3-49ad-98a3-d1bacbcf808d)
(at 70 50)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/3642eb22-4f82-4cbd-ab35-495e455560fb")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8163a61d-e276-40ce-84b7-5b8bf33efe5e)
)
(fp_text value "MountingHole_Pad" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14c73fc3-5377-41e8-8c84-8b36d831d602)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f275ba8f-304c-4c13-b7a4-3b4dc2cce8f7)
)
(fp_circle (center 0 0) (end 2.8 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 747ada11-a887-44ba-8bd5-6e842d861b08))
(fp_circle (center 0 0) (end 3.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ef54c2f5-7847-4978-9fd8-0fca90ff053b))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 63 "GND") (pinfunction "1") (pintype "input") (tstamp 39c18d9e-167f-48f0-a6c4-6930df43bfa6))
)
(footprint "Connector_JST:JST_XH_B4B-XH-AM_1x04_P2.50mm_Vertical" (layer "F.Cu")
(tstamp 4e1004e8-3734-419f-ab94-446fb70c1c49)
(at 76.32 122.97)
(descr "JST XH series connector, B4B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical boss")
(property "LCSC" "C161871")
(property "Sheetfile" "splitflappcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated")
(property "ki_keywords" "connector")
(path "/a1c21b13-c7d9-4ba2-bff8-7411edcaa1e8")
(attr through_hole)
(fp_text reference "J2" (at 3.75 -3.55) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63b1a991-d3cf-4136-b802-8d12e5881888)
)
(fp_text value "Conn_01x04_Pin" (at 3.75 4.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 089a6343-96b2-490c-91d7-a0b55860a848)
)
(fp_text user "${REFERENCE}" (at 3.75 2.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 769c9579-f53f-4e56-8bd2-b9fe7b3634ee)
)
(fp_line (start -2.85 -2.75) (end -2.85 -1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aaa09382-1cda-4aff-8596-05d2ce065f79))
(fp_line (start -2.56 -2.46) (end -2.56 3.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57b7e0c6-b74b-4cfb-8305-cc463fe0f974))
(fp_line (start -2.56 3.51) (end 10.06 3.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4609269d-3e46-430c-9623-67a079ec615a))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6babe09b-a135-4110-9a8c-23e677d2230c))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f906f92-1696-4794-8e1d-98041686ba02))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ccbaa7f-37ab-4c35-9695-1d273534e607))
(fp_line (start -1.8 -0.2) (end -1.8 1.14)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3743758-005a-43fc-b5a9-c8957ef00208))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c747c690-33cb-4090-b6c8-bb04895bcfb3))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f15016d0-de3b-4015-968a-360288e78b66))
(fp_line (start -0.75 -1.7) (end -0.75 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8993ea5d-ac5b-4e74-a714-a5ef2186c4db))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2f07dbd-e83c-4cc2-88d5-30ffd5d42ddd))
(fp_line (start 0.75 -1.7) (end 6.75 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp afc8e585-455f-458d-82e0-12223f273589))
(fp_line (start 3.75 2.75) (end -0.74 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 109243d4-4003-4f66-88a1-ac8d1986d22b))
(fp_line (start 6.75 -2.45) (end 0.75 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9410c182-f4de-47e3-8b24-446bd7953ef5))
(fp_line (start 6.75 -1.7) (end 6.75 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01cc9c67-5f25-481b-b244-d5a03ec614e8))
(fp_line (start 8.25 -2.45) (end 8.25 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4eb6e81-6994-4b0d-8f2c-bc0880780312))
(fp_line (start 8.25 -1.7) (end 10.05 -1.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 870be4b1-86b7-443d-9906-9bcfca1634db))
(fp_line (start 9.3 -0.2) (end 9.3 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86ed67cf-0388-4005-b257-546d906b6a89))
(fp_line (start 9.3 2.75) (end 3.75 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52044436-7f9b-4a1f-a7e0-b67fef8b42dc))
(fp_line (start 10.05 -2.45) (end 8.25 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a3e25cd-db54-48df-adaf-d00a9ca75422))
(fp_line (start 10.05 -1.7) (end 10.05 -2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 692025e9-6784-49b6-8027-19983eb32d93))
(fp_line (start 10.05 -0.2) (end 9.3 -0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dca34b98-fadd-4882-a727-43cefdb9a243))
(fp_line (start 10.06 -2.46) (end -2.56 -2.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 093a5c59-a744-4d53-bb60-06c6dab2c976))
(fp_line (start 10.06 3.51) (end 10.06 -2.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06c6a49c-3998-405b-a717-54cfd356f81a))
(fp_line (start -2.95 -2.85) (end -2.95 3.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8fd4a407-fc91-41a4-a421-228c806a05b3))
(fp_line (start -2.95 3.9) (end 10.45 3.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef31315d-d563-4727-aa5a-e4dff0ddc598))
(fp_line (start 10.45 -2.85) (end -2.95 -2.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6907db4e-b992-4cb8-97db-8fdb7b166933))
(fp_line (start 10.45 3.9) (end 10.45 -2.85)