-
Notifications
You must be signed in to change notification settings - Fork 1
/
hw-microdiff.kicad_pcb
11021 lines (10966 loc) · 460 KB
/
hw-microdiff.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)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(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 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 0.48) (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)
(aux_axis_origin 40 146)
(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 "gerbers")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+5V")
(net 3 "+3V3")
(net 4 "/VDD")
(net 5 "Earth")
(net 6 "Net-(D1-Pad1)")
(net 7 "/VIN")
(net 8 "Net-(D2-Pad2)")
(net 9 "/DI")
(net 10 "/DE_RE")
(net 11 "/RO")
(net 12 "unconnected-(J3-Pad3)")
(net 13 "unconnected-(J3-Pad6)")
(net 14 "Net-(J3-Pad4)")
(net 15 "/A-")
(net 16 "/A1-")
(net 17 "/A1+")
(net 18 "/A+")
(net 19 "/A2+")
(net 20 "/A2-")
(net 21 "Net-(J3-Pad7)")
(footprint "MountingHole:MountingHole_2.2mm_M2_ISO14580_Pad" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00006075f3f5)
(at 42.2 143.7)
(descr "Mounting Hole 2.2mm, M2, ISO14580")
(tags "mounting hole 2.2mm m2 iso14580")
(property "LCSC Part" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060ad4c91")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de7e73d6-59ae-461f-bc7a-881d42ef5567)
)
(fp_text value "M2_MountingHole" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fe29ca0-ddbe-4c56-9e97-8672d292f731)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1dd625ce-56f9-4ee5-9ac6-7aba21bc130b)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4924ba0a-6599-4d14-a4f6-4fbd77e08516))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ab7bbfeb-cfe0-4145-903a-8efe14f4e2c2))
(pad "1" thru_hole circle locked (at 0 0) (size 3.8 3.8) (drill 2.2) (layers *.Cu *.Mask) (tstamp 5e9daaa0-20d6-462a-80e9-d2340879a4b2))
)
(footprint "Package_TO_SOT_SMD:SOT-223" locked (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00006076a590)
(at 44.51 133.3 180)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "LCSC" "C6186")
(property "LCSC Part" "C6186")
(property "LCSC Part #" "")
(property "Part #" "AMS1117-3.3")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b125bd")
(attr smd)
(fp_text reference "U2" (at 0 -4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4bec2461-0d4c-4a19-b25e-6452ab2b322f)
)
(fp_text value "3.3V/1A" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5935fb10-aa55-47bf-b943-c90306fb69a6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 13387e06-e3dd-4134-be1b-98452228360c)
)
(fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp 6ae70d84-2c8b-4a4e-bc57-0371bfffba80))
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 9f655b0c-3c37-492e-a4b0-43ae3d84c6f4))
(fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp a884b9a5-8fd0-47d7-b684-ed489e301ccd))
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp d3185454-8f86-4108-9f8d-fd5c9c1662df))
(fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 0d87c8cd-2b00-4782-81b3-c9bf40d7c04f))
(fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 712cad16-0bd6-4e6a-92d6-788ef1b74568))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp ce3e2481-3c48-4fa0-9714-aeae07a929c1))
(fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp e4989a99-cb62-4501-92bd-8e25a817b90c))
(fp_line (start -1.85 -2.3) (end -0.8 -3.35) (layer "F.Fab") (width 0.1) (tstamp 600fde58-ea0d-480d-ae71-d25cdaa0d82e))
(fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 75984126-16fc-46ac-9617-d3e7d1da325e))
(fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 75993b1e-45f7-4b1b-880a-6146f46fafd7))
(fp_line (start -1.85 -2.3) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 9a4c6ca2-a30e-4158-89ed-956aede765a4))
(fp_line (start -0.8 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp c201019f-6cc8-486b-8828-c14175418309))
(pad "1" smd rect locked (at -3.15 -2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 829d2013-70a7-4bfe-be3c-938e29252d62))
(pad "2" smd rect locked (at -3.15 0 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 493c1dd2-735e-4cc3-aa57-cf9386086676))
(pad "3" smd rect locked (at -3.15 2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp e243cfa9-7b25-4bd5-a240-e2ae0b735e5e))
(pad "4" smd rect locked (at 3.15 0 180) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aa18df37-25d8-4806-944f-d25ba388ba34))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" locked (layer "F.Cu")
(tedit 5A19A429) (tstamp 00000000-0000-0000-0000-0000607b5987)
(at 42.01 111.33 180)
(descr "Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x03 2.54mm single row")
(property "Extended" "Yes")
(property "LCSC" "")
(property "LCSC Part" "")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060721c59")
(attr through_hole)
(fp_text reference "J1" (at -2.19 4.93 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0cdbb31-2fb8-417c-866a-26908fab5835)
)
(fp_text value "Power Input" (at 0 7.85 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6704bb76-7769-4a21-9b59-d7b787552e46)
)
(fp_text user "${REFERENCE}" (at 0 2.54 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e30633b-0238-4120-8d2c-c058cfaf599a)
)
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0722954c-f397-4759-9cbe-5dce9a9e5a2f))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 51c0cb1b-8774-4b57-9bf7-7579d777fda8))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp afc87fbf-4251-48ab-95d6-9123c2395443))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c1348092-934c-4eec-b94a-a8d5645109d2))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp cfc01d6e-9194-4f98-9ba2-f9dba7040ef0))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp ed613339-6202-4771-a335-c144aa2272df))
(fp_line (start -1.8 6.85) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0044cfc3-4e61-432a-9445-cb06020ffe2f))
(fp_line (start 1.75 -1.8) (end 1.75 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 0e536c99-0b4e-4d14-be97-ff6b2a7d4523))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1676d822-b778-4e40-be5f-1f2f4555aa2f))
(fp_line (start 1.75 6.85) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp d6e9c721-793d-4a88-b642-3c80c160eb2e))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2e9c3992-9616-4dff-b75f-23a4fc0a5553))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 7aea4e23-4e14-4ed4-9b65-64c77f293228))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 840133b1-495c-4089-8316-095184fff0c1))
(fp_line (start -1.27 6.35) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 909775fd-df2f-410d-ab53-603cd6fc0a91))
(fp_line (start 1.27 -0.635) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp a0548c18-60d8-4801-81c8-e3b28902c48d))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/VIN") (pinfunction "Pin_1") (pintype "passive") (tstamp 843834e5-50f1-4fff-93be-464a25bc84c2))
(pad "2" thru_hole oval locked (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 7020ddd2-f39f-4f6f-b6ed-79459bbd406d))
(pad "3" thru_hole oval locked (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "/VDD") (pinfunction "Pin_3") (pintype "passive") (tstamp b73ee09c-6c19-4dbd-b909-8b3ef8b90093))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-223" locked (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-0000607cab93)
(at 44.51 126 180)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "LCSC" "C6187")
(property "LCSC Part" "C6187")
(property "Part #" "AMS1117-5.0")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606f1043")
(attr smd)
(fp_text reference "U1" (at 0 -4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62435250-389d-4ffa-89b9-394e074a7809)
)
(fp_text value "5V/1A" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0ee49b4-c766-4427-9acd-7b153bfc6ce3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp ff1d76ed-6102-4878-bd05-46edfa007d54)
)
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 223b3d60-0ba3-4cc5-8372-340a8e28ceae))
(fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp 650458eb-1f10-42d5-a472-4281a1e601a9))
(fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp 7c730f42-14c4-418d-a919-32cd6a7227d6))
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp 7d0e3473-29a5-4618-b99e-b4d76aae7a19))
(fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 368a9754-2b79-4756-bccd-0f7d042ab472))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 6e564d6e-e1a0-4e8a-a64d-cc88d954bbb9))
(fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 8333dbe8-e22e-4beb-8f7c-e4fcff2e07c6))
(fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp c716999c-49b1-4e10-8c9e-c4cb67dee641))
(fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 379dbd6f-67a1-4cb6-aea5-a5eeaafaae39))
(fp_line (start -1.85 -2.3) (end -0.8 -3.35) (layer "F.Fab") (width 0.1) (tstamp 42c65663-41d7-46fe-a4eb-4e68b6e90786))
(fp_line (start -1.85 -2.3) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 5db24e26-7ada-44f5-93d6-1c6d2da33e3d))
(fp_line (start -0.8 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp 9e7d60ac-8c89-4a78-b58e-647d2ca0b5ca))
(fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp af7e80dd-bd82-4812-99e4-e7ab93a38fc8))
(pad "1" smd rect locked (at -3.15 -2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 508bc4af-0aa7-4fd0-8b98-3a87dde1fc07))
(pad "2" smd rect locked (at -3.15 0 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+5V") (pinfunction "VO") (pintype "power_out") (tstamp 34b997b7-fb8a-4db8-b032-32a1f72c5e59))
(pad "3" smd rect locked (at -3.15 2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/VDD") (pinfunction "VI") (pintype "power_in") (tstamp 1eea1a01-f2ac-4a11-bf63-ed059c6f4afe))
(pad "4" smd rect locked (at 3.15 0 180) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 12688de1-73b7-4994-916d-9aa6ecfe1d4e))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_ISO14580_Pad" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-0000607cd635)
(at 60.29 143.7)
(descr "Mounting Hole 2.2mm, M2, ISO14580")
(tags "mounting hole 2.2mm m2 iso14580")
(property "LCSC Part" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060ad4846")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 323fa8d6-b75f-40a3-8e13-7f123145495f)
)
(fp_text value "M2_MountingHole" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25efecc8-eda1-4f7e-a684-127459324773)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e50e232e-29cf-4424-a0d4-44d1a05382c3)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 156aca53-cc0d-493c-969b-0f504220167b))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1bd8b2bb-63f6-4944-9a63-e607250d0839))
(pad "1" thru_hole circle locked (at 0 0) (size 3.8 3.8) (drill 2.2) (layers *.Cu *.Mask) (tstamp 5962ce68-2612-4f3f-a64e-b0132981d94a))
)
(footprint "Fuse:Fuse_1206_3216Metric" locked (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-0000607d6f86)
(at 42.38 121.26)
(descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "LCSC" "C910830")
(property "LCSC Part" "C910830")
(property "Part #" "BSMD1206-100-24V")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606f624f")
(attr smd)
(fp_text reference "F1" (at 0 -1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8761da49-8b79-4444-a2ca-f037550eb636)
)
(fp_text value "Fuse 24V/1A" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 529ac46f-de75-43c0-b152-a3f73af35f1d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp d0389de9-3c72-46d9-a59a-7431ba360770)
)
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 8192c4de-c0b3-4cfd-8619-7d866cbf089a))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "F.SilkS") (width 0.12) (tstamp efdeb3ef-d94b-4822-ab2f-3579f62783e7))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 05205f75-20ca-432d-8ad5-f35a237d9f7e))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 50ed9fae-7d4b-4c6d-ae8f-cbd843e14af6))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 642cf2b4-506b-416c-91a9-4fdba6e7f330))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 7c79f8ea-6d04-4773-8c85-de945c6e5de6))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 4b687cf4-cedc-415f-b4e3-34df68c3e2ab))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 5d6a9490-da06-4533-b430-faa76dc7d895))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9b3f8e30-a4f4-4bef-b7da-84db38c0b9fc))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp de6f051f-a2eb-4cbb-99f8-ce223ef5d76a))
(pad "1" smd roundrect locked (at -1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 6 "Net-(D1-Pad1)") (pintype "passive") (tstamp da624423-d60a-43d9-a7c5-28bc6959733b))
(pad "2" smd roundrect locked (at 1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 4 "/VDD") (pintype "passive") (tstamp b840207d-98b4-4dde-b52b-e6cdd1e26627))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" locked (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000607e56ba)
(at 50.21 134.6 90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C5672")
(property "LCSC Part" "C5672")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000607d4efd")
(attr smd)
(fp_text reference "C3" (at 0 -1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9a2f4e0-3ce7-41b6-9dde-b2410a0e3179)
)
(fp_text value "22uF 10V" (at 0 1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e4726af-f8e8-4651-830d-7d2c824bb86c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 9bb28f5b-1f91-4bae-8dd0-fc879d418174)
)
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp e6981e98-6578-4d47-8898-ea89d0dbbe0f))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp f0f8fe3d-2960-452c-83e5-1b46ed554645))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 04f3dae9-8007-47b6-a4d5-91bdde2e3a17))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 56dca2c8-4fa4-417c-8e39-3951b3af1c41))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp aa780a02-3d44-48bd-82fd-75c07934ed4c))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp bbe6c6f4-d747-4e84-ac2c-cd5553c2a70d))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 50c30988-0dda-46b6-ac21-99ef785a3ee9))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 61f69f4a-eacb-4443-bcbb-ca518397c380))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp c15a2a9d-3184-40d6-aeea-fff1d250c085))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp cd3abd81-a273-4b97-b7d2-c97b1997921d))
(pad "1" smd roundrect locked (at -1.475 0 90) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pintype "passive") (tstamp 328f253b-ee6b-4cc2-a734-fe9f2282b1be))
(pad "2" smd roundrect locked (at 1.475 0 90) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 3 "+3V3") (pintype "passive") (tstamp df2014f1-27a6-4f11-beaf-82e28c3658e7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SMA" locked (layer "F.Cu")
(tedit 586432E5) (tstamp 00000000-0000-0000-0000-0000607e5701)
(at 41.86 116.63 90)
(descr "Diode SMA (DO-214AC)")
(tags "Diode SMA (DO-214AC)")
(property "LCSC" "C8678")
(property "LCSC Part" "C8678")
(property "LCSC Part #" "")
(property "Part #" "SS34")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000607e0aec")
(attr smd)
(fp_text reference "D1" (at 0 -2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62f52600-2a56-4b50-a6c7-529b17d82e5e)
)
(fp_text value "Diode 40V/3A" (at 0 2.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9bc8925d-2140-4b83-8fe5-e62729eaa2ef)
)
(fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0202ff46-e6bc-4e9f-be16-23d408d3e3a0)
)
(fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 48faac9e-d4f5-4882-9843-75e1ede6bbcb))
(fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 8472339e-1f1e-4026-ab59-c1d46dfe92ec))
(fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp d0f8d891-ddb8-46a6-a848-717b7e31b85b))
(fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 5a956ed5-1fea-423f-8a6e-7dea6ac10512))
(fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 76343c55-48a3-4605-b9aa-c56b3b764c5c))
(fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 915c3371-4c34-4980-8cca-66e40f54efea))
(fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp a5c2a833-ceab-4415-a255-9ae7c3ce4e78))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 22f011d7-fa11-4d3e-9412-cbf0c2aefa38))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 2329cd47-c4ca-454d-bced-42c7574b9728))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 2bbd04dd-7574-4cc3-8379-b09f819c99f6))
(fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 4508a0d1-b2bd-4a28-a6a0-1dd244a29e30))
(fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 5ebda8b6-81f3-4648-bd3e-76a5f9bfd7c0))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp b0e7e881-f91d-4563-9619-efa237714807))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp bbabb32b-d232-4990-b811-c753af167050))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp cb532a5d-3b68-4952-8d2b-22c75e981c28))
(fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp f36c3496-661c-4a6b-a1f9-73d6b8908d2e))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp fc730895-0a14-4fac-9512-1ae7471eb5f4))
(pad "1" smd rect locked (at -2 0 90) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 36a76246-346f-4fa2-b182-6b553c04591f))
(pad "2" smd rect locked (at 2 0 90) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/VIN") (pinfunction "A") (pintype "passive") (tstamp e23cb792-7af0-4104-a893-9cac95df8a18))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" locked (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000607f0717)
(at 43.4 138.6875 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C17557")
(property "LCSC Part" "C17557")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000063eebba8")
(attr smd)
(fp_text reference "R1" (at 0 -1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 737b1cd2-928a-4146-8524-dd1e570af338)
)
(fp_text value "220R" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d0864ae-b414-4f60-b925-7dd722fbcd03)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e522c3f7-bb13-477f-be4c-1a4303da824f)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 5e982d03-251e-408b-b9b0-074f614e29e2))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e06487b6-4e6a-4be4-9d4d-a9aec38f54b6))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 22629268-56a1-4019-9d26-aa55ee957c85))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3f93e0bf-e4e5-49b8-8a3f-109e5c070b98))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 95186ad4-1742-4a7b-bb4f-0c0ceab5612b))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp b6b432e3-1db6-4c73-a05a-d06f82fbdee5))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ac809a0b-4c07-47e9-8fb1-b013d84e7a54))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp cc573feb-0b62-471c-90c6-d0a38b072988))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp cf056e94-31a5-417d-bf42-d9369723d0cf))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp e98c72f7-9140-496b-9cb7-6a1628fa129f))
(pad "1" smd roundrect locked (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 2 "+5V") (pintype "passive") (tstamp 82822be3-80cb-4e80-9034-1c5c25871d2b))
(pad "2" smd roundrect locked (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 8 "Net-(D2-Pad2)") (pintype "passive") (tstamp 35daabf9-52f3-4de4-8bae-8113ce790051))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" locked (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006086d549)
(at 59.3 124.65)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "LCSC Part" "C14663")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062f13d92")
(attr smd)
(fp_text reference "C4" (at 0 -1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31ea2818-4e08-411b-b3c4-0700a65ed0c5)
)
(fp_text value "0.1uF 50V" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 308b325b-1cc2-41a6-9c54-057cb271aa9f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f83c4037-01c7-49cb-8df3-f5e742528eb8)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 9204af5a-73a0-42cf-ba86-a0a2f6b76eee))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp d6b1db04-61df-4fc0-87de-ea1504d3faa1))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0b463e43-d1f0-401a-a696-d9d585fe6652))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5ded4fc3-a373-423c-8303-c97722568218))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a863f8bb-5d6d-414a-a34d-a83331571f0c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp af50028a-560d-4d25-89f8-6c788c2efaed))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 0b172d32-819c-4eb4-b369-0edbbaea4acb))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 79c47175-fdeb-499b-a8cd-da006a12c8ac))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a034c766-480a-4e3c-9c4c-7d62c17620a3))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e5890cf9-9627-4306-9c25-9ca9902e3e8c))
(pad "1" smd roundrect locked (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 848ff210-fc99-4c1c-ae7e-d62492bd7a55))
(pad "2" smd roundrect locked (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e13c7271-9105-4170-88ee-44bc094a52e0))
(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 "Connector_RJ:RJ45_Hanrun_HR911105A" locked (layer "F.Cu")
(tedit 5C4D7A87) (tstamp 00000000-0000-0000-0000-000062c2fec1)
(at 57.55 114.8725 180)
(descr "http://www.kosmodrom.com.ua/pdf/HR911105A.pdf")
(tags "RJ45 Magjack")
(property "Extended" "Yes")
(property "LCSC" "NA")
(property "LCSC Part" "")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062f13d8d")
(attr through_hole)
(fp_text reference "J3" (at 4.45 -4.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c934a4d9-5eeb-4c47-9d78-a36749637494)
)
(fp_text value "8P8C" (at 4.44 17.94) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4aa99bcb-fa41-4e35-94a4-b83d74768c7c)
)
(fp_text user "${REFERENCE}" (at 4.44 6.36) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 598ef8c9-8cca-448f-967d-3b7020bc3168)
)
(fp_line (start -3.68 -4.26) (end -3.68 1.65) (layer "F.SilkS") (width 0.12) (tstamp 16b0f5ae-ee86-4ddb-91cb-23d478ac3917))
(fp_line (start 12.56 4.93) (end 12.56 17.38) (layer "F.SilkS") (width 0.12) (tstamp 24786eaa-95ef-4066-9c52-67c5c246f8dc))
(fp_line (start -3.68 4.93) (end -3.68 17.38) (layer "F.SilkS") (width 0.12) (tstamp 27305db4-4206-4bb6-bc6d-83281edeb466))
(fp_line (start -3.46 17.26) (end -3.46 17.51) (layer "F.SilkS") (width 0.12) (tstamp 2df5f1d5-ecec-4835-a455-776b2af948b1))
(fp_line (start 12.56 17.38) (end -3.68 17.38) (layer "F.SilkS") (width 0.12) (tstamp 35416279-60e0-46bc-96a5-3bbe77810880))
(fp_line (start -3.68 -4.26) (end 12.56 -4.26) (layer "F.SilkS") (width 0.12) (tstamp 930b8a4e-2ff2-4e99-b164-ee4753acf77b))
(fp_line (start -3.56 17.11) (end -3.81 17.11) (layer "F.SilkS") (width 0.12) (tstamp 96dab06d-5392-4b10-b9c1-1cbab3bd60a1))
(fp_line (start 12.56 -4.26) (end 12.56 1.65) (layer "F.SilkS") (width 0.12) (tstamp a52721f0-4310-40c0-96c2-34fd02dc83f7))
(fp_line (start 13.69 3.93) (end 12.69 4.93) (layer "F.CrtYd") (width 0.05) (tstamp 0233a651-e87c-4f74-a92c-7c9908c7f07a))
(fp_line (start 12.69 1.65) (end 12.69 -4.39) (layer "F.CrtYd") (width 0.05) (tstamp 026f5ae3-01cc-4e06-9f0b-2df0783f5372))
(fp_line (start 12.69 1.65) (end 13.69 2.65) (layer "F.CrtYd") (width 0.05) (tstamp 06f859fc-0680-49e7-85bb-800160e3eda2))
(fp_line (start -3.81 -4.39) (end 12.69 -4.39) (layer "F.CrtYd") (width 0.05) (tstamp 3940643f-e9d8-4a13-bd3b-c62026e26e48))
(fp_line (start -4.81 3.93) (end -4.81 2.65) (layer "F.CrtYd") (width 0.05) (tstamp 448d79c5-4c7e-4356-a6b9-bfe9336ab099))
(fp_line (start -3.81 4.93) (end -3.81 17.51) (layer "F.CrtYd") (width 0.05) (tstamp 45acd0ba-4c68-4dd8-bbad-f912720948b6))
(fp_line (start -3.81 17.51) (end 12.69 17.51) (layer "F.CrtYd") (width 0.05) (tstamp 7c976443-eef6-4e5d-a797-c127e406e673))
(fp_line (start 12.69 4.93) (end 12.69 17.51) (layer "F.CrtYd") (width 0.05) (tstamp a6035478-b0d0-48ff-89ec-0c52a1708921))
(fp_line (start -3.81 1.65) (end -4.81 2.65) (layer "F.CrtYd") (width 0.05) (tstamp bb9c7d30-36dc-4dd4-b5ba-70ff78104ef9))
(fp_line (start -3.81 1.65) (end -3.81 -4.4) (layer "F.CrtYd") (width 0.05) (tstamp bdc0acec-a423-4db3-b674-caea6de844ac))
(fp_line (start -4.81 3.93) (end -3.81 4.93) (layer "F.CrtYd") (width 0.05) (tstamp c161ba66-fb50-4088-986f-72400efbddc3))
(fp_line (start 13.69 3.93) (end 13.69 2.65) (layer "F.CrtYd") (width 0.05) (tstamp d7717ad6-4da8-4099-9b41-08d8d9749030))
(fp_line (start -3.56 0.99) (end -3.56 17.26) (layer "F.Fab") (width 0.1) (tstamp 12a8d875-22f0-4d90-bdf5-f17854f18775))
(fp_line (start -3.56 -4.14) (end -3.56 -1.01) (layer "F.Fab") (width 0.1) (tstamp 370b5825-788d-41b2-b060-cbdeda655caa))
(fp_line (start -2.56 -0.01) (end -3.56 0.99) (layer "F.Fab") (width 0.1) (tstamp 92dc8695-398b-4863-932a-7c9723b4f56a))
(fp_line (start -3.56 17.26) (end 12.44 17.26) (layer "F.Fab") (width 0.1) (tstamp bb75717c-e90c-48c3-afc4-e00eac72544a))
(fp_line (start -3.56 -4.14) (end 12.44 -4.14) (layer "F.Fab") (width 0.1) (tstamp eaa2586c-5b8b-49c2-94d6-8d3d3d4ed721))
(fp_line (start -2.56 -0.01) (end -3.56 -1.01) (layer "F.Fab") (width 0.1) (tstamp fbbf8d8b-b095-4767-9ee2-8eda088141bc))
(fp_line (start 12.44 -4.14) (end 12.44 17.26) (layer "F.Fab") (width 0.1) (tstamp fbcc8e1f-bb66-4f29-93be-14cda3a477ce))
(pad "" np_thru_hole circle locked (at 10.155 6.36 180) (size 3.25 3.25) (drill 3.25) (layers *.Cu *.Mask) (tstamp 5ed25cee-6a06-4d37-bf35-bfea15702148))
(pad "" np_thru_hole circle locked (at -1.275 6.36 180) (size 3.25 3.25) (drill 3.25) (layers *.Cu *.Mask) (tstamp ae6f7cf0-29d4-4754-a098-eecc19f098aa))
(pad "1" thru_hole roundrect locked (at 0 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask) (roundrect_rratio 0.167)
(net 15 "/A-") (pintype "passive") (tstamp 44040bb9-d54a-4afd-ab50-527d2c163608))
(pad "2" thru_hole circle locked (at 1.26 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
(net 18 "/A+") (pintype "passive") (tstamp a477f2ea-dbb3-44fa-ac3c-3d93ff554931))
(pad "3" thru_hole circle locked (at 2.54 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
(net 12 "unconnected-(J3-Pad3)") (pintype "passive+no_connect") (tstamp 0c532729-e2d9-49c3-a757-9eb814544cbc))
(pad "4" thru_hole circle locked (at 3.8 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
(net 14 "Net-(J3-Pad4)") (pintype "passive") (tstamp 21291161-c906-4e95-a636-223da95b9311))
(pad "5" thru_hole circle locked (at 5.08 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
(net 14 "Net-(J3-Pad4)") (pintype "passive") (tstamp b59e5cf2-9ec4-4563-98d7-12fd5cdea878))
(pad "6" thru_hole circle locked (at 6.34 -2.54 270) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
(net 13 "unconnected-(J3-Pad6)") (pintype "passive+no_connect") (tstamp 237e8e73-8c07-4c08-b74e-39a6d88aec6c))
(pad "7" thru_hole circle locked (at 7.62 0 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
(net 21 "Net-(J3-Pad7)") (pintype "passive") (tstamp c98cb4ee-860b-406b-90bb-5f6a097bba26))
(pad "8" thru_hole circle locked (at 8.88 -2.54 180) (size 1.5 1.5) (drill 0.9) (layers *.Cu *.Mask)
(net 21 "Net-(J3-Pad7)") (pintype "passive") (tstamp 0c60f590-e188-4fc1-8f09-051745d20036))
(pad "9" thru_hole circle locked (at -2.185 11.26 180) (size 1.5 1.5) (drill 1.02) (layers *.Cu *.Mask) (tstamp d122802b-2942-47ca-b40a-c7e452293c8d))
(pad "10" thru_hole circle locked (at 0.355 11.26 180) (size 1.5 1.5) (drill 1.02) (layers *.Cu *.Mask) (tstamp 78c54ef3-e142-4fda-8bcb-fc8923fb7f89))
(pad "11" thru_hole circle locked (at 8.525 11.26 180) (size 1.5 1.5) (drill 1.02) (layers *.Cu *.Mask) (tstamp 88115a01-8027-43be-939d-e18945145598))
(pad "12" thru_hole circle locked (at 11.065 11.26 180) (size 1.5 1.5) (drill 1.02) (layers *.Cu *.Mask) (tstamp 1f6c1ec8-30b2-4ed3-af7f-1dcd7c8aeffb))
(pad "SH" thru_hole circle locked (at 12.185 3.31 180) (size 2.5 2.5) (drill 1.63) (layers *.Cu *.Mask)
(net 5 "Earth") (pintype "passive") (tstamp 4c414669-d74b-46cc-a20d-38fcee1c4aa5))
(pad "SH" thru_hole circle locked (at -3.305 3.31 180) (size 2.5 2.5) (drill 1.63) (layers *.Cu *.Mask)
(net 5 "Earth") (pintype "passive") (tstamp f4b1b187-bf67-4eb5-a4ff-fb3aef1e10cd))
(model "${KIPRJMOD}/HR911105A.wrl"
(offset (xyz -3.556 -17.272 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x05_P2.54mm_Vertical" locked (layer "F.Cu")
(tedit 5A19A42B) (tstamp 00000000-0000-0000-0000-000062c3cfd5)
(at 46.22 140.5 90)
(descr "Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x05 2.54mm double row")
(property "Extended" "Yes")
(property "LCSC" "")
(property "LCSC Part" "")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000607e864c")
(attr through_hole)
(fp_text reference "J2" (at 0.1 12.37 180) (layer "F.SilkS")
(effects (font (size 0.9 0.9) (thickness 0.15)))
(tstamp e7ce4d46-831c-4d94-92a6-c91b19ddb694)
)
(fp_text value "Header 2x5P" (at -1.27 12.93 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7944264-bde7-49e1-9cd2-d859ed007bf6)
)
(fp_text user "${REFERENCE}" (at -1.27 5.08 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6d48ef3-61be-4c6f-b955-3bc868f19803)
)
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 68472d6e-5537-471d-8d8a-bb346414d3ef))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 70a588b0-c34a-4d61-b977-739be35e43ef))
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 7f76b3bb-4fb6-4cf2-84d5-cb95a274cc82))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 8146f93e-7817-4e4d-b95f-23a222d02609))
(fp_line (start -3.87 -1.33) (end -3.87 11.49) (layer "F.SilkS") (width 0.12) (tstamp b935b3fc-9abb-45ec-a39c-ffb2f94259fd))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ddcdc873-3192-4feb-8c3c-57d25c2d596c))
(fp_line (start -3.87 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp e1bae916-3481-481f-b5ec-ab551dc6c158))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp faa7ebd1-7f59-4635-bd6b-bc9590115816))
(fp_line (start -4.34 11.9) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0f4a19ea-fbd0-45e9-b6fb-360285353b96))
(fp_line (start 1.76 -1.8) (end 1.76 11.9) (layer "F.CrtYd") (width 0.05) (tstamp 375f0cec-3888-4a7c-b3b1-60e1e7afec91))
(fp_line (start 1.76 11.9) (end -4.34 11.9) (layer "F.CrtYd") (width 0.05) (tstamp 52611888-be0c-4c43-855a-c33f16cabaee))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e5bcb5b2-1886-4240-a0b1-b2dd72ce452c))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0448d76f-5d1f-4b70-bbaf-84e519e739cc))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp 1b643a46-ab2a-451e-85c4-7cd5342b72e6))
(fp_line (start 1.27 -0.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 63a5ea2b-7fa4-4387-a50e-9bebda8173c1))
(fp_line (start -3.81 11.43) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9cbf5374-2c72-4c42-8790-1a7bea9e3768))
(fp_line (start 1.27 11.43) (end -3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp e9bd4f57-7a1a-46ae-b31f-bb07c5339a19))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp da47abaf-be15-4feb-af95-e7e3a2ff73a5))
(pad "2" thru_hole oval locked (at -2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 7d186065-e343-40c5-9a69-a8d3543852d5))
(pad "3" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_3") (pintype "passive") (tstamp 2bef164b-ba83-41e6-b057-bf19d72bd7d4))
(pad "4" thru_hole oval locked (at -2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "/RO") (pinfunction "Pin_4") (pintype "passive") (tstamp ea1ac0a6-064d-457d-bcaa-c35bf7de2931))
(pad "5" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 0a011517-330c-41ed-9f17-f710dd069797))
(pad "6" thru_hole oval locked (at -2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 7e8019b0-8c68-4c62-ab3b-306becebb439))
(pad "7" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/DE_RE") (pinfunction "Pin_7") (pintype "passive") (tstamp 4f862da3-70fa-4394-8c29-63b7abedcada))
(pad "8" thru_hole oval locked (at -2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/DI") (pinfunction "Pin_8") (pintype "passive") (tstamp b3a99223-e562-405c-acd0-cb36a802da71))
(pad "9" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_9") (pintype "passive") (tstamp f4f38449-177e-4591-a618-05506f76ceee))
(pad "10" thru_hole oval locked (at -2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp 87f7568a-51c3-43c0-ba65-285b2cee2665))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" locked (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000062c3e75e)
(at 53.856482 130.343518)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "")
(property "LCSC Part" "C17655")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062f13d94")
(attr smd)
(fp_text reference "R3" (at -2.4 0 90) (layer "F.Fab")
(effects (font (size 0.9 0.9) (thickness 0.15)))
(tstamp 5414d5f1-b24f-4979-a132-b648306a1e43)
)
(fp_text value "390R" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db943c01-6788-4513-8d7b-e86a8141b9e9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c92a6756-6480-4109-b131-a52be659973c)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 45fef1d4-a750-4f5f-8b60-56c02299349e))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp a517b39c-660b-4244-939e-ae080d8ae00b))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 40b41ffb-9bf8-4895-b04f-85594d7a0382))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6b645d34-7867-4200-a9d4-cdbb2835785b))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8412ddf5-74ec-433f-8725-d3733e5a20e0))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c154b77f-92ec-4814-aa9e-e5a44ef6cc97))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 13977c5d-44f2-4741-9213-c652b20c3343))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 16dcf4bd-a560-45bb-a486-79076ff8ebe9))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9176d447-bd2f-4031-be00-56d8a398c810))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp dc9f8430-5bb9-4e4b-a550-609cbf633bfd))
(pad "1" smd roundrect locked (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 17 "/A1+") (pintype "passive") (tstamp 32eebc59-0e0d-48ea-90c8-6630cba5756f))
(pad "2" smd roundrect locked (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "+3V3") (pintype "passive") (tstamp 5429f0b3-d6f6-4a69-9f08-358271ee1ad0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" locked (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000062c4028b)
(at 50.11 128.5 -90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Extended" "Yes")
(property "LCSC" "C5672")
(property "LCSC Part" "C5672")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000607c68ec")
(attr smd)
(fp_text reference "C2" (at 0 -1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 710e9ba7-bc0e-46b9-83a7-34178998742a)
)
(fp_text value "22uF 10V" (at 0 1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac42b496-7832-4cfa-ad53-2ab1f8ea4b7b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 27a1ac45-5c47-4196-962c-208335cddd7e)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp c28d08f9-edc6-4edb-b390-90cc426f7940))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp ec7dda36-5241-4afa-9f16-882f50bf2c69))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 10b03ed3-3b04-4749-a1df-8d57ed336c1a))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 1c90e80b-b1e3-4fed-8599-312c36bff41c))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 6ca9a7b0-95c7-412d-a7de-8504221fa374))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp b6bf765d-245c-4c55-ba08-b73b09ea549c))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 200109a5-8cd4-4441-a2d5-5cef832d10a9))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6cdae73c-ff8c-4a8b-b4e0-49fe2138d8ed))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp a6a38ae3-f85d-4089-bb81-0a1c9b628117))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp f654e22b-9b67-430f-a269-7790f868643d))
(pad "1" smd roundrect locked (at -1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "+5V") (pintype "passive") (tstamp 8fe7ee9b-d8df-4df6-961f-9de06a5dca2d))
(pad "2" smd roundrect locked (at 1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "GND") (pintype "passive") (tstamp a0f84ac2-70cd-4311-b6a1-cb18ba0083bf))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" locked (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000062c402c4)
(at 59.3 126.2)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19702")
(property "LCSC Part" "C19702")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000064121af8")
(attr smd)
(fp_text reference "C5" (at 0 -1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf2ca658-5169-41b0-bd74-963bb9d7d43c)
)
(fp_text value "10uF 10V" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2a83528-e20e-41c3-9b52-d4650f28b05a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6c0c0b95-f37c-4f3e-932c-b374a0aee254)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp c0aeadcf-8907-4165-bec5-849d6b6adeb2))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp c62378a3-08ab-499e-81cb-cd7f664e23df))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2bf2fea1-b2ca-4b52-80a3-03d3e852cbf7))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 54683edf-d87b-4bc6-a7ed-1f1f76b0d2d1))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7e837834-5c5e-46b8-977e-5f7b63bd58dc))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp cba3cfed-c8e5-4b03-9b82-ae88431c12ea))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 35c6363c-84e9-493a-833d-08b14349c03c))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a84e797b-4691-4543-9c31-c9c8eae88578))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b8d10988-465b-4574-b4d6-1ad32e6dda6a))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp dc0bd541-8b72-4f5a-985c-40b8a47966aa))
(pad "1" smd roundrect locked (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp be9fa17b-09fc-4f71-abe0-e9e5cf9e966a))
(pad "2" smd roundrect locked (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7f2227cb-4c1c-4adc-9286-ecacb1277c51))
(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_0805_2012Metric" locked (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000062c40fe6)
(at 59.9 136.8 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "")
(property "LCSC Part" "C17414")
(property "LCSC Part #" "")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000063117899")
(attr smd)
(fp_text reference "R2" (at 0 -1.65 90) (layer "F.Fab")
(effects (font (size 0.9 0.9) (thickness 0.15)))
(tstamp 25dc9b87-f58c-4d63-980f-4f35937c4d3e)
)
(fp_text value "10K" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 842c9761-3961-426c-b95c-cf0eb82e3acf)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2fd9a7f3-36e3-46a8-b648-7c1a0cb0c5db)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 484f7399-911d-4c92-845b-c3d9e8612b92))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp ac0664ab-09ef-4679-8843-daa797793d02))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 09f1eb00-9cca-49a0-bf0c-9707f05c9013))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 14f9613a-668f-4e69-ba8e-f65916017880))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 50dc8526-f24d-4ab8-9432-50885b1f68b7))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp dcde3450-119f-4c59-945f-cad980573e4e))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 251fa261-4475-4f03-a49b-2f27988ea4da))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 2de6a79a-7e5c-49ee-bc4f-fbaf30cd5c2e))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp af5c77fb-eb8c-47ff-8b89-d0d9f43f45e3))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ea8c0865-35e4-4ee7-99c3-17e24ba2b97c))
(pad "1" smd roundrect locked (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 10 "/DE_RE") (pintype "passive") (tstamp 7b22f523-3138-472e-88be-f129321bf83b))
(pad "2" smd roundrect locked (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 1 "GND") (pintype "passive") (tstamp b0421602-1a59-4f48-969e-6a2064a1db55))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" locked (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-000062c41e41)
(at 41.1 138.5 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")
(property "LCSC" "C72041")
(property "LCSC Part" "C72041")
(property "Part #" "BHC-ZL1M2RY")
(property "Sheetfile" "hw-microdiff.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062dd414c")
(attr smd)
(fp_text reference "D2" (at 0 -1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87e0b28d-9ca7-41d4-8a2e-bf1b0e226553)
)
(fp_text value "Blue LED" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9cbc9a6-3956-416b-a7bb-6db52a4d0620)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d3a4b62f-a7e7-425d-92ee-78f147f74499)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 16ec37e6-a175-4604-810f-fa55b77fcb17))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp cd4a285e-581f-4eac-b1ce-bc69a16b7a58))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp dce22ffc-c852-4faf-a944-164b55c1d772))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0aebba5f-a818-4f38-929d-d1ffb2e06bcc))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8e30a79d-621b-4d90-9e89-ea3e935a3c6e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9ff9dacc-3926-4720-a3b3-1b66c97dcee8))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp cce6537f-7c6c-41d1-a04a-d58fa471c946))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 29a30eae-6bc7-4432-9ad7-acd08a40ecc1))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 562426e3-d4ac-44dd-bd06-26518ddd684c))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b1414a5d-1e03-4cbf-b4c2-628bc1f41359))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp d080fa8d-d5a6-40eb-a626-6add4761fba6))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e1ce359b-a1f3-4b7e-88bb-5e04b553771e))
(pad "1" smd roundrect locked (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 03c73104-ddc6-411e-bbb0-594773128d71))
(pad "2" smd roundrect locked (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 5b7d254b-aa23-45be-849c-0a29bac48d5b))
(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 "hw-microdiff:led_direction" locked (layer "F.Cu")
(tedit 62C3DC59) (tstamp 00000000-0000-0000-0000-000062c449a6)
(at 42.4 141.05 90)
(attr through_hole)
(fp_text reference "REF**" (at 0 0.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b51e072-0766-4bb4-8d3d-97927ebe774e)
)
(fp_text value "led_direction" (at 0 -0.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea252b49-3971-44b0-874c-0f53a7875746)
)
(fp_line (start 0 0) (end 0 0.55) (layer "F.SilkS") (width 0.1) (tstamp 2644c8e3-6e49-4023-be14-39d433fd0a1e))
(fp_line (start 0 0) (end 0.6 0.4) (layer "F.SilkS") (width 0.1) (tstamp 72e0e557-cf7d-4d94-bfd2-3816529456be))
(fp_line (start 0.6 0) (end 1.1 0) (layer "F.SilkS") (width 0.1) (tstamp 81efc88b-ffb9-4ec7-9cc4-43eef1dcc2a2))
(fp_line (start 0.6 0.4) (end 0.6 -0.4) (layer "F.SilkS") (width 0.1) (tstamp a9be8fd4-4b48-4eef-a8e9-1a21785ead4a))
(fp_line (start 0 0) (end 0 -0.55) (layer "F.SilkS") (width 0.1) (tstamp d12d929f-3c6f-455d-bb0f-8b61abf68dcd))
(fp_line (start -0.4 0) (end 0 0) (layer "F.SilkS") (width 0.1) (tstamp e8db005a-6c23-4d2b-8668-1ef5fe31df7c))
(fp_line (start 0.6 -0.4) (end 0 0) (layer "F.SilkS") (width 0.1) (tstamp f1d2db7b-af65-4f51-b36f-08a928ba0eca))
)
(footprint "hw-microdiff:led_direction" locked (layer "F.Cu")
(tedit 62C3DC59) (tstamp 00000000-0000-0000-0000-000062c44cee)
(at 43.8 114.05 90)
(attr through_hole)
(fp_text reference "REF**" (at 0 0.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f00d262e-9f99-439e-b4a8-e03c7fa133b1)
)
(fp_text value "led_direction" (at 0 -0.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c86d5cdc-363f-42e9-99d0-ebd776c113c3)
)
(fp_line (start 0.6 0) (end 1.1 0) (layer "F.SilkS") (width 0.1) (tstamp 0a67cf67-0d4f-43d9-a506-a63cbd2a07e4))
(fp_line (start -0.4 0) (end 0 0) (layer "F.SilkS") (width 0.1) (tstamp 106cfb0b-59ee-4860-8273-ae32c0b1027f))
(fp_line (start 0.6 -0.4) (end 0 0) (layer "F.SilkS") (width 0.1) (tstamp 131939b6-74b0-4528-9217-7b91f1795b3f))
(fp_line (start 0 0) (end 0.6 0.4) (layer "F.SilkS") (width 0.1) (tstamp 473736a7-1095-4b93-8d98-2cddea2877c9))
(fp_line (start 0.6 0.4) (end 0.6 -0.4) (layer "F.SilkS") (width 0.1) (tstamp d68814f3-21f2-4c20-b014-1009d1bc7b14))
(fp_line (start 0 0) (end 0 0.55) (layer "F.SilkS") (width 0.1) (tstamp daa3c4bf-9276-4225-bdd1-fb968deed0c0))
(fp_line (start 0 0) (end 0 -0.55) (layer "F.SilkS") (width 0.1) (tstamp de407199-705e-4ac6-84bd-9fb37dacb00e))
)
(footprint "hw-microdiff:on-prem-logo" locked (layer "F.Cu")
(tedit 607263D5) (tstamp 00000000-0000-0000-0000-000062c4a320)
(at 53.965946 109.4)
(fp_text reference "G***" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp ccebe5e2-9495-4d97-adae-900ce49919fc)
)
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp e4bb4be4-3d55-4e47-8a1d-5f976d158d4b)
)
(fp_line (start -3.005448 2.016622) (end -1.145213 3.070801) (layer "F.SilkS") (width 0.1) (tstamp 05baa175-6e70-4fab-a6be-110eb3f2c89a))
(fp_line (start 1.213227 3.07098) (end 3.073557 2.016615) (layer "F.SilkS") (width 0.1) (tstamp 0bb5d043-2625-4e56-bb5f-0c7ccfc14671))
(fp_line (start 3.073557 2.016615) (end 3.073557 -0.080149) (layer "F.SilkS") (width 0.1) (tstamp 11272704-8a2a-4de8-b702-49c4636bdfe6))
(fp_line (start 0.034237 -2.769446) (end 1.567837 -1.900188) (layer "F.SilkS") (width 0.1) (tstamp 17ba8554-1782-4a1c-ab13-993280b38983))
(fp_line (start -2.668328 1.825431) (end -2.668328 0.111127) (layer "F.SilkS") (width 0.1) (tstamp 26dac8e3-29e8-4df1-aea5-84843afa671b))
(fp_line (start -1.987077 0.497237) (end -1.987077 -0.648466) (layer "F.SilkS") (width 0.1) (tstamp 2d63445e-6e70-4f4a-a5c4-3ce8a6aa451e))
(fp_line (start 1.567837 -1.900188) (end 1.904957 -2.091277) (layer "F.SilkS") (width 0.1) (tstamp 2ea3d273-cd62-4507-ab7d-67716dd22555))
(fp_line (start -0.818753 -1.513798) (end -1.155963 -1.704982) (layer "F.SilkS") (width 0.1) (tstamp 318012b1-cb22-4219-89b9-24d276e9f247))
(fp_line (start -1.145213 3.070801) (end -1.145213 2.688612) (layer "F.SilkS") (width 0.1) (tstamp 35be65f8-1416-4b92-af3a-b2bf7e0b149d))
(fp_line (start 0.034147 2.967022) (end 1.213227 2.298766) (layer "F.SilkS") (width 0.1) (tstamp 36a05881-82ef-4256-b3a4-7f6c2cb64554))
(fp_line (start -0.134603 2.489201) (end -1.145213 1.91649) (layer "F.SilkS") (width 0.1) (tstamp 39e14ea6-ab24-4f60-8692-3eef4c6c5c3c))
(fp_line (start 1.897277 -0.941274) (end 0.034057 0.114962) (layer "F.SilkS") (width 0.1) (tstamp 476d8ffe-9878-49d2-bdee-fa7975540501))