-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphilphoc-luma.kicad_pcb
13956 lines (13904 loc) · 548 KB
/
philphoc-luma.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "ENIG")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(C1-Pad1)")
(net 3 "Net-(C2-Pad1)")
(net 4 "Net-(C3-Pad1)")
(net 5 "+3V3")
(net 6 "Net-(C5-Pad1)")
(net 7 "VBUS")
(net 8 "Net-(J2-Pad5)")
(net 9 "E75_RST")
(net 10 "E75_TX")
(net 11 "E75_RX")
(net 12 "Net-(J3-PadB5)")
(net 13 "Net-(J1-Pad2)")
(net 14 "D+")
(net 15 "unconnected-(J3-PadA8)")
(net 16 "Net-(J3-PadA5)")
(net 17 "D-")
(net 18 "Net-(J4-Pad1)")
(net 19 "unconnected-(J3-PadB8)")
(net 20 "PWM_R")
(net 21 "PWM_G")
(net 22 "PWM_B")
(net 23 "unconnected-(P2-Pad2)")
(net 24 "unconnected-(U1-Pad10)")
(net 25 "PWM_1")
(net 26 "unconnected-(U2-Pad1)")
(net 27 "unconnected-(U2-Pad2)")
(net 28 "unconnected-(U2-Pad4)")
(net 29 "unconnected-(U2-Pad5)")
(net 30 "unconnected-(U2-Pad6)")
(net 31 "unconnected-(U2-Pad7)")
(net 32 "unconnected-(U2-Pad8)")
(net 33 "unconnected-(U2-Pad9)")
(net 34 "unconnected-(U2-Pad10)")
(net 35 "unconnected-(U2-Pad11)")
(net 36 "unconnected-(U2-Pad14)")
(net 37 "unconnected-(U2-Pad15)")
(net 38 "unconnected-(U2-Pad23)")
(net 39 "unconnected-(U2-Pad24)")
(net 40 "unconnected-(U1-Pad2)")
(net 41 "unconnected-(U2-Pad25)")
(net 42 "Net-(J3-PadA4)")
(net 43 "Net-(Q3-Pad1)")
(net 44 "Net-(Q2-Pad1)")
(net 45 "Net-(Q2-Pad3)")
(net 46 "Net-(C6-Pad1)")
(net 47 "Net-(D1-Pad1)")
(net 48 "SWCLK")
(net 49 "SWDIO")
(net 50 "unconnected-(P1-Pad3)")
(net 51 "unconnected-(P1-Pad6)")
(net 52 "unconnected-(U1-Pad3)")
(net 53 "unconnected-(U1-Pad11)")
(net 54 "unconnected-(U1-Pad7)")
(net 55 "unconnected-(U1-Pad8)")
(net 56 "unconnected-(U1-Pad9)")
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 0f587689-65e5-4ddb-ac89-a9766bd0e991)
(at 57.8 76.75 -90)
(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 "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/c0ee9747-f834-4fbb-85a9-6f249f422fdb")
(attr smd)
(fp_text reference "Q3" (at -0.9 -2.25 -180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 69880f28-ab45-46bf-8eb3-43b3ebe24ef8)
)
(fp_text value "AO3401A" (at 0 2.4 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d49bc96-6bac-483d-bb94-9e634401b92e)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp f12e318a-5eab-44c1-a7fa-14fff2d9c61d)
)
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 4a2b2b14-07c0-4adc-b0e0-219d4a7b13b3))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 5d515023-8db3-41a3-a12a-4dff36fe6aac))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 8384b77c-5c1e-430b-aa16-ba28f03b80dd))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 8d208437-114a-4124-9e99-e8d1727452fa))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 2a4dbd10-132f-4558-a189-df790aa82842))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 8473434e-e286-4284-a4d7-e52b46e55685))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp d3545a79-36e7-4a32-95c7-91db6b5e04a1))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp d52347a5-cee5-46b8-a312-5e0bd72c948b))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 483a6339-023f-4380-b088-f4c15b1dfb16))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 639a5c61-414e-40df-b7a2-2b2649c89187))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp aa1bbef1-b1ff-418a-bf77-bb117e837617))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp c897c885-5ed7-4be5-a88c-689fb27b9589))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp cda58987-6796-4bf4-b370-798ee82e8e31))
(pad "1" smd roundrect (at -0.9375 -0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "Net-(Q3-Pad1)") (pinfunction "G") (pintype "input") (tstamp 2b7ec945-475f-4af2-85f0-bef7245dc929))
(pad "2" smd roundrect (at -0.9375 0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "VBUS") (pinfunction "S") (pintype "passive") (tstamp 53c9ac6b-f523-4fa4-a6cb-a1288ef81661))
(pad "3" smd roundrect (at 0.9375 0 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "Net-(J3-PadA4)") (pinfunction "D") (pintype "passive") (tstamp 36a006af-1a1f-4af5-b4f6-c03c2d29bf5e))
(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 "otter:E75-2G4M10S" (layer "F.Cu")
(tedit 5DFF6845) (tstamp 1ddaccf1-4d0b-44e5-b2c4-dfcabfdb2934)
(at 78 67.5 -90)
(descr "Single 2.4 GHz Wi-Fi and Bluetooth combo chip https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf")
(tags "Single 2.4 GHz Wi-Fi and Bluetooth combo chip")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061cb6385")
(attr smd)
(fp_text reference "U2" (at -10.61 8.43) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 75c56b73-e91e-4c3e-8fb7-792f0cb19b7b)
)
(fp_text value "E75-2G4M20S" (at 0 11.5 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e5d0253-acc2-4f0d-86a2-9343225c71a7)
)
(fp_text user "5 mm" (at -11.2 -14.375 -270) (layer "Cmts.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 28a2cccb-c5e0-45cc-a452-0336e0813126)
)
(fp_text user "5 mm" (at 7.8 -19.075) (layer "Cmts.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 475da62c-4191-4a2f-9bbc-249deb6d8df7)
)
(fp_text user "5 mm" (at 11.8 -14.375 -270) (layer "Cmts.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 52113c98-6292-463e-b72c-6132239a046a)
)
(fp_text user "Antenna" (at 0 -13 -270) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95ef5708-8f43-434f-b139-406a942bfd2d)
)
(fp_text user "KEEP-OUT ZONE" (at 0 -19 -270) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7987f0c-e4c6-4aae-a5d6-e1cfea057719)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1e3e2138-6822-4c2d-8218-89e25ffe3f06)
)
(fp_line (start -8.12 -19.865) (end -8.12 -13.445) (layer "F.SilkS") (width 0.12) (tstamp 5f698b56-319a-4e7a-acc3-9c3c494e9e07))
(fp_line (start 8 -19.865) (end 8 -12.58) (layer "F.SilkS") (width 0.12) (tstamp 87f4b7ba-c2c6-4980-9aad-767b93259fb9))
(fp_line (start 8.12 9.88) (end 7.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp 9c26b72f-cc8f-4568-a8a9-f55225c27554))
(fp_line (start -8.12 -19.865) (end 8 -19.865) (layer "F.SilkS") (width 0.12) (tstamp 9e07d90c-56c0-4c4f-855e-0025effe6c99))
(fp_line (start 8.12 9.1) (end 8.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp d8abe8ec-485d-44a5-b5c3-6d01cfd7fd8c))
(fp_line (start -8.12 9.1) (end -8.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp e93952e0-b012-4dcc-a5ce-167d55bdd575))
(fp_line (start -8.12 9.88) (end -7.12 9.88) (layer "F.SilkS") (width 0.12) (tstamp fa2a3668-9582-4466-b44e-6720f86e983f))
(fp_line (start -8.525 -20.75) (end -14 -16.43) (layer "Dwgs.User") (width 0.1) (tstamp 02b39166-9f7a-4094-8bda-785f43edf3d1))
(fp_line (start -0.525 -20.75) (end -14 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 05ce1968-bece-4bfd-ade8-db196bc5f219))
(fp_line (start 14 -18.045) (end 4 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 21a00f46-105c-4e4b-a84f-ed4acb136567))
(fp_line (start -8 -9.97) (end 5.475 -20.75) (layer "Dwgs.User") (width 0.1) (tstamp 22ebd635-5838-472e-8b50-03affaba3376))
(fp_line (start 1.475 -20.75) (end -12 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 32d1147a-7743-4223-ab67-db4aaf57b1b9))
(fp_line (start -4.525 -20.75) (end -14 -13.2) (layer "Dwgs.User") (width 0.1) (tstamp 4f489d12-440e-4cd0-933d-b6701961a6d6))
(fp_line (start 14 -19.66) (end 2 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 4fffb586-b915-45cc-a9a2-02cc516bb571))
(fp_line (start 14 -9.97) (end 14 -20.75) (layer "Dwgs.User") (width 0.1) (tstamp 518a4131-64e9-4ba1-a442-4691a53e2b81))
(fp_line (start -14 -9.97) (end -14 -20.75) (layer "Dwgs.User") (width 0.1) (tstamp 5413e9f0-4b25-4379-9452-5ca9a4dfa90a))
(fp_line (start 14 -16.43) (end 6 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 6a7b2059-d977-4612-95c2-3fe01e6e1434))
(fp_line (start 7.475 -20.75) (end -6 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 711f8627-5a3c-4396-84c3-6cf951de66c5))
(fp_line (start 13.475 -20.75) (end 0 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 8b64729b-0793-4b75-90fd-6a59598d76c3))
(fp_line (start -12.525 -20.75) (end -14 -19.66) (layer "Dwgs.User") (width 0.1) (tstamp 94dd7c58-d6bf-4547-ab6b-8de0e37bf355))
(fp_line (start 14 -14.815) (end 8 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp 97c3e317-415d-4b4f-8101-e9340ae149a3))
(fp_line (start -2.525 -20.75) (end -14 -11.585) (layer "Dwgs.User") (width 0.1) (tstamp b656459b-45a8-4466-bf55-064e0e9bbeb4))
(fp_line (start 14 -13.2) (end 10 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp c09e814d-1e36-4717-a65f-fd59e1f66b26))
(fp_line (start 11.475 -20.75) (end -2 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp ca51fbb9-a837-4f97-892a-477f8b6ae176))
(fp_line (start 14 -11.585) (end 12 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp d71f0cba-ee35-4c7d-8e36-e6e267833f6a))
(fp_line (start 9.475 -20.75) (end -4 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp d77aae80-2ebb-449c-8753-33e439daa878))
(fp_line (start 14 -20.75) (end -14 -20.75) (layer "Dwgs.User") (width 0.1) (tstamp dac75ca8-9fd9-4f25-9f22-82af6f3fdad2))
(fp_line (start 3.475 -20.75) (end -10 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp f0172b04-3281-4d5a-a911-69e210ac9ebd))
(fp_line (start -10.525 -20.75) (end -14 -18.045) (layer "Dwgs.User") (width 0.1) (tstamp f09822c0-7fac-44ce-a87f-366f7a49f250))
(fp_line (start 14 -9.97) (end -14 -9.97) (layer "Dwgs.User") (width 0.1) (tstamp f6fee84b-bfc5-4648-8e13-9d6d04247a23))
(fp_line (start -6.525 -20.75) (end -14 -14.815) (layer "Dwgs.User") (width 0.1) (tstamp fed97871-4d75-4194-a3d3-5b61f2a948a5))
(fp_line (start 8.4 -16) (end 8.6 -16.2) (layer "Cmts.User") (width 0.1) (tstamp 0239a7dc-4f11-4dd5-9564-b10e3cb51ffa))
(fp_line (start 8.4 -20.6) (end 8.6 -20.4) (layer "Cmts.User") (width 0.1) (tstamp 27e112bb-379e-4535-a70d-a0e678c371ae))
(fp_line (start 8.4 -16) (end 8.2 -16.2) (layer "Cmts.User") (width 0.1) (tstamp 86388482-65de-4962-9ebf-7d4d6c1dfcb6))
(fp_line (start 9.2 -13.875) (end 9.4 -13.675) (layer "Cmts.User") (width 0.1) (tstamp 8bdf40b7-7312-4b98-8ee3-177dfa3c1a46))
(fp_line (start -13.8 -13.875) (end -13.6 -14.075) (layer "Cmts.User") (width 0.1) (tstamp a5acfc13-660b-4475-8069-b28733a7b5eb))
(fp_line (start 13.8 -13.875) (end 13.6 -14.075) (layer "Cmts.User") (width 0.1) (tstamp bd5bb503-514b-468b-8abd-7e31ffd332b7))
(fp_line (start 8.4 -16) (end 8.4 -20.6) (layer "Cmts.User") (width 0.1) (tstamp c38bcb76-072f-4dac-ae3c-2878c12baaaa))
(fp_line (start -9.2 -13.875) (end -9.4 -13.675) (layer "Cmts.User") (width 0.1) (tstamp c8b9676b-221e-4cd7-863c-5d1cf75e0f5a))
(fp_line (start -13.8 -13.875) (end -9.2 -13.875) (layer "Cmts.User") (width 0.1) (tstamp cea40dd1-610e-46e4-9f6c-d23f0a3ddd3f))
(fp_line (start 9.2 -13.875) (end 9.4 -14.075) (layer "Cmts.User") (width 0.1) (tstamp d2524e3e-228a-471d-b6ab-7febc5f574b2))
(fp_line (start -9.2 -13.875) (end -9.4 -14.075) (layer "Cmts.User") (width 0.1) (tstamp e6835982-f526-41dd-96a3-dbcd46ab9645))
(fp_line (start 13.8 -13.875) (end 13.6 -13.675) (layer "Cmts.User") (width 0.1) (tstamp e6e4ba06-5100-4065-b809-01784b64c06b))
(fp_line (start -13.8 -13.875) (end -13.6 -13.675) (layer "Cmts.User") (width 0.1) (tstamp ed4682aa-5710-4438-810d-939bc55b81c3))
(fp_line (start 9.2 -13.875) (end 13.8 -13.875) (layer "Cmts.User") (width 0.1) (tstamp f1084b0d-b992-4d4c-9074-1c148a908ad5))
(fp_line (start 8.4 -20.6) (end 8.2 -20.4) (layer "Cmts.User") (width 0.1) (tstamp f95c6027-15cc-4326-9d31-38f6dba6baec))
(fp_line (start -14.25 -21) (end 14.25 -21) (layer "F.CrtYd") (width 0.05) (tstamp 77b08f8f-0764-4619-ae58-4700c5781fa2))
(fp_line (start -14.25 -9.72) (end -9.75 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp 8ef3e563-c1f8-49c5-a3f8-41d88bb0ede4))
(fp_line (start 9.75 -9.72) (end 14.25 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp 9a573a5f-16ed-4bac-a9aa-25b5d86e5dd3))
(fp_line (start 14.25 -21) (end 14.25 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp d5a6653e-3f63-4910-afbc-8ebf149f0d3d))
(fp_line (start -14.25 -21) (end -14.25 -9.72) (layer "F.CrtYd") (width 0.05) (tstamp e6ba8e5a-5295-4d99-9539-f0f44fc4499c))
(fp_line (start -8 -9.02) (end -8 9.76) (layer "F.Fab") (width 0.1) (tstamp 1b097a20-994c-479c-9cb5-f236aa61c8fa))
(fp_line (start 8 9.76) (end 8 -20) (layer "F.Fab") (width 0.1) (tstamp 64940337-2175-44aa-ab05-e1e92e28a356))
(fp_line (start -8 -20) (end 8 -20) (layer "F.Fab") (width 0.1) (tstamp 780076de-fb73-43f2-b5aa-1c95059ff25d))
(fp_line (start -7.5 -9.52) (end -8 -10.02) (layer "F.Fab") (width 0.1) (tstamp 9273aad3-d4fd-4f46-88b0-3a63b54fdc41))
(fp_line (start -8 -9.02) (end -7.5 -9.52) (layer "F.Fab") (width 0.1) (tstamp cf646d51-a95b-4acb-92eb-03438484ca3f))
(fp_line (start -8 -20) (end -8 -10.02) (layer "F.Fab") (width 0.1) (tstamp da49333a-2ae3-46a7-85b7-29e867a658b0))
(fp_line (start -8 9.76) (end 8 9.76) (layer "F.Fab") (width 0.1) (tstamp f7925461-00b9-45fa-8499-f4088f9215ce))
(pad "1" smd rect locked (at -7.627 -2.921 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(U2-Pad1)") (pinfunction "ADC") (pintype "input+no_connect") (tstamp 58633a66-53a7-4a80-bb62-9adf9147da29))
(pad "2" smd rect locked (at -7.627 -1.651 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(U2-Pad2)") (pinfunction "SPI_CLK") (pintype "bidirectional+no_connect") (tstamp d23ca5ac-bc4d-44a2-90ac-0b3eaa4af6f8))
(pad "3" smd rect locked (at -7.627 -0.381 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J2-Pad5)") (pinfunction "SPI_MISO") (pintype "bidirectional") (tstamp 89311f2b-7f4a-4f24-93ac-72dc2e834d5d))
(pad "4" smd rect locked (at -7.627 0.889 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U2-Pad4)") (pinfunction "SPI_MOSI") (pintype "bidirectional+no_connect") (tstamp a7be9e53-3c65-4638-b824-3d5371aceb9f))
(pad "5" smd rect locked (at -7.627 2.159 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "unconnected-(U2-Pad5)") (pinfunction "SPI_CS") (pintype "bidirectional+no_connect") (tstamp fac37166-6544-4a5a-8523-75c307b4539f))
(pad "6" smd rect locked (at -7.627 3.429 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "unconnected-(U2-Pad6)") (pinfunction "IO0") (pintype "bidirectional+no_connect") (tstamp a658002a-8a7e-43ad-8acb-33b00307f4c4))
(pad "7" smd rect locked (at -7.627 4.699 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "unconnected-(U2-Pad7)") (pinfunction "IO1") (pintype "bidirectional+no_connect") (tstamp c065b0a4-0b93-48f2-9339-44d26009eb1c))
(pad "8" smd rect locked (at -7.627 5.969 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(U2-Pad8)") (pinfunction "NC") (pintype "bidirectional") (tstamp 8e73e860-7df5-47ee-9d85-a51cffff4073))
(pad "9" smd rect locked (at -7.627 7.239 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "unconnected-(U2-Pad9)") (pinfunction "NC") (pintype "bidirectional") (tstamp 9a1807dc-d64a-4457-9c2b-93b6612c3b2e))
(pad "10" smd rect locked (at -5.4495 9.3935) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(U2-Pad10)") (pinfunction "IO4") (pintype "bidirectional+no_connect") (tstamp 59e03393-006d-471e-9536-bbbd75e54503))
(pad "11" smd rect locked (at -4.1795 9.3935) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "unconnected-(U2-Pad11)") (pinfunction "IO5") (pintype "bidirectional+no_connect") (tstamp bc90f0c0-612e-411d-9c41-1a8ebb2b39fc))
(pad "12" smd rect locked (at -2.9095 9.3935) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "E75_TX") (pinfunction "TXD_IO6") (pintype "bidirectional") (tstamp e09508cd-85e8-48bb-9bcb-9bab32279ab6))
(pad "13" smd rect locked (at -1.6395 9.3935) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "E75_RX") (pinfunction "RXD_IO7") (pintype "bidirectional") (tstamp d7cdfc88-84f0-4354-8fda-98af7b5493ec))
(pad "14" smd rect locked (at -0.3695 9.3935) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "unconnected-(U2-Pad14)") (pinfunction "IO8") (pintype "bidirectional+no_connect") (tstamp 86ed86f4-0151-45c5-905f-b4a048144531))
(pad "15" smd rect locked (at 0.889 9.398) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "unconnected-(U2-Pad15)") (pinfunction "IO9") (pintype "bidirectional+no_connect") (tstamp 77a2b2d1-2483-4c81-b108-6030d548a09e))
(pad "16" smd rect locked (at 2.159 9.398) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "PWM_1") (pinfunction "IO10") (pintype "bidirectional") (tstamp 9cb160c0-5456-4bd7-aa7f-b9388d25eb35))
(pad "17" smd rect locked (at 3.429 9.398) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 66749c6a-b16f-43be-bab1-76caa7a8a44a))
(pad "18" smd rect locked (at 4.699 9.398) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9ee66366-9074-4bc0-8447-8c0b7199acdf))
(pad "19" smd rect locked (at 7.731 7.2175 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "PWM_R") (pinfunction "IO11") (pintype "bidirectional") (tstamp 06b57733-f545-49fc-900f-f90ae9b9047c))
(pad "20" smd rect locked (at 7.731 5.9475 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "PWM_G") (pinfunction "IO12") (pintype "bidirectional") (tstamp 0d33a0a3-6701-41b8-8040-7340c4d8cd33))
(pad "21" smd rect locked (at 7.731 4.6775 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "PWM_B") (pinfunction "IO13") (pintype "bidirectional") (tstamp b2837d6b-6cc1-45c4-aa75-fd2bb220208e))
(pad "22" smd rect locked (at 7.731 3.4075 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "E75_RST") (pinfunction "RST") (pintype "input") (tstamp 0bb36be2-ca53-49e2-aeb3-4c5728e3d819))
(pad "23" smd rect locked (at 7.731 2.1375 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "unconnected-(U2-Pad23)") (pinfunction "IO14") (pintype "bidirectional+no_connect") (tstamp a0fa8234-8777-4a66-8b79-9ecbb37d6605))
(pad "24" smd rect locked (at 7.731 0.8675 90) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "unconnected-(U2-Pad24)") (pinfunction "IO15") (pintype "bidirectional+no_connect") (tstamp 33aa4306-27d6-4090-96fe-2e0a2a713e0b))
(pad "25" smd rect locked (at 7.738 -0.381 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "unconnected-(U2-Pad25)") (pinfunction "IO16") (pintype "bidirectional+no_connect") (tstamp a631a287-dbe8-4491-9924-f1eeb226bfe0))
(pad "26" smd rect locked (at 7.738 -1.651 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 89bc2a9a-0459-4374-90b7-e699bb20f381))
(pad "27" smd rect locked (at 7.738 -2.921 270) (size 2 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 956ad4a4-cb8d-4eef-aba4-03ec6d18e652))
(model "${KISYS3DMOD}/RF_Module.3dshapes/ESP32-WROOM-32.wrl"
(offset (xyz 0 1.5 0))
(scale (xyz 0.875 1.15 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 283ed2be-f188-4938-9d07-b9e8bad5f0d4)
(at 94.75 84.5)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/4335c9f2-6efb-4b5c-8474-bc3351b7a55c")
(attr smd)
(fp_text reference "R2" (at 0.05 1 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 7d595168-bd99-442a-961b-c33b87293e60)
)
(fp_text value "5k1" (at 0 -1.325) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0520a89-1ce8-4759-a56c-c54f903f83db)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 6213c200-cc8a-481c-883f-35278b9518d8))
(pad "1" smd rect locked (at -0.47 0) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "Net-(D1-Pad1)") (pintype "passive") (tstamp 4b3ca595-07d8-471d-a599-10e87e77b20e))
(pad "2" smd rect locked (at 0.47 0) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VBUS") (pintype "passive") (tstamp 29c8820e-a6aa-4b1b-a048-868ed62704c1))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:C_0402" (layer "F.Cu")
(tedit 5E580EF6) (tstamp 2e2c4431-7ad4-4101-b72a-e48147e24a71)
(at 76.25 77.5 90)
(descr "Capacitor 0402")
(tags "C Capacitor 0402")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/7d2b7e50-54f9-4eb9-a054-6f2b1475b0d2")
(attr smd)
(fp_text reference "C1" (at -2.05 -2.75 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 6d4e5957-6764-40d7-9d3e-e16ba095c79a)
)
(fp_text value "100n" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e9c7b14-3332-49ee-a587-5014a80db3f9)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 8a56a0e1-0b83-4459-b285-5106d6ccafbb))
(pad "1" smd rect locked (at -0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(C1-Pad1)") (pintype "passive") (tstamp 8cb63406-42c5-417f-9384-cf8cdba62340))
(pad "2" smd rect locked (at 0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 5600b446-cc57-4d99-a6dd-3cb2f076483c))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (layer "F.Cu")
(tedit 5E476F32) (tstamp 2fdba96d-8ce8-4d3e-9e54-485e4b754b6d)
(at 77.5 82.25 -90)
(descr "TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSSOP SO")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/1b968fe8-a219-4fec-a50f-86b849673a18")
(attr smd)
(fp_text reference "U1" (at 0.05 -4.1) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 226c4ea5-b6af-451e-b29d-2a94ad726afe)
)
(fp_text value "STM32G030F6P6" (at 0 4.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b40689db-57cf-4e06-b52d-fcc993a49348)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 7940ce9d-6780-42ab-977d-55ecb6638d0e)
)
(fp_line (start 0 -3.385) (end -3.6 -3.385) (layer "F.SilkS") (width 0.12) (tstamp 27d47ce0-2b8c-4774-aa12-b6fd83dfad5e))
(fp_line (start 0 -3.385) (end 2.2 -3.385) (layer "F.SilkS") (width 0.12) (tstamp 9aebdd83-e866-49e8-bf4c-b9393c5a3566))
(fp_line (start 0 3.385) (end -2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp a58d21d4-dd96-41b3-b1c1-75d2e3ab7a88))
(fp_line (start 0 3.385) (end 2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp a5ccca2d-85d9-43da-8654-27b467654c96))
(fp_line (start 3.85 -3.5) (end -3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 31845257-bd99-4a67-ac66-e53af07f371d))
(fp_line (start -3.85 -3.5) (end -3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 48811ae8-b2bb-40ac-a699-e7a5326ad9b1))
(fp_line (start 3.85 3.5) (end 3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 51fe5116-5300-4b15-89c9-16281aec6f42))
(fp_line (start -3.85 3.5) (end 3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 788e6fdc-2e3f-4810-b4b1-af94474719fb))
(fp_line (start -2.2 -2.25) (end -1.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 9b09a3d1-318a-4cd9-8546-f1464617e30c))
(fp_line (start 2.2 -3.25) (end 2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp 9babdea8-29c2-4989-92a7-ace377ff0269))
(fp_line (start 2.2 3.25) (end -2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp be3d227f-e404-4470-833a-3faddcc68ee8))
(fp_line (start -2.2 3.25) (end -2.2 -2.25) (layer "F.Fab") (width 0.1) (tstamp c4b0c0b7-8404-4e7c-94f3-9f6038cf9f81))
(fp_line (start -1.2 -3.25) (end 2.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp ee151897-828d-4dad-ba88-5a5058990860))
(pad "1" smd roundrect (at -2.8625 -2.925 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(J4-Pad1)") (pinfunction "PB7/PB8") (pintype "input") (tstamp 473b234d-a338-41ae-a2d0-15f27538be1f))
(pad "2" smd roundrect (at -2.8625 -2.275 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "unconnected-(U1-Pad2)") (pinfunction "PB9/PC14/OSC32IN") (pintype "input") (tstamp fcdbee2c-30fe-4993-a590-12ffba9005c1))
(pad "3" smd roundrect (at -2.8625 -1.625 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 52 "unconnected-(U1-Pad3)") (pinfunction "PC15/OSC32OUT") (pintype "input") (tstamp 7d296ca1-d664-4f70-b741-25449ca6bb6d))
(pad "4" smd roundrect (at -2.8625 -0.975 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pinfunction "VDDA") (pintype "power_in") (tstamp 97adbd02-38aa-4619-99b2-129bc3471854))
(pad "5" smd roundrect (at -2.8625 -0.325 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 5c3637c3-ad74-4ac5-89e8-a6988848c08e))
(pad "6" smd roundrect (at -2.8625 0.325 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(C1-Pad1)") (pinfunction "NRST") (pintype "input") (tstamp f62f4b0d-1f97-465f-b7df-0d21eb09a87d))
(pad "7" smd roundrect (at -2.8625 0.975 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 54 "unconnected-(U1-Pad7)") (pinfunction "PA0") (pintype "bidirectional") (tstamp 2348eda7-ad88-4ae2-8fc4-0760b141fbfc))
(pad "8" smd roundrect (at -2.8625 1.625 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 55 "unconnected-(U1-Pad8)") (pinfunction "PA1") (pintype "bidirectional") (tstamp f698ff78-42f0-4dc0-9ff7-7b404a2908c6))
(pad "9" smd roundrect (at -2.8625 2.275 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 56 "unconnected-(U1-Pad9)") (pinfunction "PA2") (pintype "bidirectional") (tstamp 3a56588e-1a5f-44ce-bdc3-d0bbc8fbfb36))
(pad "10" smd roundrect (at -2.8625 2.925 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "unconnected-(U1-Pad10)") (pinfunction "PA3") (pintype "bidirectional") (tstamp a1e7bd35-d578-4622-84a8-4e91f93f7a4a))
(pad "11" smd roundrect (at 2.8625 2.925 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "unconnected-(U1-Pad11)") (pinfunction "PA4") (pintype "bidirectional") (tstamp 0c41c4a6-a8d1-4f6d-ae57-190cd169a3d1))
(pad "12" smd roundrect (at 2.8625 2.275 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad1)") (pinfunction "PA5") (pintype "bidirectional") (tstamp b598ce2c-fe5b-49c6-8a56-9381e5db6794))
(pad "13" smd roundrect (at 2.8625 1.625 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C5-Pad1)") (pinfunction "PA6") (pintype "bidirectional") (tstamp 0a688352-8717-42f8-adb2-65b5b5c39458))
(pad "14" smd roundrect (at 2.8625 0.975 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "Net-(C6-Pad1)") (pinfunction "PA7") (pintype "bidirectional") (tstamp 8b7ce8e5-6aea-473e-af72-72cd8d3292b7))
(pad "15" smd roundrect (at 2.8625 0.325 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C3-Pad1)") (pinfunction "PA8/PB0/PB1/PB2") (pintype "bidirectional") (tstamp 5ac84ff8-9714-4d62-805c-927945a3ee11))
(pad "16" smd roundrect (at 2.8625 -0.325 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "D-") (pinfunction "PA11[PA9]") (pintype "bidirectional") (tstamp f8293bd0-5b90-4aab-a217-9c7ee3b99ee4))
(pad "17" smd roundrect (at 2.8625 -0.975 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "D+") (pinfunction "PA12[PA10]") (pintype "bidirectional") (tstamp 2d2fae3e-e910-4b21-93e0-05216a6b0c16))
(pad "18" smd roundrect (at 2.8625 -1.625 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "SWDIO") (pinfunction "PA13") (pintype "bidirectional") (tstamp 6c8d18b1-a090-47e4-83a1-a739d89eb8d8))
(pad "19" smd roundrect (at 2.8625 -2.275 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "SWCLK") (pinfunction "PA15/PA14-BOOT0") (pintype "bidirectional") (tstamp bc335b62-07c8-43f8-a65c-cfd4c2f47567))
(pad "20" smd roundrect (at 2.8625 -2.925 270) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "Net-(D1-Pad1)") (pinfunction "PB3/PB4/PB5/PB6") (pintype "bidirectional") (tstamp 8c7b3172-f687-40e3-9d79-a9302abbe16f))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/TSSOP-20_4.4x6.5mm_P0.65mm.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")
(tedit 59FED5CC) (tstamp 34e4c084-25ed-4154-b584-44597cd86748)
(at 65 67.075 180)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061cbc80d")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 8ce5f070-df4e-4d8d-b78f-3ef1b6a0875c)
)
(fp_text value "E75_proc" (at 0 12.49) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00d22a94-4415-4f7c-bba5-9ac8913c5f96)
)
(fp_text user "${REFERENCE}" (at 0 5.08 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 317a2bf1-677c-46ed-b6b4-eef240063844)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 23d0e929-f5a1-4c62-b387-0887d9659f38))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 61d63f1b-dbdf-4e18-9e78-d70eac21ae65))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 679e5b0e-a017-43d8-8845-79a886253d82))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 8f577817-ea32-42aa-bedc-809b6d0ffec6))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp acee6893-1f8a-43f2-93df-e612d6c0d353))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp cf02db11-2ff8-4f79-b3e9-9802575ab786))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 126f84ae-523c-4569-b046-7ee124f46a5a))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 30f27120-8919-4f22-a0e2-49bd0c1104a0))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 657bd73d-9c40-4ca8-b3ea-e75927d498b6))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp ae121872-4c9f-495f-b631-8204082b9825))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 2480dd87-1dff-4a50-81a2-52ef161ac45c))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4f69bb40-cbf2-45c5-8c23-3e0667e1f6c1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 61b6f2c4-b226-47d6-bbd8-9d67fcaf35c3))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 7d4fcb23-c914-48df-941d-94cf5f1f85b5))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp ed74c2b7-a3ac-4886-84f5-377b5e1bbbfc))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp b8a69dfb-4ff5-4171-8662-f4fd81f9fc4a))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "E75_RX") (pinfunction "Pin_2") (pintype "passive") (tstamp d5926ae5-e972-4dcc-8335-d8bd16db6dbc))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "E75_TX") (pinfunction "Pin_3") (pintype "passive") (tstamp 142e2caa-2b2c-4696-83a8-bdbb5b82c7f7))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "E75_RST") (pinfunction "Pin_4") (pintype "passive") (tstamp 3036986f-780f-4e5b-8e4b-4e66acc1e072))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "Net-(J2-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp eab7c737-4450-406f-9f80-b2e18bb45dd6))
)
(footprint "otter:TC2030" (layer "F.Cu")
(tedit 5BE5615D) (tstamp 38cad123-e6f8-46ac-bb65-7bf207c8a5a7)
(at 85.25 83.75)
(descr "Tag-Connect TC2030-NL footprint by carloscuev@gmail.com")
(tags "Tag-Connect TC2030-NL")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/a02ea754-ab47-481b-b461-0ad87c2c1e30")
(clearance 0.127)
(attr exclude_from_pos_files)
(fp_text reference "P1" (at -3.025 -2.075) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1b03311f-6d16-4213-808a-96597816d097)
)
(fp_text value "TC2030_STM32" (at 0 2.667) (layer "F.SilkS") hide
(effects (font (size 0.75692 0.75692) (thickness 0.127)))
(tstamp 3e85f78b-004a-4a21-9691-8920952aaa64)
)
(fp_line (start -3.2639 -0.7239) (end -2.0828 -1.905) (layer "F.SilkS") (width 0.127) (tstamp 2f274d35-c819-4fa4-bf08-0f05441a1514))
(fp_line (start 2.6035 -1.905) (end -2.0828 -1.905) (layer "F.SilkS") (width 0.127) (tstamp 5e3106c4-aefe-4ef5-8aa8-6f8a9c16fe7d))
(fp_line (start 2.6035 1.905) (end -2.0828 1.905) (layer "F.SilkS") (width 0.127) (tstamp 88c5e61d-a3df-45b2-8bd8-f2c4869aaa32))
(fp_line (start -3.2639 0.7239) (end -2.0828 1.905) (layer "F.SilkS") (width 0.127) (tstamp df70582b-c4f2-479d-8c60-1cee46d8e0bc))
(fp_line (start 3.556 -0.9525) (end 3.556 0.9525) (layer "F.SilkS") (width 0.127) (tstamp f3df0678-96d4-4652-9001-a89868c1f45e))
(fp_arc (start 3.556 0.9525) (mid 3.277019 1.626019) (end 2.6035 1.905) (layer "F.SilkS") (width 0.127) (tstamp 189734b9-8485-4c30-8cf0-796856677229))
(fp_arc (start 2.6035 -1.905) (mid 3.277019 -1.626019) (end 3.556 -0.9525) (layer "F.SilkS") (width 0.127) (tstamp bf38fd98-a723-4065-8c4e-fb6cd31212e5))
(fp_arc (start -3.2639 0.7239) (mid -3.563749 0) (end -3.2639 -0.7239) (layer "F.SilkS") (width 0.127) (tstamp c530039a-9616-48cc-81ab-7c9b301e469d))
(pad "" np_thru_hole circle locked (at 2.54 1.016) (size 0.98552 0.98552) (drill 0.98552) (layers *.Cu *.Mask "F.SilkS") (tstamp 145b7d46-7bd4-4ee4-8136-50beb81c7f77))
(pad "" np_thru_hole circle locked (at -2.54 0) (size 0.98806 0.98806) (drill 0.98806) (layers *.Cu *.Mask "F.SilkS") (tstamp 14c24f6d-c2bf-4b01-9d4b-7f0755e08445))
(pad "" np_thru_hole circle locked (at 2.54 -1.016) (size 0.98552 0.98552) (drill 0.98552) (layers *.Cu *.Mask "F.SilkS") (tstamp 4b4dab82-e313-4c7a-b63b-b5f6b48d648b))
(pad "1" connect circle locked (at -1.27 0.635) (size 0.78486 0.78486) (layers "F.Cu" "F.Mask")
(net 5 "+3V3") (pinfunction "VCC") (pintype "passive") (tstamp 638185a1-f9cc-47fc-9abd-4b70c0817d94))
(pad "2" connect circle locked (at -1.27 -0.635) (size 0.78486 0.78486) (layers "F.Cu" "F.Mask")
(net 49 "SWDIO") (pinfunction "SWDIO/TMS") (pintype "passive") (tstamp 8bdd2fb5-8fc3-46f1-ade7-9687b983a86b))
(pad "3" connect circle locked (at 0 0.635) (size 0.78486 0.78486) (layers "F.Cu" "F.Mask")
(net 50 "unconnected-(P1-Pad3)") (pinfunction "~{RESET}") (pintype "passive") (tstamp 7d7305a7-c7da-4881-b215-37c7f2ad171a))
(pad "4" connect circle locked (at 0 -0.635) (size 0.78486 0.78486) (layers "F.Cu" "F.Mask")
(net 48 "SWCLK") (pinfunction "SWCLK/TCK") (pintype "passive") (tstamp 756b369e-c079-4259-88cc-888037ab7efa))
(pad "5" connect circle locked (at 1.27 0.635) (size 0.78486 0.78486) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp c35e417c-496e-4303-b5c4-321c3cede22a))
(pad "6" connect circle locked (at 1.27 -0.635) (size 0.78486 0.78486) (layers "F.Cu" "F.Mask")
(net 51 "unconnected-(P1-Pad6)") (pinfunction "SWO/TDO") (pintype "passive+no_connect") (tstamp e702a3ea-106a-406d-9f17-c06eda1e35d1))
)
(footprint "Package_TO_SOT_SMD:SOT-89-3" (layer "F.Cu")
(tedit 5C33D6E8) (tstamp 3d8baafd-ef7f-46e6-bcc5-da1e60b9d332)
(at 65.7 77 -90)
(descr "SOT-89-3, http://ww1.microchip.com/downloads/en/DeviceDoc/3L_SOT-89_MB_C04-029C.pdf")
(tags "SOT-89-3")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/aab6981d-b811-4678-ba81-7dc0322583b0")
(attr smd)
(fp_text reference "U3" (at 2.1875 -1.6 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 8cca1b09-0c35-42ba-be9f-f20bf4069301)
)
(fp_text value "AP2204R-3.3" (at 0.3 3.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45bb9484-9ae1-47cf-9a2c-4543cc41d5ec)
)
(fp_text user "${REFERENCE}" (at 0.5 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 706b9711-0d1c-4f75-bf2a-fda3be6b558f)
)
(fp_line (start 1.66 1.05) (end 1.66 2.36) (layer "F.SilkS") (width 0.12) (tstamp 0102c607-91ee-4c16-b673-68495e42d42c))
(fp_line (start -2.2 -2.13) (end -1.06 -2.13) (layer "F.SilkS") (width 0.12) (tstamp 0dcbe919-b813-4996-857f-4ec38b550ef5))
(fp_line (start 1.66 -2.36) (end 1.66 -1.05) (layer "F.SilkS") (width 0.12) (tstamp 46f31c72-c0b0-43ba-ab8a-a973ca33fa61))
(fp_line (start -1.06 -2.36) (end 1.66 -2.36) (layer "F.SilkS") (width 0.12) (tstamp 8d967483-ce1d-4216-ac40-15109cd72075))
(fp_line (start 1.66 2.36) (end -1.06 2.36) (layer "F.SilkS") (width 0.12) (tstamp 8db96a10-4496-4156-bdbf-a81f39345905))
(fp_line (start -1.06 -2.36) (end -1.06 -2.13) (layer "F.SilkS") (width 0.12) (tstamp df42a485-253b-4b88-8fc2-4678c67edda5))
(fp_line (start -1.06 2.36) (end -1.06 2.13) (layer "F.SilkS") (width 0.12) (tstamp fb41cc0e-d140-4f57-b3a3-6d25b7afa3f8))
(fp_line (start 2.55 -2.5) (end -2.55 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 01ff8c9e-30be-4467-bfbd-141d5111b880))
(fp_line (start -2.55 2.5) (end -2.55 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 1302dee6-574b-429b-94aa-22ae4145300e))
(fp_line (start -2.55 2.5) (end 2.55 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 1bb95ae5-d396-4a1c-ab33-7fca51426379))
(fp_line (start 2.55 -2.5) (end 2.55 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 56e665f7-20a2-40d3-b324-5a5f0aebe75c))
(fp_line (start 1.55 2.25) (end -0.95 2.25) (layer "F.Fab") (width 0.1) (tstamp 3a006f08-ed48-4c6d-a135-09daa67d4e5f))
(fp_line (start -0.95 2.25) (end -0.95 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6128dedc-c88e-4f88-9e86-90453a50a976))
(fp_line (start 0.05 -2.25) (end 1.55 -2.25) (layer "F.Fab") (width 0.1) (tstamp 8d05b0fb-3c68-4616-bd72-9a6e758c83b7))
(fp_line (start -0.95 -1.25) (end 0.05 -2.25) (layer "F.Fab") (width 0.1) (tstamp b8f50047-ac6e-44d0-8e29-467a8907e5d2))
(fp_line (start 1.55 -2.25) (end 1.55 2.25) (layer "F.Fab") (width 0.1) (tstamp bcfefb7c-5f34-4750-8017-7fdfe21ca96c))
(pad "1" smd rect (at -1.65 -1.5 270) (size 1.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VBUS") (pinfunction "VIN") (pintype "power_in") (tstamp ab48fed1-2a02-4246-a72b-dcdae7d3ae2a))
(pad "2" smd custom (at -1.5625 0 270) (size 1.475 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy 3.8625 0.8665)
(xy 0.7375 0.8665)
(xy 0.7375 -0.8665)
(xy 3.8625 -0.8665)
) (width 0) (fill yes))
) (tstamp 5c39175f-8ea9-453a-91b0-f77ac5e371c4))
(pad "3" smd rect (at -1.65 1.5 270) (size 1.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (pinfunction "VOUT") (pintype "power_out") (tstamp 42656614-80d1-451d-9b14-a15de7a85729))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-89-3.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 3de27c1c-897a-4a6c-b0f7-6b3c6fd91fd1)
(at 70 77.5 90)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/308c252a-5070-4449-a975-beb5db955244")
(attr smd)
(fp_text reference "R4" (at -1.3 -0.15 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp c47c1013-522e-4afa-9dd5-776b2bbec89a)
)
(fp_text value "100k" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56ba8f65-c244-4416-8ed2-b5691db880ab)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 60b868e3-a9f8-4d20-ae5a-40ca53af4adb))
(pad "1" smd rect locked (at -0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C2-Pad1)") (pintype "passive") (tstamp 3dd67e23-151f-4030-9f89-07540f8b3bb5))
(pad "2" smd rect locked (at 0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "PWM_1") (pintype "passive") (tstamp e16db058-fa43-40bf-9cff-c2ed4fab6ab5))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 49fbb162-ed97-4907-b60a-506613a9940b)
(at 94.75 83.5 180)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/862359ce-4e3d-4b5b-92c3-a7d1e921a220")
(attr smd)
(fp_text reference "R1" (at -1.3 -0.05 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp abcba4f1-6f59-48a1-8ae5-91c9b3b973a4)
)
(fp_text value "20" (at 0 -1.325) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eda12c9f-b24f-4458-a3cc-61f318dc57fe)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 787fdc1e-7e28-46d4-9188-bbfe7882ee50))
(pad "1" smd rect locked (at -0.47 0 180) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(J1-Pad2)") (pintype "passive") (tstamp 8bf24a80-dffc-49df-8d9b-da527be5fdc9))
(pad "2" smd rect locked (at 0.47 0 180) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "Net-(D1-Pad1)") (pintype "passive") (tstamp e0ba3ee5-78a5-4635-88aa-b5b3d5589222))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 51b468f9-14fa-444d-85e1-be01ba5c1c27)
(at 107.5 56.5)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/976fb8ae-d91c-4c2e-8249-5d057396a975")
(attr exclude_from_pos_files)
(fp_text reference "J7" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 75ec73d6-6af4-4b2c-911f-d06573d2b96a)
)
(fp_text value "M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38e2fa59-b941-49e2-b41e-7634dff36eec)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 877edcf3-c0e6-4c1c-918c-d9cb9b6a9655)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp caafef1d-e39d-4924-ad5e-ba86976fd4a4))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp a4e52df1-844f-444a-8c2d-61a2e0a90491))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 04b0e23b-41e7-407e-809f-f67e5848ab6a))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 14165272-a234-4d99-8aea-2b785917d5c8))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 250549c0-f328-461b-9ee5-f5302342bbe0))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 34670903-c1f7-4946-a137-57d35ff4399d))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 3dbdc98e-5c04-4989-95ad-f1be9e032cda))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 529d624e-9fbf-4529-9905-5048e24e4f13))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 71b6b33c-9cf0-4784-a81d-28b806557f02))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp d9ab214c-1521-4805-b231-e96924b752cc))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp f3ee7a52-e61f-443b-bdc9-52960a316aff))
)
(footprint "Diode_SMD:D_SOD-123F" (layer "F.Cu")
(tedit 587F7769) (tstamp 584c482d-1251-462e-825c-3a0578bafc6d)
(at 60 61)
(descr "D_SOD-123F")
(tags "D_SOD-123F")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/a81cc976-8466-4257-9346-85f7dce370d8")
(attr smd)
(fp_text reference "D2" (at -2.95 0) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 8b56f428-76c6-47f4-814c-d4162e003c52)
)
(fp_text value "D_Small" (at 0 2.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6962950-4b71-4ba8-ac78-7b9bfb3edf70)
)
(fp_text user "${REFERENCE}" (at -0.127 -1.905) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp e721791d-da51-4bae-ab44-002be5ea386c)
)
(fp_line (start -2.2 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 0470f6f8-3373-4410-9688-3749de7c241a))
(fp_line (start -2.2 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 7ea15999-0781-4c2e-a266-2adaf5a39946))
(fp_line (start -2.2 -1) (end -2.2 1) (layer "F.SilkS") (width 0.12) (tstamp a632aa3e-0113-4f5d-90b5-27bac9ed8392))
(fp_line (start 2.2 -1.15) (end 2.2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 49389a66-8741-452b-8284-834f65c51e1b))
(fp_line (start -2.2 -1.15) (end -2.2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 5126ac84-dc56-4e60-b120-fd81ef65886b))
(fp_line (start 2.2 1.15) (end -2.2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 78ce8c1e-89e0-4419-807a-81faccaa13a1))
(fp_line (start -2.2 -1.15) (end 2.2 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp d5605fa7-538d-473c-8da8-4e6409672b1d))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 2330617f-82c2-43f9-8a7c-826ddfdbb89f))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 238ce6dc-0557-409a-ab04-93448fccaac4))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 262fe442-673c-4133-92f6-23f6d42651f0))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 321c97ce-037e-4926-8c05-7be14a63f7fd))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 4ed25a91-62bc-460f-b416-f09c2b72ae30))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 500298f6-b9ed-4e53-bde6-024545f1a90a))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 5fa23453-de94-4f47-ab66-80326a468ae1))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 6f75ea3e-6135-44f5-9313-1aad839ab6f6))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp b9fce689-53c2-4275-98d8-2c8da9bd740a))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp ca0eab8e-e3fd-464d-bb03-d1603b8a651b))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp e7130644-c4ae-4f9d-997d-5b4fa9d09578))
(pad "1" smd rect (at -1.4 0) (size 1.1 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VBUS") (pinfunction "K") (pintype "passive") (tstamp 395c69d5-4334-48e5-8637-2379eafb3eeb))
(pad "2" smd rect (at 1.4 0) (size 1.1 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "A") (pintype "passive") (tstamp f63dd01b-d31b-4c8b-8944-cc162e8dda4e))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123F.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:C_0603" (layer "F.Cu")
(tedit 5E580EE3) (tstamp 5c98cb3c-93cf-496b-a0fd-51386a56d77e)
(at 65.25 71.5 -90)
(descr "Capacitor 0603")
(tags "C Capacitor 0603")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061cc1eb4")
(attr smd)
(fp_text reference "C4" (at -1.6 0.05 -180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9801ccc8-5152-40bb-932d-67072f8cd8ad)
)
(fp_text value "10u" (at 0 -3.475 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6c96c0d-4cf7-4e5a-ad96-cb52e5fda138)
)
(fp_line (start 0 0.35) (end 0 -0.35) (layer "F.SilkS") (width 0.12) (tstamp dba4ad5b-8704-4fc8-9247-b9c4709cf1cf))
(pad "1" smd rect locked (at -0.75 0 270) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (pintype "passive") (tstamp d92eb7fd-0303-4aaa-b39e-7bf35dbafd2d))
(pad "2" smd rect locked (at 0.75 0 270) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 842c62a3-da79-4cc2-9eb8-0e81d553171d))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123F" (layer "F.Cu")
(tedit 587F7769) (tstamp 5cfe5589-d53d-4797-82e8-c31b86c5fbb8)
(at 91.5 84 180)
(descr "D_SOD-123F")
(tags "D_SOD-123F")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/821e64c1-de83-47b7-9fd4-81ffa81049bd")
(attr smd)
(fp_text reference "D1" (at 0 1.5) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 8233de19-691a-4981-9177-f647c5ab854c)
)
(fp_text value "5V1" (at 0 2.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 044452e8-a3b4-4d08-9835-701cc0a60807)
)
(fp_text user "${REFERENCE}" (at -0.127 -1.905) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 5bd9bd00-e17c-4137-8daf-974f4e7eb479)
)
(fp_line (start -2.2 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 0886377c-acad-41ba-a045-1d436eadaaab))
(fp_line (start -2.2 -1) (end -2.2 1) (layer "F.SilkS") (width 0.12) (tstamp e1640c92-0a7b-4990-ae42-e9436c2a460d))
(fp_line (start -2.2 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp fb6ae0ae-5f09-42f3-a277-43e9524a252b))
(fp_line (start 2.2 -1.15) (end 2.2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 0454b0ed-4e94-46b1-9058-7210ddee62e4))
(fp_line (start 2.2 1.15) (end -2.2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 5c5b3284-d7e2-4069-8087-eaf4a8346272))
(fp_line (start -2.2 -1.15) (end -2.2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 752fa345-d8be-4e99-aad1-e88671f99643))
(fp_line (start -2.2 -1.15) (end 2.2 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 794e55a0-75fe-436a-8b64-c2f248c65f18))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 37e843e9-2538-4a91-9a9b-f536fa0a9e84))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 3d0ee88c-fab5-44ff-91c4-a21e663a09de))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 418a0e9c-c95f-4d4a-a88f-ec13faf3303c))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 588d3cbf-6c0a-4102-8f72-574f6ea20133))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 677a1070-c11b-49a9-8186-12e0a3e880b1))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 6db6b2d8-cd53-4924-910c-ce03370c85ba))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7288ce3d-ad6e-43f5-96ca-99065d7798d0))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 7803a0ea-b6d3-457b-b195-42c8dc80b579))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 7fd58396-b4e5-46f4-aa37-499fb1457243))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 8d33a8d3-c5cc-40b4-ba71-6923d60927e2))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 92cf4db4-2dba-4763-9cd8-3c7f8aff8f24))
(pad "1" smd rect (at -1.4 0 180) (size 1.1 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 502090da-c5a3-4316-9f8a-2de92274b2b8))
(pad "2" smd rect (at 1.4 0 180) (size 1.1 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "A") (pintype "passive") (tstamp bf046f55-cad5-4e6d-8fc5-1978a2a4f4dc))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123F.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_PTS810" (layer "F.Cu")
(tedit 5B0610A8) (tstamp 5f3f0408-a3b0-4f22-91e2-9a024ab006ab)
(at 78 56 180)
(descr "C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf")
(tags "SPST Button Switch")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061ccea74")
(attr smd)
(fp_text reference "SW2" (at 0 -2.6) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp a8f15f81-c64f-4a6a-8184-eabd4f5daa6f)
)
(fp_text value "BIND" (at 0 2.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4821a0f1-0757-49b5-bc91-a0ccf3e9f548)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 87e4b1bb-0b21-4bc6-b11f-269a3347496b)
)
(fp_line (start -2.2 -0.57) (end -2.2 0.57) (layer "F.SilkS") (width 0.12) (tstamp 09ab9b2a-26ef-4942-ba61-f8a6673867aa))
(fp_line (start -2.2 1.7) (end 2.2 1.7) (layer "F.SilkS") (width 0.12) (tstamp 1d64fb24-a192-4276-96bc-30811b5dbebf))
(fp_line (start 2.2 0.57) (end 2.2 -0.57) (layer "F.SilkS") (width 0.12) (tstamp 6f9df934-4054-4d8a-b681-1657a9279a59))
(fp_line (start 2.2 1.7) (end 2.2 1.58) (layer "F.SilkS") (width 0.12) (tstamp 755ad553-6d1c-4617-8f56-6e9d2cd4d51f))
(fp_line (start -2.2 1.58) (end -2.2 1.7) (layer "F.SilkS") (width 0.12) (tstamp 87098d73-0d35-4a8f-aa7f-ade9272dc761))
(fp_line (start 2.2 -1.58) (end 2.2 -1.7) (layer "F.SilkS") (width 0.12) (tstamp ae39d000-e1da-4f40-b995-9482be0f1de9))
(fp_line (start 2.2 -1.7) (end -2.2 -1.7) (layer "F.SilkS") (width 0.12) (tstamp fb847691-a236-48f0-9f44-65a418dab540))
(fp_line (start -2.2 -1.7) (end -2.2 -1.58) (layer "F.SilkS") (width 0.12) (tstamp ff355897-ead3-4120-8dcb-1bb00ca0370c))
(fp_line (start -2.85 -1.85) (end 2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 0270c5c4-c68e-47b7-a6f1-50651981be2d))
(fp_line (start 2.85 -1.85) (end 2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 2923d83c-3334-4b85-acfa-e9f2eb6f5eb5))
(fp_line (start -2.85 1.85) (end -2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 73917165-0d82-4691-91ca-2eb1b8bbe05e))
(fp_line (start 2.85 1.85) (end -2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 84aac022-880b-473d-82ad-f2827a88892f))
(fp_line (start 0.4 1.1) (end -0.4 1.1) (layer "F.Fab") (width 0.1) (tstamp 1f3dd671-b973-4373-871e-23d23284bfad))
(fp_line (start -0.4 -1.1) (end 0.4 -1.1) (layer "F.Fab") (width 0.1) (tstamp 51957904-d257-41c5-8124-dcc959977230))
(fp_line (start 2.1 -1.6) (end -2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp b4501435-1b74-4814-ac8d-457d48a8c57b))
(fp_line (start -2.1 1.6) (end 2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp d039718a-5f93-4d2d-b957-a40b11652989))
(fp_line (start -2.1 -1.6) (end -2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp d3349b0a-8f2b-4222-bb13-fa4f0f887f4d))
(fp_line (start 2.1 1.6) (end 2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp ef855f52-01db-4405-9940-c5f27401f345))
(fp_arc (start -0.4 1.1) (mid -1.5 0) (end -0.4 -1.1) (layer "F.Fab") (width 0.1) (tstamp 8217ca7d-977c-4985-a684-eea82e5113b4))
(fp_arc (start 0.4 -1.1) (mid 1.5 0) (end 0.4 1.1) (layer "F.Fab") (width 0.1) (tstamp feb38b83-6d1c-4038-a568-147252bfbe12))
(pad "1" smd rect (at 2.075 -1.075 180) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "1") (pintype "passive") (tstamp 372eb80c-116e-4b19-abae-92abb6d35e81))
(pad "1" smd rect (at -2.075 -1.075 180) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "1") (pintype "passive") (tstamp fc98aaf7-0aba-4c7e-a96d-56e31c31a588))
(pad "2" smd rect (at -2.075 1.075 180) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "E75_RST") (pinfunction "2") (pintype "passive") (tstamp 4cdd8415-dbde-4f4a-9692-de5bfb341275))
(pad "2" smd rect (at 2.075 1.075 180) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "E75_RST") (pinfunction "2") (pintype "passive") (tstamp e4da03fa-98df-4f6e-905c-6338b6b66b7e))
(model "${USER3D}/User Library-PTS810.STEP"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 658cbe5a-e7f5-4f80-bc14-54c2ecfeca7c)
(at 59.8 78.3 90)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/52732907-a6f5-4819-a8a0-f035f2788ca4")
(attr smd)
(fp_text reference "R19" (at -1.35 -0.55 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp c623739f-e556-4bf3-bf0d-ea8f14f7750e)
)
(fp_text value "100k" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ec4beb8-dbfb-4b48-921c-f98b9d0706b5)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp a881fee1-2247-4b84-acc6-5a7e843e2ba6))
(pad "1" smd rect locked (at -0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 8198e596-d523-4ba3-91d9-8f9c41f56b37))
(pad "2" smd rect locked (at 0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "Net-(Q3-Pad1)") (pintype "passive") (tstamp 2c08dad7-0b97-4355-8528-fd74d397da31))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:C_0402" (layer "F.Cu")
(tedit 5E580EF6) (tstamp 6db4c715-f604-4ad5-b3e6-77e085153a04)
(at 75.5 87 -90)
(descr "Capacitor 0402")
(tags "C Capacitor 0402")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/5ee1c0ad-0753-44fd-9f34-149d09df9150")
(attr smd)
(fp_text reference "C5" (at 1.3 0.1 -180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp d67f893e-d62b-44c0-a1ed-06c27930b246)
)
(fp_text value "100n" (at 0 -1.325 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea318c4c-2aac-4b16-8f77-376b163fde73)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 0b264411-5df7-4227-b41c-4ba7687d2096))
(pad "1" smd rect locked (at -0.47 0 270) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(C5-Pad1)") (pintype "passive") (tstamp a6353897-349e-4000-937a-994d7719e8ce))
(pad "2" smd rect locked (at 0.47 0 270) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 78a4062b-d2b4-4346-a029-0257bf4c7e99))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:C_0402" (layer "F.Cu")
(tedit 5E580EF6) (tstamp 74a9c3ca-08aa-4a6a-9a4f-5ecc24362076)
(at 74.5 87 -90)
(descr "Capacitor 0402")
(tags "C Capacitor 0402")
(property "Sheetfile" "philphoc-luma.kicad_sch")
(property "Sheetname" "")
(path "/fb06b05c-3099-4e66-998b-80622eca878b")
(attr smd)
(fp_text reference "C2" (at 1.3 0.2) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 70b621b6-45b5-43cb-9683-d589118723d7)
)
(fp_text value "100n" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f46f4b86-daf6-4869-98cb-928039f00f5f)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 7f2c9904-545b-4337-acd6-8707e0924818))
(pad "1" smd rect locked (at -0.47 0 270) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C2-Pad1)") (pintype "passive") (tstamp e382fedc-c868-44fd-9740-47cc05b15c1c))
(pad "2" smd rect locked (at 0.47 0 270) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 73e2a101-0bc0-414b-9aa7-7eeb8a3caef1))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step"
(offset (xyz 0 0 0))