-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCrenshaw.kicad_pcb
6830 lines (6785 loc) · 289 KB
/
Crenshaw.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 "A5")
(title_block
(title "Crenshaw SSD1351 OLED breakout")
(date "2023-08-04")
(rev "V2.0")
(company "Created by Ariamelon (https://github.com/Ariamelon/Crenshaw/)")
(comment 1 "Follows the VIK standard by Sadek Baroudi (https://github.com/sadekbaroudi/VIK)")
(comment 2 "Licensed under CC BY 4.0.")
)
(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)
)
(setup
(pad_to_mask_clearance 0)
(grid_origin 55 40)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "CrenshawV1.2-Gerbers")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+13V")
(net 3 "Net-(J2-VCOMH)")
(net 4 "Net-(J2-VDDIO)")
(net 5 "+3V3")
(net 6 "Net-(J2-VCI)")
(net 7 "+5V")
(net 8 "Net-(U1-FB)")
(net 9 "Net-(D1-K)")
(net 10 "Net-(D1-A)")
(net 11 "Net-(D3-A)")
(net 12 "Net-(J2-VSL)")
(net 13 "unconnected-(J2-NC-Pad6)")
(net 14 "unconnected-(J2-D2-Pad19)")
(net 15 "MOSI")
(net 16 "SCK")
(net 17 "Net-(J2-IREF)")
(net 18 "unconnected-(J2-BS0-Pad14)")
(net 19 "unconnected-(J2-GPIO1-Pad8)")
(net 20 "unconnected-(J2-NC-Pad25)")
(net 21 "unconnected-(J2-GPIO0-Pad7)")
(net 22 "CS")
(net 23 "unconnected-(J3-MISO-Pad2)")
(net 24 "+3V3_LDO")
(net 25 "~{RST}")
(net 26 "DC")
(net 27 "+3V3_VIK")
(net 28 "unconnected-(J2-NC-Pad2)")
(net 29 "unconnected-(J3-SDA-Pad10)")
(net 30 "unconnected-(J3-SCL-Pad9)")
(net 31 "unconnected-(J3-RGB-Pad8)")
(footprint "Crenshaw:OLED_1.5_SSD1351_128x128" (layer "F.Cu")
(tstamp 27ab504c-0205-41c7-9e65-5858d786c502)
(at 55 40)
(descr "SSD1351 OLED header with mounting holes")
(tags "Through hole pin header THT 1x07 2.54mm single row")
(property "Description" "DNP")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x07, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/b8be3f9f-a9d9-47a6-a09e-403ed595a6a6")
(attr through_hole)
(fp_text reference "J1" (at -20 10.1) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 65b0eff8-5de1-46c5-8fce-beebcc2aac99)
)
(fp_text value "OLED_Breakout" (at 0 -19.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4e3b0d0-853b-4e33-8f0c-5a8601f6ada9)
)
(fp_text user "RST" (at -17.1 7.7 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 16219733-30b6-448b-bb0f-bd386b2fee4e)
)
(fp_text user "MOSI" (at -17.1 -2.4 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6e412870-638d-41fb-adb9-bc4982693ffa)
)
(fp_text user "CS" (at -17.1 2.6 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7aaae8e9-d148-4bc8-863b-0a463ec9c9b6)
)
(fp_text user "+5V" (at -17.1 -7.5 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 863fe1c2-4389-4e52-9bd5-8fa928d3633a)
)
(fp_text user "DC" (at -17.091171 5.203445 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 982c51b8-dfe6-4eee-8935-97c40b23d0d8)
)
(fp_text user "GND" (at -17.1 -5 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cac8a536-3725-43b5-aede-7ea5cd8c6ee1)
)
(fp_text user "SCK" (at -17.1 0.1 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp dd3a8cc1-9829-4592-958d-1a0ae4a1c0e5)
)
(fp_line (start -22.25 -18.5) (end 22.25 -18.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ae54449-1a23-4eac-a513-8c41ae7515f7))
(fp_line (start -22.25 18.5) (end -22.25 -18.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9721616a-369f-4d63-bd9c-0121d2d58bed))
(fp_line (start 22.25 -18.5) (end 22.25 18.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc934eec-d71a-498d-be0f-4f0e638b78cd))
(fp_line (start 22.25 18.5) (end -22.25 18.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aeddd2ae-addf-4d36-9b06-f2c423a0ed53))
(pad "1" thru_hole rect (at -20 -7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 09c81f05-abc9-4b8c-9a00-661d2da60322))
(pad "2" thru_hole oval (at -20 -5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 30bdacf2-7049-4934-8a7b-1c19120c72be))
(pad "3" thru_hole oval (at -20 -2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "MOSI") (pinfunction "Pin_3") (pintype "passive") (tstamp 76fc4978-ef2c-46f1-86fb-d80ca602b50b))
(pad "4" thru_hole oval (at -20 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "SCK") (pinfunction "Pin_4") (pintype "passive") (tstamp 1d15b519-0a39-4c5d-9074-cb611f71e0c5))
(pad "5" thru_hole oval (at -20 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "CS") (pinfunction "Pin_5") (pintype "passive") (tstamp 50b1bdbc-620b-4382-b21c-e2ae24f10d9e))
(pad "6" thru_hole oval (at -20 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "DC") (pinfunction "Pin_6") (pintype "passive") (tstamp 156be033-99e2-4cab-b6c3-fff497c181f6))
(pad "7" thru_hole oval (at -20 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "~{RST}") (pinfunction "Pin_7") (pintype "passive") (tstamp ebdb7ef4-8f71-4853-805a-891d907980d2))
(pad "MP" thru_hole circle (at -19.75 -16) (size 4 4) (drill 2) (layers "*.Cu" "*.Mask") (tstamp 62661077-8d81-4f0c-9681-274755f692b5))
(pad "MP" thru_hole circle (at -19.75 16) (size 4 4) (drill 2) (layers "*.Cu" "*.Mask") (tstamp 3eb22795-84ab-4f44-9aad-61cbdafdf0e6))
(pad "MP" thru_hole circle (at 19.75 -16) (size 4 4) (drill 2) (layers "*.Cu" "*.Mask") (tstamp 5a8ad30c-0f43-4061-8889-702259d3d596))
(pad "MP" thru_hole circle (at 19.75 16) (size 4 4) (drill 2) (layers "*.Cu" "*.Mask") (tstamp e502cd52-c2f7-471d-b12e-c523cb3b8f18))
(model "${KIPRJMOD}/Honeydew.pretty/3d/OLED_1.5_SSD1351_128x128.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crenshaw:JLC Tooling Hole" (layer "F.Cu")
(tstamp 7ef5b7b8-d7f7-4af2-a7bf-f3c47949ad66)
(at 55 23)
(descr "Mounting Hole 1.152mm, no annular")
(tags "Mounting Hole 1.152mm, no annular")
(property "LCSC" "")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/a214d1af-ab25-4270-b0ef-ac007803d431")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -3.2 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 021a2f97-395c-4d6a-9956-a91bafe77abe)
)
(fp_text value "Tooling Hole" (at 0 3.2 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5d4032a-8ee0-40da-b1be-1aea6295ec0f)
)
(fp_circle (center 0 0) (end 0.65 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "Cmts.User") (tstamp 094f4e91-90d7-4d78-ba4d-d29cb73302ba))
(fp_circle (center 0 0) (end 0.7 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp c0b508d9-0400-4b04-ad21-b3be615b7d22))
(pad "" np_thru_hole circle (at 0 0) (size 1.152 1.152) (drill 1.152) (layers "F&B.Cu" "*.Mask")
(clearance 0.074) (tstamp 57529c91-5f8f-4ad1-b16f-56f5313fc0da))
)
(footprint "Crenshaw:JLC Tooling Hole" (layer "F.Cu")
(tstamp 89f2be87-8303-4a65-808c-c0db844ce1b9)
(at 38.5 57)
(descr "Mounting Hole 1.152mm, no annular")
(tags "Mounting Hole 1.152mm, no annular")
(property "LCSC" "")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/b2f4019e-eddd-4d8e-9163-8d0b58aee991")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H3" (at 0 -3.2 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c069b1bc-afbe-4b05-b527-4b52ac05e234)
)
(fp_text value "Tooling Hole" (at 0 3.2 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4648d189-5d71-4102-8047-f5dc485e7034)
)
(fp_circle (center 0 0) (end 0.65 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "Cmts.User") (tstamp 85883a07-2be3-404f-a74c-2d414d4cd33f))
(fp_circle (center 0 0) (end 0.7 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ae204baf-569f-4597-86c5-f457a018d3e3))
(pad "" np_thru_hole circle (at 0 0) (size 1.152 1.152) (drill 1.152) (layers "F&B.Cu" "*.Mask")
(clearance 0.074) (tstamp 3a622a32-2c67-4b43-b232-2823eda7b136))
)
(footprint "Crenshaw:JLC Tooling Hole" (layer "F.Cu")
(tstamp e275b644-73f0-4f4d-b8e2-fe19eb3b4ecd)
(at 71.5 57)
(descr "Mounting Hole 1.152mm, no annular")
(tags "Mounting Hole 1.152mm, no annular")
(property "LCSC" "")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/fc56f0f4-65ca-49d8-a83b-1d252be92a54")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H2" (at 0 -3.2 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5134ba4b-7986-4123-9780-87ad0faca4b8)
)
(fp_text value "Tooling Hole" (at 0 3.2 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc714b75-30c6-4879-afaf-25726fec8cf6)
)
(fp_circle (center 0 0) (end 0.65 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "Cmts.User") (tstamp 3eee1e1d-af66-4384-ad3f-188ca04ed22c))
(fp_circle (center 0 0) (end 0.7 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 5c370907-a10e-4de4-8c36-ddd846db6818))
(pad "" np_thru_hole circle (at 0 0) (size 1.152 1.152) (drill 1.152) (layers "F&B.Cu" "*.Mask")
(clearance 0.074) (tstamp ed9b384b-1f46-4760-87f2-ec930e03597d))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tstamp 03318076-0c09-4fb4-9ac3-717a60b7897f)
(at 50.4 40.7 180)
(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 "Description" "0402 resistor")
(property "LCSC" "C25125")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/72bb6bfe-af9c-4f64-8f8d-7b3f0f55ce12")
(attr smd)
(fp_text reference "R1" (at 2.5 2.7 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b71ee442-b76d-4dd2-a924-87030d9ad6be)
)
(fp_text value "51" (at 0 -1.17 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1a8b597e-e893-44e4-b516-14a83a7def17)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ce61287b-c91d-4877-bfc1-d525a801c5be)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp db919831-e84a-4412-8388-1844f79f4d1a))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 50f68a77-0e60-4436-ba07-8dc55ab9d663))
(fp_line (start -0.93 -0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 532f898c-3f44-4ef8-a6b7-e1bab74a048c))
(fp_line (start -0.93 0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 12b2301f-79fa-4445-9d95-5f33b495d6a1))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 35f0e6c0-7872-4c45-9bbc-3d4bcceae5ac))
(fp_line (start 0.93 0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 006ebc21-bb45-4342-bf76-170ce6769af1))
(fp_line (start -0.525 -0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fdb2827c-c96d-4cee-b494-6e5c82cfb928))
(fp_line (start -0.525 0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1e1dfc1e-8cdc-4d36-bbc8-abb5cee43e89))
(fp_line (start 0.525 -0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4869c436-a39d-488e-b34b-ae4f380d03e4))
(fp_line (start 0.525 0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9069936d-35dd-4137-b68b-aa08bf7a1ffb))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(D1-A)") (pintype "passive") (tstamp ab2d43e0-74d3-41e0-a686-4f1ba28603d8))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(J2-VSL)") (pintype "passive") (tstamp d6b8cfb9-1d77-4f8a-acd8-b65c17cd6a29))
(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 "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tstamp 046899e6-8236-4f1f-b4a4-19ab898f0d55)
(at 44.4 35.400001 180)
(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 "Description" "0402 resistor")
(property "LCSC" "C25741")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/5b61b95c-f3d3-48e0-8e99-e3228d5905cf")
(attr smd)
(fp_text reference "R5" (at 0 -1.2 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b67f35e3-954b-4e26-821a-9a52ca94f077)
)
(fp_text value "100k" (at 0 -1.17 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e93097bf-1815-4f40-b1a3-56d67aba6ee1)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 52504180-db99-488b-bc3a-9d80fe92631a)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c7958d71-a2fa-4575-bcd2-b0f90e32e886))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 17b09075-e1da-4ecc-a2a5-fefef212bfc2))
(fp_line (start -0.93 -0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ff7d096b-a28b-4bd2-8047-71d31a2c2ba9))
(fp_line (start -0.93 0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d20d4395-eb04-4055-9a52-eacdddc51a7c))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cd09e5e2-a163-45a3-ab59-600784b1c52b))
(fp_line (start 0.93 0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 473a4245-84d5-43c8-9d65-5a33facd8a18))
(fp_line (start -0.525 -0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 21e61567-1394-49d9-9895-9d474e2c0732))
(fp_line (start -0.525 0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0ffb5d03-28db-4861-b579-7e08ed5cca42))
(fp_line (start 0.525 -0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0387981d-a129-4923-b3a3-f624f547ebd2))
(fp_line (start 0.525 0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6501201f-57a2-48e0-bbde-126ee93378ab))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(U1-FB)") (pintype "passive") (tstamp 1e8bda99-fdbb-4ccb-aed0-bfca4dfc1c63))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 340e8db2-3924-4bd3-8ba7-b2b81c91a7fd))
(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 "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tstamp 0b000eb8-9f79-4ac1-920d-676dd9ccbb15)
(at 41.05 32.700001 90)
(descr "Capacitor SMD 0603 (1608 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 "Description" "0603 capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "16V")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/8c93d0f1-76a5-49de-a49e-dd2134367bc1")
(attr smd)
(fp_text reference "C8" (at 1.9 0 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3cd493d1-cebd-491b-ab88-1c33a260dc51)
)
(fp_text value "4u7" (at 0 -1.43 90 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 68cc9e06-1f4f-460d-9df7-561ae3f9d138)
)
(fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 395b52a3-c6e6-41b4-b206-9e21e3c21fd5)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d4677b3e-16c6-4fac-b10d-8b1a58a32eb0))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 43b9e948-39c9-4c46-bfbd-73e2b8fe1c5e))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cccb4694-639b-413d-9b62-3b3337c2fec5))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 3a539215-33b1-412b-b53a-524d9aac7dae))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 65276fb1-fbcb-4e7a-ae19-0f3143cb0d10))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e079aebe-5b2c-46c9-a3bb-16edbd4bbabd))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 33e65855-3308-4393-a11d-12831c20e15c))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b95776e7-068e-4235-8685-8584875f70d1))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp eb549572-09cd-4ed5-bbe6-79f72b8cabb6))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9a62539b-79f9-4e03-b7a1-571b79e5b023))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7e91ab35-d945-44d6-b2ba-2ca8d4013dae))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "+5V") (pintype "passive") (tstamp c7ccc6e5-f4e5-44ee-bd72-b065ea240d62))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323" (layer "B.Cu")
(tstamp 0f090fae-f3f8-4f59-9402-b29a7f232f58)
(at 47.4 30.1 180)
(descr "SOD-323")
(tags "SOD-323")
(property "Description" "SOD-323 diode")
(property "LCSC" "C191023")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Diode, small symbol")
(property "ki_keywords" "diode")
(path "/50b6f695-0b7e-45bd-bb75-ef623e7ceab1")
(attr smd)
(fp_text reference "D3" (at 0 1.599999 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3a36952e-3bb1-41db-9ec1-380985c4d6e7)
)
(fp_text value "1N5819WS" (at 0.1 -3 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp db43bd3b-f72f-43c1-b038-54f996a0d455)
)
(fp_text user "${REFERENCE}" (at 0 1.85 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 59a33067-0457-4c10-af92-edaaf7fea2af)
)
(fp_line (start -1.61 -0.85) (end 1.05 -0.85)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 740b210d-1442-4005-b7b6-5b0863d49fcb))
(fp_line (start -1.61 0.85) (end -1.61 -0.85)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp ff91e920-02cf-4635-9a3f-70e6a3e58a91))
(fp_line (start -1.61 0.85) (end 1.05 0.85)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d3694f1c-5ea7-446c-9f28-5c3d5c60eac4))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 29feacaa-9ca3-4b29-a79d-26dee52b08e9))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b9c67c98-56cb-4087-8ae2-ace1bef95304))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bb713fa0-644d-4b0a-8890-8225f5395019))
(fp_line (start 1.6 0.95) (end 1.6 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ee8e3622-2f54-49e2-91a3-c8384b6bdd63))
(fp_line (start -0.9 -0.7) (end -0.9 0.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 96c4c587-06d5-46cc-9e78-7170878e5b41))
(fp_line (start -0.9 0.7) (end 0.9 0.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 666184f3-c13a-4f1c-974a-c04797ffa17c))
(fp_line (start -0.3 0) (end -0.5 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 68868559-82e6-45ce-baca-6990b5e0fc33))
(fp_line (start -0.3 0) (end 0.2 0.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bd4e8f7a-fde6-4de5-8c9e-fb61e3b1fea5))
(fp_line (start -0.3 0.35) (end -0.3 -0.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b74d5d7a-972d-4362-80aa-a01b78c9dc01))
(fp_line (start 0.2 -0.35) (end -0.3 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 512605a1-8483-4e23-801f-f4398a716a9d))
(fp_line (start 0.2 0) (end 0.45 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c85db055-f01f-4cdc-ad2d-65f04be869ae))
(fp_line (start 0.2 0.35) (end 0.2 -0.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 202061f6-6478-441b-ad2a-6a56b1a614cb))
(fp_line (start 0.9 -0.7) (end -0.9 -0.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7a5641db-159a-4d18-9446-2c59ed11763d))
(fp_line (start 0.9 0.7) (end 0.9 -0.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8daa995d-b516-4329-83e9-7a3cf08ee7a1))
(pad "1" smd roundrect (at -1.05 0 180) (size 0.6 0.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+13V") (pinfunction "K") (pintype "passive") (tstamp 2a2db302-dfef-4dac-9d09-50adf4735909))
(pad "2" smd roundrect (at 1.05 0 180) (size 0.6 0.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D3-A)") (pinfunction "A") (pintype "passive") (tstamp 71590694-da13-410a-8d0a-39a5815edbf1))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tstamp 1f1c0b40-2031-43cc-b058-2b1ca9922a95)
(at 50.4 37.8)
(descr "Capacitor SMD 0603 (1608 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 "Description" "0603 capacitor")
(property "LCSC" "C15849")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "50V")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/7bb2b8f8-a85d-40d9-a168-f880720f8135")
(attr smd)
(fp_text reference "C3" (at -2.5 -1.1 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp dbd51fa9-d8ac-4560-99d9-dff1bb03a205)
)
(fp_text value "1u" (at 0 -1.43 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7592b2f1-d171-4a4f-96b6-73323ea3f0c9)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5bb95a73-7b45-47bf-bbd7-212a65845041)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b13215d6-e3fb-400d-bada-abf243d550c5))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 73505487-d152-4353-b6f9-9fa74080ea88))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6a2d2720-52d6-4a0c-bef6-af4ca341d69b))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c10a6691-d556-4153-8782-0d911e112652))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 26aeef64-eadf-4a06-916c-a9f4ced03ae7))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2ee049a6-e72e-445b-b086-317e4f5db406))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4d291318-e11e-4b33-ac24-f2a8a71f3031))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp cdc3e105-4cb5-40ba-877c-c2097c36a2d3))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f33993f9-e2f2-4485-bd15-1fc3fabb8597))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2eb92d83-f3e0-4746-9474-fa9a9d3ed8c2))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(J2-VCOMH)") (pintype "passive") (tstamp aa9f1010-9346-4396-8b7d-e69776f3257a))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp c560a51c-2ba8-4220-93dc-d10cbe6dec2f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_Sunlord_SWPA3012S" (layer "B.Cu")
(tstamp 2f30c206-8f04-4227-b802-6eb15c6b0960)
(at 43.9 29.400001 180)
(descr "Inductor, Sunlord, SWPA3012S, 3.0x3.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf")
(tags "Inductor swpa")
(property "Description" "Inductor")
(property "LCSC" "C206385")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Inductor with ferrite core, small symbol")
(property "ki_keywords" "inductor choke coil reactor magnetic")
(path "/3f78ff74-febb-4046-a961-c466ee60d669")
(attr smd)
(fp_text reference "L1" (at 2.9 1.100001 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7e16db8c-e407-4935-9966-68988ab4a35c)
)
(fp_text value "10u" (at 0 -2.5 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5274dabf-74f9-4e03-aa34-4fa35d4f5905)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d750e3cf-f9fa-45ab-97eb-65dfb2ff9114)
)
(fp_line (start -1.76 -1.76) (end -1.76 -1.61)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 75fb33e2-46af-455e-9ac4-416805bb7a71))
(fp_line (start -1.76 -1.76) (end 1.76 -1.76)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp baa8b0d3-5614-40d8-b7ab-aae94333c019))
(fp_line (start -1.76 1.76) (end -1.76 1.61)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp dae69abe-8198-43ca-b569-ea0fada753d0))
(fp_line (start -1.76 1.76) (end 1.76 1.76)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a2628a3c-681c-445d-941b-c61bed29d9be))
(fp_line (start 1.76 -1.76) (end 1.76 -1.61)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7f2cb173-9133-4d2a-9ef4-9f3b0c17c106))
(fp_line (start 1.76 1.76) (end 1.76 1.61)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 504e8b98-0cd6-49ec-9ee4-f3b8ce5a0a64))
(fp_line (start -1.8 -1.75) (end 1.8 -1.75)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a9fb8fdd-6129-462d-9a85-ce8d7822979e))
(fp_line (start -1.8 1.75) (end -1.8 -1.75)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 939948b8-558e-4bd9-b8f7-891f98c7af6c))
(fp_line (start 1.8 -1.75) (end 1.8 1.75)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 31932b8b-cbf3-43c6-90dd-40f308e119df))
(fp_line (start 1.8 1.75) (end -1.8 1.75)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1c5eeb29-3c7a-4d20-81f6-111c695bd605))
(fp_line (start -1.5 -1.5) (end 1.5 -1.5)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6a66b6b0-9db5-41eb-9158-063f45e4ef7c))
(fp_line (start -1.5 1.5) (end -1.5 -1.5)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fe0ea016-7c24-46c2-ac2e-d80b5f4f0ea8))
(fp_line (start 1.5 -1.5) (end 1.5 1.5)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp cc47c17f-d990-4c5c-aa9d-64a01db9c7c9))
(fp_line (start 1.5 1.5) (end -1.5 1.5)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 545ec289-93bd-4ae8-87e8-3d8783add9e7))
(pad "1" smd rect (at -1.15 0 180) (size 0.8 2.7) (layers "B.Cu" "B.Paste" "B.Mask")
(net 11 "Net-(D3-A)") (pintype "passive") (tstamp 34e9a114-88c6-4a9c-a9ee-f6375e7ffff5))
(pad "2" smd rect (at 1.15 0 180) (size 0.8 2.7) (layers "B.Cu" "B.Paste" "B.Mask")
(net 7 "+5V") (pintype "passive") (tstamp c1c46a5b-b93c-4784-95c6-81fac3b3ddcc))
(model "${KICAD7_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Sunlord_SWPA3012S.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "B.Cu")
(tstamp 30b101a4-d436-4abc-8a3b-acd446dbffcf)
(at 54.399999 32.6 180)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC" "C5446")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Positive 60-250mA Low Dropout Regulator, Fixed Output, SOT-23")
(property "ki_keywords" "Torex LDO Voltage Regulator Fixed Positive")
(path "/085240e8-ac63-431b-987d-8b9e63912931")
(attr smd)
(fp_text reference "U2" (at -1.2 -2.4 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 31e61000-b5d7-401c-98e6-100be58c61f5)
)
(fp_text value "XC6206P332MR" (at 0 -2.4 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 144c6dae-a1f0-4392-9dc6-e8b4d2557e85)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 331a5b9f-eab2-4948-be03-4ebfcf555984)
)
(fp_line (start 0 -1.56) (end -0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2407fecc-c0b9-4257-ba87-03c3945bf347))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5a6a31f0-f86c-48e4-a944-d04dcbca1525))
(fp_line (start 0 1.56) (end -1.675 1.56)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp dd3f3728-c2b3-4038-ab12-25d666a167ca))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 8616515b-f218-413a-a7e2-7759079af9c5))
(fp_line (start -1.92 -1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 959ac63e-5d38-4c50-98ff-54d4dcd2d848))
(fp_line (start -1.92 1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1334bb6e-1c3f-4950-b5cc-fdcf7c6ef17f))
(fp_line (start 1.92 -1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ad6af689-2dd7-4e63-93ef-9e937ae8a51f))
(fp_line (start 1.92 1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c0c07b03-2145-47c6-87f2-66d4fb68ce56))
(fp_line (start -0.65 -1.45) (end -0.65 1.125)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e5299f23-ede7-46fa-bcc0-7b5b775900c6))
(fp_line (start -0.65 1.125) (end -0.325 1.45)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp cd5f459c-66f1-4934-ad40-60e072711f34))
(fp_line (start -0.325 1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8a561bfd-181d-4604-9b0b-24484e93512e))
(fp_line (start 0.65 -1.45) (end -0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d4681e07-9405-411a-ab54-e4d639968c57))
(fp_line (start 0.65 1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 77f4000c-fcf7-4e54-a0ed-38e2135cf7f3))
(pad "1" smd roundrect (at -0.9375 0.95 180) (size 1.475 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f6ec3f94-5ac8-4582-9b79-06a6ab0716b9))
(pad "2" smd roundrect (at -0.9375 -0.95 180) (size 1.475 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 24 "+3V3_LDO") (pinfunction "VO") (pintype "power_out") (tstamp 557a07de-7d66-49f2-9bc3-3892bd91dc7f))
(pad "3" smd roundrect (at 0.9375 0 180) (size 1.475 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp fe3b7502-688b-4910-b1c6-c02f981f1a10))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crenshaw:Hirose_FH12-30S-0.5SH_1x30-1MP_P0.50mm_Horizontal" (layer "B.Cu")
(tstamp 379289c1-41ce-46c1-91f5-aa10eba32391)
(at 55 44.35 180)
(descr "Hirose FH12, FFC/FPC connector, FH12-30S-0.5SH, 30 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator")
(tags "connector Hirose FH12 horizontal")
(property "Description" "FFC receptacle")
(property "LCSC" "C506793")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connectable mounting pin connector, single row, 01x30, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/b965dedd-871b-4334-855b-74ab704b21d6")
(attr smd)
(fp_text reference "J2" (at 8.3 2.15) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9565c189-7bae-4994-87dd-7b2cdc66ac4b)
)
(fp_text value "SSD1351" (at 0 -5.6) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6b7f41ff-9036-4b2a-87e3-e028a46df442)
)
(fp_text user "${REFERENCE}" (at 0 -3.7) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ef4f5efa-3a5e-4f6b-9005-64abf18ff1a6)
)
(fp_line (start -9.15 -4.5) (end 9.15 -4.5)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 41f5c501-8f45-4aea-b125-356c6eadb2fc))
(fp_line (start -9.15 -2.76) (end -9.15 -4.5)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c4fc6fad-151b-4d1f-87e0-d0935f6748e2))
(fp_line (start -9.15 1.3) (end -9.15 -0.04)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 41277946-ab84-4dd4-9f38-57209ff907f5))
(fp_line (start -7.66 1.3) (end -9.15 1.3)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp bd64d65a-aea7-4c76-9b6d-7e84e6973f17))
(fp_line (start -7.66 1.3) (end -7.66 2.5)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp be32b203-94c9-4b81-9ef7-3619e08f47c1))
(fp_line (start 7.66 1.3) (end 9.15 1.3)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 33f6af42-fb6f-429d-93ba-336d847c18fa))
(fp_line (start 9.15 -4.5) (end 9.15 -2.76)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5577cfb6-01bc-4f29-baca-99a20c88511d))
(fp_line (start 9.15 1.3) (end 9.15 -0.04)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e13f94ab-8fde-4e70-9407-59f08c83920e))
(fp_circle (center -7.25 3.1) (end -7.15 3.1)
(stroke (width 0.2) (type solid)) (fill none) (layer "B.SilkS") (tstamp 1014d5a7-c28a-4886-92f2-a5c56c8deb4f))
(fp_line (start -10.55 -4.9) (end 10.55 -4.9)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 351d5ce9-a84b-4e03-8634-ed18a7ee3d05))
(fp_line (start -10.55 3) (end -10.55 -4.9)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0d8f2777-293c-4313-92ad-cfce47fa23b9))
(fp_line (start 10.55 -4.9) (end 10.55 3)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 08136a04-78b9-4a1f-b14a-c955fcdd8340))
(fp_line (start 10.55 3) (end -10.55 3)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dfea5c61-b93c-4215-b6c6-40f85bc7e3a6))
(fp_line (start -9.05 -3.4) (end -8.45 -3.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9cdf0783-7e91-471c-b4db-9deeb9f295a0))
(fp_line (start -9.05 1.2) (end -9.05 -3.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e4a3c25e-aa22-4e65-b1eb-0669da5db4dc))
(fp_line (start -8.95 -4.4) (end 0 -4.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ed8c1a42-f517-4b82-b209-41d7abff45e7))
(fp_line (start -8.95 -3.7) (end -8.95 -4.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 692fdc9f-da96-4a6a-a390-bfa70976d447))
(fp_line (start -8.45 -3.7) (end -8.95 -3.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 863568b8-9905-4257-85aa-0eb2e38a9815))
(fp_line (start -8.45 -3.4) (end -8.45 -3.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1c77d002-0470-4c65-ba2d-a580a9c3ec27))
(fp_line (start -7.75 1.2) (end -7.25 0.492893)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8a7089b8-c056-4fd9-ae60-cc96f5205f02))
(fp_line (start -7.25 0.492893) (end -6.75 1.2)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp cd7b5944-8509-4f5d-b558-e91a1aaa8fe5))
(fp_line (start 0 1.2) (end -9.05 1.2)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bfa0d732-d902-40b2-bd93-19396985f2de))
(fp_line (start 0 1.2) (end 9.05 1.2)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5bfed7ef-f461-4979-b217-5c5e054f889c))
(fp_line (start 8.45 -3.7) (end 8.95 -3.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp de16ed87-0613-41a3-b3b0-c04b4f0270db))
(fp_line (start 8.45 -3.4) (end 8.45 -3.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 41627f87-ecd1-4382-9677-352c2e4b7483))
(fp_line (start 8.95 -4.4) (end 0 -4.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6086ae10-471c-4c2a-9c28-6b122804dc1c))
(fp_line (start 8.95 -3.7) (end 8.95 -4.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d1cc1c4c-6f84-4e2a-95e0-63d9ca1ac6cb))
(fp_line (start 9.05 -3.4) (end 8.45 -3.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 00cfa712-0a1e-450f-b441-1aa6f932870f))
(fp_line (start 9.05 1.2) (end 9.05 -3.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 580e2f7f-e115-416e-a9b7-51b5ad5a938b))
(fp_circle (center -7.25 3.1) (end -7.15 3.1)
(stroke (width 0.2) (type solid)) (fill none) (layer "B.Fab") (tstamp c2c543ee-f2b0-4bdc-add2-9d8baf2c718a))
(pad "1" smd rect (at -7.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "NC(GND)") (pintype "passive") (tstamp 40e29ca9-9fdd-4cb7-9e1d-1f6031834fa7))
(pad "2" smd rect (at -6.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 28 "unconnected-(J2-NC-Pad2)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 64b08e7b-267b-4379-b1b2-8f52e00fff71))
(pad "3" smd rect (at -6.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "passive") (tstamp 50943ea2-01de-446a-befd-a2fdbc912169))
(pad "4" smd rect (at -5.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 6 "Net-(J2-VCI)") (pinfunction "VCI") (pintype "passive") (tstamp e607a872-e7c9-4349-a133-5971738bf32e))
(pad "5" smd rect (at -5.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "+3V3") (pinfunction "VDD") (pintype "passive") (tstamp 908daf8c-340e-49d9-ba50-7d52c78e3c34))
(pad "6" smd rect (at -4.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 13 "unconnected-(J2-NC-Pad6)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 024c0be0-91d3-408e-870d-71595b3ffc9d))
(pad "7" smd rect (at -4.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 21 "unconnected-(J2-GPIO0-Pad7)") (pinfunction "GPIO0") (pintype "passive+no_connect") (tstamp 3ff58778-3213-4b8b-bd89-e228a0295437))
(pad "8" smd rect (at -3.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 19 "unconnected-(J2-GPIO1-Pad8)") (pinfunction "GPIO1") (pintype "passive+no_connect") (tstamp e47b160e-3385-47c9-853a-3b46bd51334c))
(pad "9" smd rect (at -3.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 17 "Net-(J2-IREF)") (pinfunction "IREF") (pintype "passive") (tstamp 1ad5c94b-d36d-4210-8b98-31214eb52549))
(pad "10" smd rect (at -2.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 25 "~{RST}") (pinfunction "~{RES}") (pintype "passive") (tstamp 20caac26-696a-493a-acbd-61868ddca962))
(pad "11" smd rect (at -2.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 26 "DC") (pinfunction "D/~{C}") (pintype "passive") (tstamp 6bd9f1f6-3a87-4e93-9853-9315128549ca))
(pad "12" smd rect (at -1.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 22 "CS") (pinfunction "~{CS}") (pintype "passive") (tstamp 8b11837e-180d-4e71-b438-d8ab4838bb2f))
(pad "13" smd rect (at -1.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "BS1") (pintype "passive") (tstamp 958327ae-4d67-4581-9474-ab2b8fcc32e0))
(pad "14" smd rect (at -0.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 18 "unconnected-(J2-BS0-Pad14)") (pinfunction "BS0") (pintype "passive") (tstamp 40f63192-7104-460e-889e-94333714f515))
(pad "15" smd rect (at -0.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "R/~{W}") (pintype "passive") (tstamp 1d531e70-26fe-4c9e-af33-32dbe95851ac))
(pad "16" smd rect (at 0.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "E/~{RD}") (pintype "passive") (tstamp 8256d353-3f22-4955-88f4-94b8ec337e49))
(pad "17" smd rect (at 0.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 16 "SCK") (pinfunction "D0") (pintype "passive") (tstamp 251011b4-0faa-4526-9de4-4187f65c2f4e))
(pad "18" smd rect (at 1.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 15 "MOSI") (pinfunction "D1") (pintype "passive") (tstamp 0ac6e783-092b-488d-8e7e-ec9c2e41376d))
(pad "19" smd rect (at 1.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 14 "unconnected-(J2-D2-Pad19)") (pinfunction "D2") (pintype "passive+no_connect") (tstamp e699f014-e998-45f6-a0df-4f59cfbb0e5c))
(pad "20" smd rect (at 2.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "D3") (pintype "passive") (tstamp f54bb7ae-b310-41ec-9531-48c6ee4bc9e2))
(pad "21" smd rect (at 2.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "D4") (pintype "passive") (tstamp 54f230e7-9449-4440-b561-eb148807af50))
(pad "22" smd rect (at 3.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "D5") (pintype "passive") (tstamp f8b399c9-f2dd-4022-bdbb-46d7fea3d686))
(pad "23" smd rect (at 3.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "D6") (pintype "passive") (tstamp be50cd44-d297-4975-aabb-4459766098fd))
(pad "24" smd rect (at 4.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "D7") (pintype "passive") (tstamp d3c8f361-066d-43f3-be3f-ecc080601eb7))
(pad "25" smd rect (at 4.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 20 "unconnected-(J2-NC-Pad25)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 5279f2e9-05b0-4d72-b704-a7c0eec78669))
(pad "26" smd rect (at 5.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 12 "Net-(J2-VSL)") (pinfunction "VSL") (pintype "passive") (tstamp 66154414-97a4-4ebb-a25a-0ec960278469))
(pad "27" smd rect (at 5.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "Net-(J2-VDDIO)") (pinfunction "VDDIO") (pintype "passive") (tstamp 61ce55eb-5744-4f58-aa16-df460f092f4d))
(pad "28" smd rect (at 6.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 3 "Net-(J2-VCOMH)") (pinfunction "VCOMH") (pintype "passive") (tstamp a181a054-c5e6-44f3-a47b-3c42a791aa52))
(pad "29" smd rect (at 6.75 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "+13V") (pinfunction "VCC") (pintype "passive") (tstamp 99e2c665-5715-4f46-9fd4-4acbcab99a43))
(pad "30" smd rect (at 7.25 2 180) (size 0.3 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "NC(GND)") (pintype "passive") (tstamp 8afd1aa2-ef5a-411c-8595-61fc474704ea))
(pad "MP" smd rect (at -9.15 -1.4 180) (size 1.8 2.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pintype "passive") (tstamp 9544f9df-8b3d-46c9-8ead-f4378dacd2a1))
(pad "MP" smd rect (at 9.15 -1.4 180) (size 1.8 2.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pintype "passive") (tstamp 61e77e84-ca33-4b0a-994a-05cad3c756fc))
(model "${KIPRJMOD}/Crenshaw.pretty/3d/FH12-30S-0.5SH.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tstamp 3de7f61c-0ee0-43ca-b5c0-c1b64f6dd5d6)
(at 47.1 39.4 180)
(descr "Capacitor SMD 0603 (1608 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 "Description" "0603 capacitor")
(property "LCSC" "C96446")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "25V")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/2072ceaf-1368-4597-bf97-639585162561")
(attr smd)
(fp_text reference "C2" (at 2.2 0 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp fa084ed2-9a08-4fee-a9d4-bbe28636fb32)
)
(fp_text value "10u" (at 0 -1.43 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 22cdeae1-0f43-4c87-a285-ee15935bceec)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0e4ceeb1-e842-4750-b14e-026c3bf07702)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5906122a-514e-4246-ad9b-30c8ed89e04a))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d73bd279-2805-452f-8464-edd14f3dd3c4))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4c4acfd4-2c9d-49de-b5f1-ff27bc0f3b53))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 99e1c665-9af2-4cb7-8eff-dbec0b20f6c1))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c29e701e-75f1-49c9-813f-7784aae2709a))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e6a2831a-039f-4019-9dd4-74cc31754e91))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 23d766cb-ed97-4866-935b-b95f8fff7ead))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6855bb3e-cbb0-41cf-b20b-15101cc7d855))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0dec40ef-67a6-450f-a383-92207a3c4c01))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp af109626-b92c-4d8e-b27e-4a1cafae634d))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+13V") (pintype "passive") (tstamp 0153aa4c-10bf-4c7b-bc7c-8f72b0776a0f))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp bf660bc5-c3a7-4cfa-a18f-99abd6ac1d72))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323" (layer "B.Cu")
(tstamp 3fec7bc7-0bc9-4b96-a1ce-3b8380d723ff)
(at 54 38.3)
(descr "SOD-323")
(tags "SOD-323")
(property "Description" "SOD-323 diode")
(property "LCSC" "C2128")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Diode, small symbol")
(property "ki_keywords" "diode")
(path "/2f7b271d-cb16-4b9e-8d3f-14c966f2d2e9")
(attr smd)
(fp_text reference "D2" (at 2.7 0 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9ce3df65-e3fa-4122-b313-a8aa9c94b0d6)
)
(fp_text value "1N4148" (at 0.1 -1.9 -180 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cbb14dca-2823-4e38-a92f-c6e3275657d3)
)
(fp_text user "${REFERENCE}" (at 0 1.85 -180 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b0846c24-0864-458d-b7ba-62c47c172c07)
)
(fp_line (start -1.61 -0.85) (end 1.05 -0.85)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d5a26c4d-4670-4dc7-a709-1a6c4619b9fc))
(fp_line (start -1.61 0.85) (end -1.61 -0.85)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b8d27ed8-29fb-4431-94c3-62b03bb57e9c))
(fp_line (start -1.61 0.85) (end 1.05 0.85)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c54a2beb-f623-4bfa-8d34-d731c6c8b5fb))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e201db37-8bd1-47aa-a371-e85967d2b8f2))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ad25a527-c8fe-4738-b73d-6ad4246bf7ee))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c9516bbc-fb17-4016-8ac0-96f3c4a3a238))
(fp_line (start 1.6 0.95) (end 1.6 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7247343b-9fa3-43a0-a75e-bef6ebd038f8))
(fp_line (start -0.9 -0.7) (end -0.9 0.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3f4a497a-f54f-40c5-bbef-3aac665071b1))
(fp_line (start -0.9 0.7) (end 0.9 0.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp efc92b62-a26e-4a15-bba1-607d0df392d0))
(fp_line (start -0.3 0) (end -0.5 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5a4d1117-eb4f-4e1c-bff6-8a4f762fd31e))
(fp_line (start -0.3 0) (end 0.2 0.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ea658f19-b7cc-47bf-b7c2-127b01c21324))
(fp_line (start -0.3 0.35) (end -0.3 -0.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9e0d81af-57b7-447a-99d7-fbbf82597794))
(fp_line (start 0.2 -0.35) (end -0.3 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e1a71001-c704-400c-a9e8-dea987907f62))
(fp_line (start 0.2 0) (end 0.45 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5f998c15-6fd8-4fe9-94cd-892832863862))
(fp_line (start 0.2 0.35) (end 0.2 -0.35)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4f5edc98-c4be-4ca6-861a-5ae243aa3c64))
(fp_line (start 0.9 -0.7) (end -0.9 -0.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 504fdd93-564c-436f-b270-dc032329b6a4))
(fp_line (start 0.9 0.7) (end 0.9 -0.7)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 34d0eeb7-b5ed-4bca-8565-28e114f690d3))
(pad "1" smd roundrect (at -1.05 0) (size 0.6 0.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 571432f6-b617-4829-af2f-53d588ea1b1c))
(pad "2" smd roundrect (at 1.05 0) (size 0.6 0.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(D1-K)") (pinfunction "A") (pintype "passive") (tstamp bae56d2b-6900-49ac-bb7c-961b0df4e534))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
(tstamp 54b89ec4-3259-45a7-ab56-0fe62ecc61e3)
(at 47.6 40.7 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 "Description" "0402 capacitor")
(property "LCSC" "C307331")
(property "Sheetfile" "Crenshaw.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "50V")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/01aa5e95-95f0-42de-a4b7-3c083a43577c")
(attr smd)
(fp_text reference "C1" (at 1.9 0 unlocked) (layer "B.SilkS")