-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1W Experiments.kicad_pcb
10177 lines (10128 loc) · 432 KB
/
1W Experiments.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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions 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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "1W_GerbersA/")
)
)
(net 0 "")
(net 1 "+BATT")
(net 2 "GND")
(net 3 "/SW")
(net 4 "/BST")
(net 5 "+5V")
(net 6 "+3V3")
(net 7 "Net-(C15-Pad1)")
(net 8 "/FB")
(net 9 "unconnected-(U1-Pad5)")
(net 10 "/SX1_DIO")
(net 11 "/SX1_BUSY")
(net 12 "/SX1_RESET")
(net 13 "/SPI1_MISO")
(net 14 "/SPI1_MOSI")
(net 15 "/SPI1_SCK")
(net 16 "unconnected-(U3-Pad8)")
(net 17 "/SX1_TX_EN")
(net 18 "/SX1_RX_EN")
(net 19 "/SPI1_CS")
(net 20 "unconnected-(U3-Pad21)")
(net 21 "/LED_RED")
(net 22 "/LED_GREEN")
(net 23 "/LPUART1_TX")
(net 24 "/LPUART1_RX")
(net 25 "/BOOT0")
(net 26 "/UART1_TX")
(net 27 "/UART1_RX")
(net 28 "/SWDIO")
(net 29 "/SWCLK")
(net 30 "/UART2_RX")
(net 31 "/UART2_TX")
(net 32 "/OSC_IN")
(net 33 "/OSC_OUT")
(net 34 "/USB_DM")
(net 35 "/USB_DP")
(net 36 "/BUTTON")
(net 37 "unconnected-(J1-Pad1)")
(net 38 "unconnected-(J1-Pad4)")
(net 39 "Net-(D1-Pad2)")
(net 40 "Net-(D2-Pad2)")
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 005b18a9-d92d-47f1-b833-f3afd44cf988)
(at 74.5 103 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/576ab642-03ba-4624-8063-6b59f8517f95")
(attr smd)
(fp_text reference "C8" (at 4 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac4041f5-1d96-499a-8759-a0479b2b0922)
)
(fp_text value "1u" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 897b0bdc-85b1-47c7-917f-21c595a0b3d0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp de4bc0bc-cc71-44bd-ac51-f548d20c71e8)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 40b0814b-0e92-4dbf-a17d-550c102c4912))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 5d1479b7-1629-4fb0-8d1f-00a363c5da39))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 2dcd3ca2-8df5-4129-bd00-fbee2c14caf8))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 90e8fc0b-1e1a-41b3-b0d3-c400b070f912))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp bd176c76-fd82-4b6b-97c6-18dd48af1d12))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp fd185480-657d-4f70-be48-445cb0dba2c4))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 2f5e6dd1-5c96-430b-bdec-7171fdb6cea3))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 3042ed47-4bfa-408c-a7b4-eb6b07d9fb63))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 658ec915-5902-47bc-86f7-01950ba69e9d))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 98fbb44e-2fe1-4eb2-8d49-8e5d36196d9c))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 5 "+5V") (pintype "passive") (tstamp 49f7cd8a-e323-4b79-9c00-3b1ed86c9d24))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp f20b1fe9-9245-469a-ade3-1948dd5cab02))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 0c7f39fe-ee13-469b-8930-c3891357d244)
(at 74.5 107.5 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/08353e64-8080-4091-8ed7-699c8874b704")
(attr smd)
(fp_text reference "C9" (at 3 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f56c0a56-3497-4628-9495-dbe3ef808a80)
)
(fp_text value "22u" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86b63ff9-bfff-4009-9ae9-84d6cf8f0fab)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 93323b55-5965-4443-b64a-87a6f21e05b8)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 0c65584c-a073-4875-b756-669e8e5598f4))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp ac9af3f8-9c2c-4fb7-80c5-8901d336eab9))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 29f1b468-de1d-4d13-bf0c-00c6f8569d93))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 82fdfbf5-cd5f-4377-a17f-30730e57479c))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp c590477d-7b53-4592-afd0-b78229a2f0b1))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp d569d0aa-caf1-4c4a-beb2-c146b23a374e))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 353320ad-d9a6-4366-9ba5-19d81433e151))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 68c13400-caa4-47e9-bf38-3e21c60c2237))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 7306bf54-79f5-4e69-8b35-dba28648c770))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp f9d47adc-264c-4429-a330-ea8186e896e4))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 5 "+5V") (pintype "passive") (tstamp f200da25-2d0c-4fc6-a26f-7ee590e0a5ad))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 989a28cd-9cd8-462e-87e5-a5cc234c996d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_Micro-B_Amphenol_10118194_Horizontal" (layer "F.Cu")
(tedit 5F2142B6) (tstamp 0f5b3a5e-64ab-43b1-b463-3226a8327777)
(at 105.2 116.5 90)
(descr "USB Micro-B receptacle, horizontal, SMD, 10118194, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118194.pdf")
(tags "USB Micro B horizontal SMD")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/9a356d98-e473-42a0-bda3-612d690edaf2")
(attr smd)
(fp_text reference "J1" (at 0 -3.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0189ca1c-116e-4274-8bd2-f557949f888e)
)
(fp_text value "USB_B_Micro" (at 0 4.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a40df82-a562-4e4b-952b-8585d28a537b)
)
(fp_text user "PCB Edge" (at 0 2.75 90) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d90e761e-1ff4-41ae-8b5b-facc0f9576f8)
)
(fp_text user "${REFERENCE}" (at 0 -0.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aba7d2d2-5eb0-43ed-9e89-b1805e47970d)
)
(fp_line (start -3.76 0.32) (end -3.76 -1.66) (layer "F.SilkS") (width 0.12) (tstamp 0201d14d-4145-4924-8eda-278cdb29e01a))
(fp_line (start 3.76 -1.66) (end 3.34 -1.66) (layer "F.SilkS") (width 0.12) (tstamp 43d403f7-e7ee-4e1c-9c3c-0151f78d7952))
(fp_line (start -3.76 2.69) (end -3.76 2.29) (layer "F.SilkS") (width 0.12) (tstamp 5508315a-b1bc-40b1-be7b-6d435250199e))
(fp_line (start -3.76 -1.66) (end -3.34 -1.66) (layer "F.SilkS") (width 0.12) (tstamp 5ef85fe3-5cd9-4fed-9492-d01f14e202f1))
(fp_line (start 3.76 2.29) (end 3.76 2.69) (layer "F.SilkS") (width 0.12) (tstamp b9536898-0f85-42b7-b7b3-8ace66f575a3))
(fp_line (start -1.31 -2.34) (end -1.76 -2.34) (layer "F.SilkS") (width 0.12) (tstamp bc83f88c-cacb-4295-a6ab-bb8c5c7f38cf))
(fp_line (start -1.76 -1.89) (end -1.76 -2.34) (layer "F.SilkS") (width 0.12) (tstamp bcec590f-2076-41ba-9bff-fdd410085360))
(fp_line (start 3.76 0.32) (end 3.76 -1.66) (layer "F.SilkS") (width 0.12) (tstamp c41d361f-53b4-4968-a9c2-1ecfff3227a9))
(fp_line (start 3 2.75) (end -3 2.75) (layer "Dwgs.User") (width 0.1) (tstamp fdc2c72c-00c7-4651-bae8-977d22aa5c27))
(fp_line (start -4.45 -2.58) (end -4.45 3.95) (layer "F.CrtYd") (width 0.05) (tstamp 4dcc0cb9-804c-495d-b6ea-2e143bdca9a1))
(fp_line (start 4.45 -2.58) (end 4.45 3.95) (layer "F.CrtYd") (width 0.05) (tstamp a25875cf-b059-4717-876b-9dd42be61420))
(fp_line (start -4.45 3.95) (end 4.45 3.95) (layer "F.CrtYd") (width 0.05) (tstamp bccb117f-b445-4aa6-82a3-39433abbfd12))
(fp_line (start -4.45 -2.58) (end 4.45 -2.58) (layer "F.CrtYd") (width 0.05) (tstamp bdbe9745-1e00-4048-ac71-713f49e086b7))
(fp_line (start 3.65 -1.55) (end 3.65 3.45) (layer "F.Fab") (width 0.1) (tstamp 06b00a48-4a91-47eb-81b3-1c24fbc68eaf))
(fp_line (start 3.65 3.45) (end -3.65 3.45) (layer "F.Fab") (width 0.1) (tstamp 10b56431-1e66-4060-9e10-7de0b20d5099))
(fp_line (start -3.65 3.45) (end -3.65 -0.55) (layer "F.Fab") (width 0.1) (tstamp b1643f40-05d4-4614-a1ef-160766f02fd1))
(fp_line (start -3.65 -0.55) (end -2.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp b1fe6fa1-2aa0-4271-97c1-f8a85193878f))
(fp_line (start -2.65 -1.55) (end 3.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp f3c2e257-8163-43e7-adf0-53e69eb1b220))
(pad "" smd oval (at -3.5 1.3 90) (size 0.89 1.55) (layers "F.Paste") (tstamp 7586b026-8252-45f4-b812-f3b038d5d8e5))
(pad "" smd oval (at -2.5 -1.4 90) (size 1.25 0.95) (layers "F.Paste") (tstamp 91ad8f8c-d613-45f6-a911-716bff33f785))
(pad "" smd oval (at 3.5 1.3 90) (size 0.89 1.55) (layers "F.Paste") (tstamp cdc7a680-0861-4114-89e6-aeb1c7e2d8ee))
(pad "" smd oval (at 2.5 -1.4 90) (size 1.25 0.95) (layers "F.Paste") (tstamp d13fd7ab-065e-41b2-a4e3-ca90ba7d05d8))
(pad "1" smd rect (at -1.3 -1.4 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "unconnected-(J1-Pad1)") (pinfunction "VBUS") (pintype "power_out+no_connect") (tstamp 5426ee62-57e8-4b58-82d9-ca03f649264b))
(pad "2" smd rect (at -0.65 -1.4 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "/USB_DM") (pinfunction "D-") (pintype "bidirectional") (tstamp 1d905bbb-23e6-43ea-aa06-6666a88405d2))
(pad "3" smd rect (at 0 -1.4 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/USB_DP") (pinfunction "D+") (pintype "bidirectional") (tstamp 3ea1fa3c-2eb1-40f4-809b-86b934cb978a))
(pad "4" smd rect (at 0.65 -1.4 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "unconnected-(J1-Pad4)") (pinfunction "ID") (pintype "passive+no_connect") (tstamp 22ca8331-3c28-48c2-ab69-9e2155a3e5b4))
(pad "5" smd rect (at 1.3 -1.4 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (tstamp 274420fa-d00c-4497-b4c2-f89d643c8f89))
(pad "6" thru_hole oval (at -3.5 1.3 90) (size 0.89 1.55) (drill oval 0.5 1.15) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 1252684e-b5bc-4c60-80fd-65df0086c852))
(pad "6" smd rect (at -1 1.3 90) (size 1.5 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 1f94a4d8-e8cd-4650-b3c2-9a394b9a3741))
(pad "6" smd rect (at 1 1.3 90) (size 1.5 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 427580aa-7f09-4819-99cb-c62dcb0e76e3))
(pad "6" thru_hole oval (at 2.5 -1.4 90) (size 1.25 0.95) (drill oval 0.85 0.55) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 5126e2a6-48a3-4c0c-9e47-64f36526beea))
(pad "6" thru_hole oval (at 3.5 1.3 90) (size 0.89 1.55) (drill oval 0.5 1.15) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp a4b41083-ae56-4df9-b08c-0cc253642ed1))
(pad "6" thru_hole oval (at -2.5 -1.4 90) (size 1.25 0.95) (drill oval 0.85 0.55) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp a8ace246-0de5-4d3c-b8a5-35605c1d5a23))
(pad "6" smd rect (at -2.9 1.3 90) (size 1.2 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp d89836b7-1315-4aef-94c1-41d2065bd313))
(pad "6" smd rect (at 2.9 1.3 90) (size 1.2 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp e83e7d60-fcb7-4f47-8f83-21cad62b9726))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_Micro-B_Amphenol_10118194_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 2cde9b6f-6dd0-4589-99f4-2e1f7b80dada)
(at 76.5 107.5 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/b0fe9373-184b-4479-bd55-32f0ffbd27b2")
(attr smd)
(fp_text reference "C7" (at 2.5 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c4ccc15-4da9-4447-9d8e-e948dae2aa9a)
)
(fp_text value "100n" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0e8ba90-84f2-448f-a631-24dfc844a15b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 39357844-250c-468a-bbb9-dabd74d46121)
)
(fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 6eb04df4-e3de-4848-91b8-a78f54fefab9))
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 6fd73cd6-c99a-4a62-bc29-add6692a3c8d))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3e61db5e-67d0-4a50-b58f-97f274aaf465))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 554d081e-0865-4d67-97f1-b5f84617e1b6))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8437ed6c-9869-4264-9378-3b193f058c0a))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ca478b91-dd11-4861-b541-40a0a23261dd))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 20a94907-d87d-482f-9d2c-ccbc150fad9f))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 239f8f64-513e-45ac-b584-e321fdd83ebc))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 467da34e-2b36-4fbe-a4ea-aeca7acea659))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9225c2b9-2ee2-4dde-a9a3-1d111aab6c12))
(pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pintype "passive") (tstamp acc16598-8d85-4479-b14a-9cb150818df6))
(pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp a3c964bd-7c6e-4afe-9604-2fbc9a737c18))
(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 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2f84e2e3-5a8b-4b7b-8f4f-af850093c4e3)
(at 106 97.4 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/899367a1-00ed-4870-ad3b-7e94d5ecbbbb")
(attr smd)
(fp_text reference "R4" (at -2.475 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4feebf39-f51c-494b-85a9-9c569f772fd9)
)
(fp_text value "1K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8412ae35-203e-4faa-9d88-6b53bbb4a0db)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp bf5e765a-1303-4346-832d-9f9cc775c850)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b22e9de0-3ff7-4d8b-ba7c-c9f7966e8e66))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c4f5d833-ef05-415c-ba81-a3ceb0114a87))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7b4ada49-aba3-4ef5-b6a5-1eb7491a2e4a))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 871f35af-c0d0-47d8-b4ca-0c4cec8e4d2b))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c3551641-9b85-4015-9f0a-824a4428ef54))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d7b275b6-6dba-4dd7-92f9-27691b007961))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 12040d3b-6fd9-48f4-a2c3-1c4526ff8c44))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 32a3bd2b-7b21-4560-b8eb-50d1f652030d))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6cc26863-332c-4f2a-b2da-9d5d5f115b05))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ebf9438d-3225-4549-ae46-ea50648be96e))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/LED_GREEN") (pintype "passive") (tstamp 5054945c-88eb-4878-8d5c-eb90ea7ac9a9))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "Net-(D2-Pad2)") (pintype "passive") (tstamp e2749ba0-2688-4e51-a0ca-362a27cf1997))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_4.0x4.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 37889f79-ba07-4521-9ae6-bc92d6ea2a7f)
(at 93.5 125.5)
(descr "SMD rectangular pad as test Point, square 4.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/5812e130-918f-4a60-ad5a-d8f197cc8d2a")
(attr exclude_from_pos_files)
(fp_text reference "TP6" (at 0 -2.898) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7b062b9-ec2b-4d2e-b849-9561e70000b1)
)
(fp_text value "TestPoint" (at 0 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e7af6dc-1619-4229-b925-1ef2ad0cd830)
)
(fp_text user "${REFERENCE}" (at 0 -2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa3c75cb-8542-4fe4-8065-5d0089578ac3)
)
(fp_line (start -2.2 2.2) (end -2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp 2f722493-0651-4082-a3d6-6d9ad1cb30ff))
(fp_line (start -2.2 -2.2) (end 2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp 5182e293-d9c9-4437-ae24-bcfaa4273a5a))
(fp_line (start 2.2 2.2) (end -2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp abd08b7e-28fb-4c56-9e76-432508dfd169))
(fp_line (start 2.2 -2.2) (end 2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp ba7e716a-6742-4511-b5b0-60dbd65f0f83))
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 08fe7e39-ab8a-49d4-b72b-4400b0b7115a))
(fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 36c57485-575b-4e18-b337-c9f1dcd3cc21))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp a6e9851c-1ce0-42ee-adc4-d97dfc4e8881))
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp bec830b7-ea91-4466-874d-41a1dcd63e6a))
(pad "1" smd rect (at 0 0) (size 4 4) (layers "F.Cu" "F.Mask")
(net 31 "/UART2_TX") (pinfunction "1") (pintype "passive") (tstamp 8e74d88b-d6e0-402a-97b7-15f4e376eb80))
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 3e01fd7b-9cb4-44bb-8dd1-d44fdbe373b5)
(at 76.5 103 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/e6d2ae1c-9693-4261-9fec-c87137f54018")
(attr smd)
(fp_text reference "C6" (at 4 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41ed5db8-a6f9-416d-84b3-c356a08a44b5)
)
(fp_text value "100n" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18b8f677-3689-49c3-9b25-6caf5bbc22d1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9ee1c7de-6fae-4f14-9ebc-efd703bad003)
)
(fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 080a4a4b-dd5f-428e-b261-56848090b0f2))
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp dd77e3ef-6a6c-46c2-b4c7-c366d9e5c09b))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1dd91263-9f92-4c93-8e45-f50798fa2076))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9d6db1aa-0b80-44ee-b924-ee69668f2683))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e2837be0-6e9e-4bef-ab03-d37b888c67ca))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp eec5f9d7-563f-4137-8fc5-2ba1db16b9bc))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1393cd15-5f7e-4eca-b25a-81d65da677d7))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp becf8731-59d4-4ef1-9817-6828ef2d69db))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cd68b074-85da-43a6-829b-d0250bae92c5))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e1e0765a-a4f8-4228-89be-caecc8d4233c))
(pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pintype "passive") (tstamp 3d85e9e6-e403-4257-b9ae-9fccc163109b))
(pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp db49ddf7-278d-4fe1-b062-1f82006c79f6))
(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 "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
(tedit 5A1DD157) (tstamp 4718a859-52de-4621-8dab-77765359476d)
(at 93.36 119.27 90)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/ba2e0972-b7aa-4b44-ba0e-6b6039db38be")
(attr through_hole)
(fp_text reference "U2" (at 4.77 -1.86 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3deef9f-5a3f-440c-9403-9b23875b9917)
)
(fp_text value "MCP1700-33" (at 1.27 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2a28f20-9148-457f-a3f3-04ab78c35e33)
)
(fp_text user "${REFERENCE}" (at 1.27 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c99454cf-db6c-4ce5-b18d-fa5b77602c64)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer "F.SilkS") (width 0.12) (tstamp 5568ab18-d77e-4dc8-860d-751a982face8))
(fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 7f738777-d4de-4772-af5e-89bf0c4e31d3))
(fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478) (layer "F.SilkS") (width 0.12) (tstamp 7fb9ca95-42fe-46c8-b688-b3b0d2d46800))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 1e24f91c-7e5d-4717-8ad4-4aef9e97760b))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp b1f7ed2b-5b8b-4ff0-aaaa-1dae5f80e465))
(fp_line (start 4 2.01) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp e302f68a-52c6-4271-b495-0de13f4fd504))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp f0af6c99-6ebc-4616-bf0e-351966ab31ed))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp 42e38c07-a675-44a7-80cc-841c45bbec88))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 09aa64e6-6fc5-45ae-9658-b0ee8ded3cd0))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48) (layer "F.Fab") (width 0.1) (tstamp 6362a29e-e623-4f7d-8a58-7ca4c6f1b2e3))
(pad "1" thru_hole rect (at 0 0 90) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f6ec1360-9cbd-471e-89a1-8779b5c31f3b))
(pad "2" thru_hole oval (at 1.27 0 90) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 5 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp ddf59d8b-77d5-4675-a6e4-68e3c5d34f26))
(pad "3" thru_hole oval (at 2.54 0 90) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 6 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp d33f139b-9409-4c9c-82f1-fe4e810d6cb9))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_4.0x4.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 4d477020-ecaf-490f-8bc4-f16babea6515)
(at 99.5 125.5 180)
(descr "SMD rectangular pad as test Point, square 4.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/6f75f7d5-d752-4852-8d1b-27ca71489e19")
(attr exclude_from_pos_files)
(fp_text reference "TP4" (at 0 -2.898) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06b8ccd7-e3b2-4903-8f7c-29a31fb37407)
)
(fp_text value "TestPoint" (at 0 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 964fbefb-fecc-47cf-978c-8910279346bb)
)
(fp_text user "${REFERENCE}" (at 0 -2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4520080b-786b-419e-b36b-12c0e6bbec80)
)
(fp_line (start 2.2 2.2) (end -2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp 503fe39e-3651-497f-bead-76477da4c574))
(fp_line (start 2.2 -2.2) (end 2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp 51048af6-3482-4ec3-8d8a-f9ab6626fb02))
(fp_line (start -2.2 -2.2) (end 2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp 8b5b7e59-07bb-422b-a2d9-764000e1c9cd))
(fp_line (start -2.2 2.2) (end -2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp e10f0a38-9ebd-4831-af74-095d41e748b9))
(fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 1cf90cd4-7ae9-4c9a-b20e-5d8340278589))
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 4e9e68db-7ca3-4541-a4ba-489ded0bf39c))
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp cc19bea1-e110-4d92-9e7c-96df65ecede8))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp d62dec68-8b14-4375-a17f-6493e37b52eb))
(pad "1" smd rect (at 0 0 180) (size 4 4) (layers "F.Cu" "F.Mask")
(net 27 "/UART1_RX") (pinfunction "1") (pintype "passive") (tstamp 83a996e2-ad26-4563-bc98-7b7037cf2d9a))
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 545c4549-e316-4a40-a745-df96dbe00389)
(at 106 100.7 90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/b4c854b5-db8a-4381-965b-d0cbde965076")
(attr smd)
(fp_text reference "D2" (at -2.625 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b99083a-1f80-47cd-822c-e50937537075)
)
(fp_text value "LED" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ba30cef-058f-4648-959c-02c4913f6010)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fa74fc01-ebe4-4b03-b87a-b86f613228eb)
)
(fp_line (start -1.66 -0.735) (end -1.66 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8b5e03a8-5b23-45a8-b047-3fb374840d55))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b1495766-91bb-40a2-8c14-6c8433a21869))
(fp_line (start -1.66 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp cf00d7c2-4b98-47da-8ebb-c3abfc34606b))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 16bc2c24-6317-4808-974d-7540d31d77a6))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5e8b4d07-e993-4d6c-b245-240d7068e2e6))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6606e86b-1d33-4197-ad4a-cf282408d3fd))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c3ff0ec1-e29e-44ad-836f-549052e36b88))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 217a1a2e-c546-4111-8521-ba94d7cd633d))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 546c5d97-6edd-427d-b232-6c3b768e0fcf))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6f195093-32f2-46f2-8bfd-55637b8cd42e))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 7651dbe8-a199-4ec9-b821-39fa389d0ed6))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp d8f8c3c1-0251-4df2-8523-01c6cc881704))
(pad "1" smd roundrect (at -0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 099107d4-8d28-4d48-93ec-90e918c2216d))
(pad "2" smd roundrect (at 0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 8f73dc48-2ae9-49bf-b23f-d29a72a7be20))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 62c0031e-1251-4af7-959c-c36e84e7662c)
(at 83.3 117.25 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/458c6404-dc56-4ba2-9bbf-b9446b11e6f6")
(attr smd)
(fp_text reference "C2" (at -2.5 -0.2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a92335fc-3183-4418-88fa-9ce934c512cb)
)
(fp_text value "100n" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d0f0b86-3f86-4bea-a268-996cae170775)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 96c4931d-37dd-4caf-afa7-0f7cb0200b3f)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 368bc3de-c62b-4878-9b31-11b1869122c0))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "F.SilkS") (width 0.12) (tstamp 5f726759-e09e-4cc0-b94f-cd1bd75f466b))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 45ffca72-d8e0-4771-bcbc-530bb561f3f7))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8fffecb8-4105-402a-a6c1-1bff61f16438))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 95467203-d4b0-42ad-9b8a-d929caee594b))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dbca173b-2108-4a4b-9e8c-cf24966ec582))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 768e12ac-907c-493a-aecc-279492d4063b))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 83589303-4062-4ad1-844f-c296b6be97bf))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c36dc647-c2e2-4d4d-9063-ac5b09310e69))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp db790458-46a6-4430-8cb2-934e458ae9af))
(pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/SW") (pintype "passive") (tstamp 210d5cc8-9efa-48ea-aa10-1ade1ad361bc))
(pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/BST") (pintype "passive") (tstamp 9922d06f-e4e7-4458-93a8-ada8e6949112))
(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 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 667ecad0-40ab-4efe-956d-d65ef2945f04)
(at 96 122 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/106e84e8-190a-4cc9-91d4-c9aa4245f217")
(attr smd)
(fp_text reference "R5" (at -0.5 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51a0c611-7164-4310-a9a3-1ed8e38f497d)
)
(fp_text value "1K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9daac4c8-da60-43d1-a1c6-c3f63e971be5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a63a6dee-cb2d-48c1-8f9e-e54d79c2561e)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 3e9d50d8-0e1b-465f-bbcf-8065c5a9b07f))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 852d3b02-cd82-4c0e-9245-169f0e853e53))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1aca4108-d132-4225-897f-cfcf46ba180f))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 22961968-9277-4274-b99b-b99e3265f9fc))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2bb1aedc-a4a7-4bfa-99e6-69ce383da238))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp eab96d3c-8935-4337-9e4b-adef7297d9ff))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1731803d-483c-4808-81bd-bb0b02d5cbb3))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 310529b1-ef20-42ef-8b06-82d7199f27b5))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3322fee6-7ce0-400d-92be-359842ff0255))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 988ee55c-6c55-4213-8be5-05a38540ea9c))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/UART1_RX") (pintype "passive") (tstamp 10d6c103-e867-413e-b6c5-8d618bffb701))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp a5f017b1-26df-4486-aaec-9ffb8e254aea))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 6e89ab8d-bb89-4bdc-8ec0-b057930203bc)
(at 106 87 -90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/2257613a-ebd2-4693-a60c-b9f968ffab44")
(attr smd)
(fp_text reference "D1" (at -2.6 0 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d75ea004-720b-4e96-898b-d7e4a9095399)
)
(fp_text value "LED" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a3062ff-c0ae-40a7-8169-a30e58552e2c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4489462a-1ab7-4826-8f34-93d0a6f15cff)
)
(fp_line (start -1.66 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 86e891af-9b14-4538-a55b-8fcf5a4ff838))
(fp_line (start -1.66 -0.735) (end -1.66 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8705d532-df1a-4377-9df7-2d85452a5b35))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735) (layer "F.SilkS") (width 0.12) (tstamp fbd650e6-2d8b-4c53-8045-7f181e795cf6))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 033c2c9c-361e-4a2e-a725-363832735abd))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 86b6573e-b65b-42f2-8870-f22bd8b6ec04))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a3d058f4-f07e-44d9-8a14-43b2314a723a))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bae55612-dffc-494e-b13d-89580526d735))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0b58d9cd-ef0a-42db-b00e-de20b5d30209))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1ee0ab1a-f36c-4d18-ab57-0fee71341ab7))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 3bd3a14b-6f73-4d32-b07d-8a9c89303262))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 8aa58bba-99fe-430b-bda6-74ac22b7e805))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9498f29f-cc69-442e-a33a-1f74fda6b2a5))
(pad "1" smd roundrect (at -0.875 0 270) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp f48f6725-aecb-45ee-a82a-56fa6de664c8))
(pad "2" smd roundrect (at 0.875 0 270) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 691c7857-d907-4627-aec2-5abbc4113117))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_4.0x4.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 82e8dae0-5f81-480b-aa94-971ef64237d5)
(at 105.5 125.5 180)
(descr "SMD rectangular pad as test Point, square 4.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/2e50ad1c-5462-4c5e-9cc6-b6e064db4747")
(attr exclude_from_pos_files)
(fp_text reference "TP3" (at 0 -2.898) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bcbe5932-e604-493e-9a42-966b420c0188)
)
(fp_text value "TestPoint" (at 0 3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a8f58d0-8bac-413b-89de-16938847322d)
)
(fp_text user "${REFERENCE}" (at 0 -2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fbd9a2f-29b7-43e4-93a8-93dd059ac883)
)
(fp_line (start -2.2 2.2) (end -2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp 0e9a199b-e45d-4a5c-a857-4a52a9bb9fd3))
(fp_line (start 2.2 2.2) (end -2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp 427d7828-eabf-40ea-b5d1-0f0119ede6af))
(fp_line (start -2.2 -2.2) (end 2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp d9236093-cd75-47c9-8552-05cf04c96a1c))
(fp_line (start 2.2 -2.2) (end 2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp ec27d589-fbf2-41b6-bdea-a8301cc9bbe0))
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 7836a453-0ce6-44e4-b26e-c4f1e92d3f48))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 8169584a-5ad7-41ee-b5da-13d6c9cee805))
(fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp bca61880-3d99-43b1-beb3-4b1d39e5a226))
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp e438aabf-3e62-4c2c-a160-c199fafde615))
(pad "1" smd rect (at 0 0 180) (size 4 4) (layers "F.Cu" "F.Mask")
(net 26 "/UART1_TX") (pinfunction "1") (pintype "passive") (tstamp fabf073e-482a-467e-8bba-ec044ac50e56))
)
(footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu")
(tedit 58641869) (tstamp 8cdc02c7-27a2-402a-bbc5-3ff9bf4e7f00)
(at 101 122)
(descr "SOD-323")
(tags "SOD-323")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/37479908-a962-4dd7-847b-9205484da774")
(attr smd)
(fp_text reference "D3" (at 0 -1.85) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e1e8308-fb1c-44b2-a2c1-cb3512a0a34c)
)
(fp_text value "D_Schottky" (at 0.1 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98d40143-48a2-412b-b4b9-6de1e6b5d5fb)
)
(fp_text user "${REFERENCE}" (at 0 -1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de138440-9678-4c01-b917-a13a9b3541ca)
)
(fp_line (start -1.9 -0.85) (end 1.25 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 3ab9f1c6-987d-4b30-845b-57bb257321e0))
(fp_line (start -1.9 -0.85) (end -1.9 0.85) (layer "F.SilkS") (width 0.12) (tstamp 63ec0ced-fdd1-4c52-89e9-09abbfed3935))
(fp_line (start -1.9 0.85) (end 1.25 0.85) (layer "F.SilkS") (width 0.12) (tstamp fa8f4da6-4137-4a86-8561-ed911b53e811))
(fp_line (start -2 0.95) (end 2 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 234b65d4-eaca-4446-b217-7aadcf8c1ae7))
(fp_line (start 2 -0.95) (end 2 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4c3c94d5-00ca-41ff-b483-80fd1e3da2f2))
(fp_line (start -2 -0.95) (end 2 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 596cd10b-5447-4b51-9d0a-4ccb41088086))
(fp_line (start -2 -0.95) (end -2 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 608f6ecc-aa24-44f6-8180-039a46993eac))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp 239db2d7-74f7-4df3-88cc-7cba9d3545b7))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp 27dfa8ee-7dc0-4380-904f-6d2f517b23fb))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp 3217251a-284d-4d2c-bcd8-d6c034f6598b))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp 49760cb0-278d-492a-a8bc-be176b2e04bb))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 60dde95e-bbaa-41d5-b122-f5b1f7b56140))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp 77c4ab22-9696-4ff4-b55c-470b90c58f1d))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp 8cdc0923-e9b9-4dc3-a253-6f0236c5f122))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp c681e797-3e06-48ce-b3d3-515e7a2b3292))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp d4b68eb9-31de-44c8-9dcf-98afca7a731c))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp e3342918-e3ce-4a2b-924f-c1967d265be9))
(pad "1" smd rect (at -1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/UART1_RX") (pinfunction "K") (pintype "passive") (tstamp 90b1cef6-264b-45e0-a811-4724f4b91aa4))
(pad "2" smd rect (at 1.25 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "/UART1_TX") (pinfunction "A") (pintype "passive") (tstamp 7d2df22e-5db3-4f0c-9ba6-d0bd6da7a604))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 95d1cd5d-513a-4963-8ba1-5edfbaf5c16a)
(at 75.25 87.5)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/e2828107-c918-4899-a389-33a4cce581b8")
(attr through_hole)
(fp_text reference "J2" (at -0.75 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92cca27f-a6f9-4c9d-b422-db544a152e62)
)
(fp_text value "Conn_01x04_Male" (at 0 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 148fbdeb-49b5-4a69-8668-b5ce01e4e1b5)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e502664d-869d-4aff-b42d-1fe9578679e7)
)
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 0ff41349-3326-4463-b555-9733366766cf))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 354389c2-65b4-4256-87f4-3100fb109a45))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a0010d02-6590-49a6-963c-6dccbc6e0818))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a2f0ded3-6315-4679-87ae-cab95b4a05c6))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp b6de9af4-73fd-43d0-989c-12dea7bcf333))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp cf1ea5b1-ec88-4084-9003-1aa007e08ba9))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 05841d35-6b40-49a6-9616-d2da47839341))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 3fa70072-89d6-4e0b-ae0a-f86b1a6aa045))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 7799b931-f70f-4ab7-a427-3b4c1b924f61))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a60446a9-d412-433b-ae06-8e0b9740b618))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 4046395e-ff3f-40bf-a12b-375034d30cee))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 55dd2b95-0099-49f6-a068-79b9ba04ae86))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 56d645e5-5372-444c-8b20-a4f0203c8331))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7ee13bb3-928c-4b7e-b868-b113daa4fac2))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp bc2481ab-e4d2-4380-89d0-9801a1330f2b))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp c9e96052-dbb3-47cf-935b-40d0086284de))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "/BOOT0") (pinfunction "Pin_2") (pintype "passive") (tstamp e06fb82c-c5d8-4c5e-b0d9-fa6bcfde41fe))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 705c5fd6-e935-4753-9a0b-de3263003047))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "/BUTTON") (pinfunction "Pin_4") (pintype "passive") (tstamp 171d8045-c4b0-4ad1-9160-3ad84fcd7ca4))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_4.0x4.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp a3641c02-3853-4adb-ba6c-d6d69cabd718)
(at 81.5 125.5)
(descr "SMD rectangular pad as test Point, square 4.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/0be22c48-0e7b-481e-bafc-d61ac4c03f62")
(attr exclude_from_pos_files)
(fp_text reference "TP2" (at 0 -2.898) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc673374-a98b-465f-a56b-79245d7fd1c1)
)
(fp_text value "TestPoint" (at 0 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f671756b-b483-4291-b99e-032cb3f4778f)
)
(fp_text user "${REFERENCE}" (at 0 -2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1bd82934-ebd8-47e8-8734-d8e1fb7b0461)
)
(fp_line (start -2.2 2.2) (end -2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp 97dfa1a6-efbb-4a74-b3cf-6bad3a0eb9e4))
(fp_line (start 2.2 2.2) (end -2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp d14b5224-e5b7-4a8b-9f18-68a5c52a661c))
(fp_line (start 2.2 -2.2) (end 2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp e465d61a-f577-4c2d-a9e8-862cdc3e4b13))
(fp_line (start -2.2 -2.2) (end 2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp f815d757-bd9b-4244-8fa1-6ced73105b00))
(fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 3b356e33-63a7-4bef-82db-01698dde3db2))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 67111660-b0fe-4d13-8ebe-b923bac729a4))
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp d32f6099-1c61-45e0-ae86-dee67f56bdc2))
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp e53f21c3-81ef-4271-8ee0-9d4560147c0a))
(pad "1" smd rect (at 0 0) (size 4 4) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp eada3b54-4e55-4a57-85e9-c34ae00adf6b))
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp ad919ab2-b0d9-4490-a164-d06103dea2ec)
(at 75.5 117 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/ee2fd0e1-9d09-44cf-bd1e-4514f99703b0")
(attr smd)
(fp_text reference "C3" (at -3 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49e8f9be-55de-4488-baa0-cff34af3f5d9)
)
(fp_text value "22u" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02ea3235-95aa-4225-806a-e4bf72828224)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp bb8e9929-9980-4dea-ad8c-9d9f0b556343)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 5d248f21-bafa-4135-8af1-374211674f78))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 8e2809d8-527a-4494-86b6-83604dbe49e6))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 3f6bdbae-a579-4d94-8aeb-e2b522c9b922))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7a586ee4-eb04-4e29-b2dd-40796355769c))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 90ca5078-81ff-41d3-a7e4-32294157a84f))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp bf93814f-7c28-4899-bfe5-a4d9a6ca53c7))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 195445fd-facc-4e33-95f8-f60302f1bc25))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp ab490171-8c5e-4e1f-a005-123475683634))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ae8f3151-0500-4310-9048-a809f070d5cc))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp bb04e971-d651-4d05-a7d0-51242cfb8399))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 5 "+5V") (pintype "passive") (tstamp 6735c024-d508-40a5-bb29-2348d4fff37d))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 82ab8e08-7b87-468e-aa7e-833e6ac49913))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp b1226f54-1720-49dd-ae0d-9a2d34e24ff2)
(at 81.5 121.5 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/b81cfd76-b559-4918-8554-7f05228614b3")
(attr smd)
(fp_text reference "R2" (at -2.5 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 188e6e05-8893-4150-9cbb-8cf986ee3fe4)
)
(fp_text value "10K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1b9e9fd-55a1-42cd-bc4c-83ab3861e906)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3ab83c1b-35b6-4fc0-850d-988fee9249f9)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 511db85f-188c-4f45-ae02-e84c257a9486))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp cb73e81d-f8b8-4229-ad18-6d42e870856d))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 80ac8830-5017-43a1-bc71-9b9877a6a102))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8cde974d-206c-4318-9959-9c8aacf97454))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d388e3f1-6717-40aa-a660-ef8bc5bfe1bb))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f7bd6e81-a334-4fd4-aac4-8cce6f69ef66))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3f0aa565-09cf-4e5f-97d5-34bdab751c6e))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 61ba3318-0f12-4f0a-855f-ad1061118d17))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 620bcdd2-9498-4ed3-9333-b3314cdf2be3))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e6f642aa-c774-400e-ab44-0b8fb969dd5a))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/FB") (pintype "passive") (tstamp 5124a0f3-235e-4e77-a569-5c14eeef398c))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 7d67c8fb-b5b4-4522-99f9-2fadb45a7a48))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TSOT-23-6_HandSoldering" (layer "F.Cu")
(tedit 5A02FF57) (tstamp bc91c614-03d0-4bb3-b17b-fd249288c460)
(at 79.5 119)
(descr "6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf")
(tags "TSOT-23-6 MK06A TSOT-6 Hand-soldering")
(property "Sheetfile" "1W Experiments.kicad_sch")
(property "Sheetname" "")
(path "/0f84d152-c702-4fa5-94a5-500bfbf86719")
(attr smd)
(fp_text reference "U1" (at -2 2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86df9f47-4b8e-450d-b26f-928ea4b20f11)
)
(fp_text value "AP62150Z6" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b4662f7-0a71-4d15-8d22-49a697d8d2c2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp a2b9655e-1b64-4376-b0ba-bc53ee04f8b6)
)
(fp_line (start 0.88 -1.51) (end -1.55 -1.51) (layer "F.SilkS") (width 0.12) (tstamp 0c1093c4-7f7a-47bc-88eb-7b8ade6f31db))
(fp_line (start -0.88 1.56) (end 0.88 1.56) (layer "F.SilkS") (width 0.12) (tstamp 83358d90-83e8-4cd4-8b29-28b64e534c5b))
(fp_line (start 2.96 1.7) (end 2.96 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 1568ed3a-8126-4f25-8e7c-94717a62449d))
(fp_line (start 2.96 1.7) (end -2.96 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 46b37c71-2241-4182-8df7-a8d6868f9a02))
(fp_line (start -2.96 -1.7) (end -2.96 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 59ea0147-a964-45dd-8746-52754eba9ce0))
(fp_line (start -2.96 -1.7) (end 2.96 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 86209df7-cb67-414c-bcc5-941b5fa4b98f))
(fp_line (start 0.88 -1.45) (end 0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp 21a1b3ec-111d-44c0-a4a4-eedf5cfeed0e))
(fp_line (start -0.88 -1) (end -0.43 -1.45) (layer "F.Fab") (width 0.1) (tstamp 7c9f93b6-6fee-4e74-b545-5ce1ed3c94ec))
(fp_line (start 0.88 -1.45) (end -0.43 -1.45) (layer "F.Fab") (width 0.1) (tstamp 84fe59e5-1151-44ca-a10d-539c851d120a))
(fp_line (start -0.88 -1) (end -0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp a63253a9-10ce-4eaf-bdba-59989a290bc0))
(fp_line (start 0.88 1.45) (end -0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp ccdb7abd-7a45-4c47-ab91-d248d25c4435))
(pad "1" smd rect (at -1.71 -0.95) (size 2 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 50e05454-57f8-40ff-909d-2a1245892a22))
(pad "2" smd rect (at -1.71 0) (size 2 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "/SW") (pinfunction "SW") (pintype "output") (tstamp 4f8a8e97-7145-4aea-bd27-aed19b24cf3d))
(pad "3" smd rect (at -1.71 0.95) (size 2 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+BATT") (pinfunction "VIN") (pintype "power_in") (tstamp b4b8c091-259a-4224-81b5-dd1c08acd69d))
(pad "4" smd rect (at 1.71 0.95) (size 2 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/FB") (pinfunction "FB") (pintype "input") (tstamp 9b239575-ca42-40e5-b206-2fd239613bbb))
(pad "5" smd rect (at 1.71 0) (size 2 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(U1-Pad5)") (pinfunction "EN") (pintype "passive+no_connect") (tstamp 741f4488-b9d4-46aa-9955-a2802aad5ab7))
(pad "6" smd rect (at 1.71 -0.95) (size 2 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/BST") (pinfunction "BST") (pintype "input") (tstamp 6aa752ce-feab-41a6-9ce6-5dce2c01dd78))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TSOT-23-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))