-
Notifications
You must be signed in to change notification settings - Fork 4
/
IEC-62056-21-Optical-Probe.kicad_pcb
10675 lines (10629 loc) · 442 KB
/
IEC-62056-21-Optical-Probe.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")
(title_block
(title "IEC-62056-21-Optical-Probe")
(date "2022-01-05")
(rev "1")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.12)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+3V3")
(net 3 "/VBUS")
(net 4 "/D+")
(net 5 "/D-")
(net 6 "/RXD_USB")
(net 7 "/TXD_USB")
(net 8 "/RXD")
(net 9 "Net-(J1-PadB5)")
(net 10 "unconnected-(J1-PadA8)")
(net 11 "Net-(J1-PadA5)")
(net 12 "unconnected-(J1-PadB8)")
(net 13 "/TXD")
(net 14 "Net-(Q3-Pad2)")
(net 15 "Net-(Q4-Pad3)")
(net 16 "Net-(R4-Pad2)")
(net 17 "Net-(R7-Pad1)")
(net 18 "Net-(Q2-Pad1)")
(net 19 "Net-(R14-Pad2)")
(net 20 "VCC")
(net 21 "Net-(R12-Pad2)")
(net 22 "unconnected-(U2-Pad1)")
(net 23 "unconnected-(U2-Pad2)")
(net 24 "unconnected-(U2-Pad10)")
(net 25 "unconnected-(U2-Pad13)")
(net 26 "unconnected-(U2-Pad14)")
(net 27 "unconnected-(U2-Pad15)")
(net 28 "unconnected-(U2-Pad16)")
(net 29 "unconnected-(U2-Pad19)")
(net 30 "unconnected-(U2-Pad20)")
(net 31 "Net-(D5-Pad1)")
(net 32 "Net-(D5-Pad2)")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 02629a86-05ce-4583-889c-ec6424837177)
(at 156.5 109 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/49a73562-fc7a-44a1-8562-76326a6322ae")
(attr smd)
(fp_text reference "C4" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8acad46d-a329-456f-9280-20b442139871)
)
(fp_text value "4u7/16V" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fec23fa3-1e42-4c42-a7e8-13edb1b33bf6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3282a147-3b33-480c-a0a5-0a00a314c7d9)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 7ab463fb-8cc0-42c4-aca5-c93fdea88e6b))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp f958d197-ce80-463e-b85f-6a5612c797a4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 23bc1ee1-b7b0-47fe-8505-1d6f8c561058))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 458513e8-47cf-4f71-9c1e-98e47f11581e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d0b66fb3-4952-499a-a41c-75a5c768820a))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp df3c22ee-feee-4e4a-a043-8e5e2f4106d9))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 40135990-1f7d-408d-a9db-355c0978a01b))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 56e8c8a5-5b23-4f6b-aea6-dac4b9f45c9e))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d63c3a88-561e-4081-b579-bbc9be82edae))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ec01822d-8d53-453a-be4c-05ceec577a2c))
(pad "1" smd roundrect locked (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 1f937cb7-8718-4fef-8cda-baad6e1796bd))
(pad "2" smd roundrect locked (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/VBUS") (pintype "passive") (tstamp 43c06dcc-44c7-47da-afac-32f5b37d69b2))
(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" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 03e187d2-6c4a-4ece-841b-834d761b85d6)
(at 159 105.25)
(descr "Resistor SMD 0603 (1608 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" "C25819")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/1dff855a-a009-4e39-83d8-9c546ab45a49")
(attr smd)
(fp_text reference "R5" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a64455e6-d627-495b-9f65-8514d3bb72dd)
)
(fp_text value "47k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27a2e118-e759-4fab-964d-896d29cf8156)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a8388897-7737-4925-b3c2-1c16ad936691)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2f58fb13-0fd6-41c8-b9d6-ac7c982df2c7))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp a3572912-ea02-49f5-9e59-c738672315d5))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 613f034e-b0e5-4af0-8912-8de28aaff340))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ad32a7c2-3177-4254-8c58-ae3f4bc5acc8))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ea5f6131-cb7d-4565-b2fb-3b607f4c793a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f812bf02-bb27-4792-a9e8-bff50261d428))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0cb97ebf-9b13-488c-95a4-2095e4bac56e))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4185c091-095f-4e12-bd4d-b5cdf7a29e5a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 46f9bc0a-ab12-4df4-bfac-e2e7f259c3f7))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4a845ede-4258-46b7-b03d-a737b3f81034))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(R4-Pad2)") (pintype "passive") (tstamp 76e48296-ced0-4a92-b314-8760d26ef2a9))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f6261936-8a5b-4419-a880-83b012a8fbb4))
(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 "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 08e2d62f-f99a-4268-8b33-617dfcc63e75)
(at 154.25 104.75)
(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" "C19666")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/21852164-2ea2-459b-b70d-ab9b9f3fa347")
(attr smd)
(fp_text reference "C7" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ff874d0-4ac5-414c-83a7-573eda4c7703)
)
(fp_text value "4u7/16V" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9538e4ed-27e6-4c37-b989-9859dc0d49e8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 681bd495-c396-44ce-92bd-4b397cd48c04))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp be0953c0-632d-4dd2-85e9-4d41239f22d2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3451168c-3c76-4628-aee4-7c231bd100c3))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 563c12e4-8f8c-446c-a11f-94f5aa93b994))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a3668681-09b1-48f0-a7b1-f6b24183a469))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ca213826-0282-4b3a-840f-ec416dc34acf))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5994a946-119f-4db4-aafe-00ae73b5b800))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a1c7b1f5-f895-4192-9484-2357882c73e0))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b680b4a7-6cb0-40b5-a7ec-a02910a0daa4))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c5a1761e-3391-4e74-90c9-947fd66e1fc6))
(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 1 "GND") (pintype "passive") (tstamp eaef1172-3351-417c-bfc4-74a598f141cb))
(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 2 "+3V3") (pintype "passive") (tstamp f6ee98b5-4773-4eeb-a825-33c1705abace))
(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 "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5C745284) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc)
(at 161.25 97 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip")
(tags "net tie solder jumper bridged")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/df70d15e-98d3-4cb4-a062-d0dbe58f8636")
(attr exclude_from_pos_files)
(fp_text reference "JP1" (at 0 -1.8 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 741e6598-04b9-4005-a079-9081c23103ab)
)
(fp_text value "RX" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a1ac2c6-8da8-4410-b772-69afa2855077)
)
(fp_poly (pts
(xy 0.25 -0.3)
(xy -0.25 -0.3)
(xy -0.25 0.3)
(xy 0.25 0.3)
) (layer "F.Cu") (width 0) (fill solid) (tstamp 3450ae82-42ae-493f-904b-d8b1a09c107a))
(fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 14b6a088-e29e-4f65-bb62-fd783c1ab88e))
(fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 1d3dd843-278a-491c-aee7-c4ca56549357))
(fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 6b4ae552-c3dc-4d02-ab1a-556e15ae247d))
(fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 8157d0c3-4115-4fef-882d-18ff9f3b1e49))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 26584013-aa69-4f6e-9469-cf96829118fe))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 42921c6f-25e8-4512-9139-83b5b81397a7))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp d9209bac-cc1b-4bd5-9b0c-8896b0dbce47))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp d9c7258e-64f4-44a0-b9ed-474106f56c42))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 53d63574-d294-4160-8943-1f901b80728f))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 9d221b3b-0bfe-4439-a426-0f2594b9c7bf))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp a3c07522-2d1f-4d1c-a6e5-18097136531a))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp e12656ad-962f-4bd5-a35d-a45aa6b4e27e))
(pad "1" smd custom locked (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 6 "/RXD_USB") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp ff3f0dce-48a8-4a4e-9a85-b6808253807b))
(pad "2" smd custom locked (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 8 "/RXD") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 9d1d67aa-bd89-4416-8ff1-ea3aed8edbd3))
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5C745284) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)
(at 158.75 97 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip")
(tags "net tie solder jumper bridged")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/1557b237-bcbb-4508-aadd-a6b58cfb5833")
(attr exclude_from_pos_files)
(fp_text reference "JP2" (at 0 -1.8 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fbda89d-82ba-4f0a-b113-988f269883dc)
)
(fp_text value "TX" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 90dda447-2750-402e-9a9e-df264b0c0bc9)
)
(fp_poly (pts
(xy 0.25 -0.3)
(xy -0.25 -0.3)
(xy -0.25 0.3)
(xy 0.25 0.3)
) (layer "F.Cu") (width 0) (fill solid) (tstamp 3fc3a397-ec3a-4314-aa6a-44925ef4cbbe))
(fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 3d927ca0-f4ad-42ab-b902-dfef8d84eebb))
(fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 7d512d14-3ca4-4934-b506-eb07d268c7dc))
(fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 9004cee7-358e-4c08-9d64-a05f28a4e7b6))
(fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp b2ecb88a-4c09-46d5-b24a-de38dbb48f75))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 7efaeda2-e767-44b9-adb2-3a0c3f4d2f1d))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp d8ebdeb0-2bbd-4a1b-a259-f95c97f44cbe))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp dacfc6b2-f197-4446-86ee-d141533404be))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp e68fac9b-3de3-4acb-9bb0-3dee3685df22))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 4736f749-4a0e-4a05-b1aa-d51f1c3fc23d))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 782b86fa-ef9f-4c16-a991-b44a80f0f0c3))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 8847e751-6992-4f80-92c5-c3bef4b5dbf6))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp ddcf9a83-0126-4df6-88fa-3363d508d3a6))
(pad "1" smd custom locked (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 7 "/TXD_USB") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp 251435cb-df17-46ab-aac4-3d24ccac8db0))
(pad "2" smd custom locked (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 13 "/TXD") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 742f6656-c86d-41c0-937e-ef6ded3bd482))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077)
(at 146.25 103.25 180)
(descr "Resistor SMD 0603 (1608 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" "C22828")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/445f3348-c255-4930-b46c-81f417f5f089")
(attr smd)
(fp_text reference "R13" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067)
)
(fp_text value "180R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(pad "1" smd roundrect locked (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(D5-Pad1)") (pintype "passive") (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(pad "2" smd roundrect locked (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(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 "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 26b5b06d-6731-4f1d-a50f-a1a758285eac)
(at 149.5 89 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/e4c80142-ddd8-4f0d-a5c3-28d3d5767f35")
(attr smd)
(fp_text reference "C6" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e216a3d4-c7c0-40e0-9701-6d206641d342)
)
(fp_text value "100n/50V" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 208a6583-df1c-4ff8-9045-47b7770a5518)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0c3dbbcf-98e0-48d2-853d-b67234b32313)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp c9a40d5d-4fe7-4da0-89eb-466f8c6c321b))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp cb6506b0-3912-438a-b6ea-123a23611666))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 76ff16ff-0d33-4704-b0f8-f9c9f4b3e595))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 89fa7fcb-3c2b-4c1b-b3ed-e2a1cf745f7d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 97931d4a-7c02-4a9b-a790-a3569eede93c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp effa9ffa-d173-4290-8a92-c5f93d4c73ba))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6d7c23f0-27c3-4fa6-89cc-f79a540be70c))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 79af4db6-baae-4c77-a86f-0586761cb86a))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b98190a3-4e75-4ed8-b75b-e1b37bee46b3))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d92867dc-3e98-46a9-a48e-3161efe31b10))
(pad "1" smd roundrect locked (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp ed06b896-4df0-4238-b6eb-bbbe5360e849))
(pad "2" smd roundrect locked (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "VCC") (pintype "passive") (tstamp 551310a4-3882-4605-bfec-f0802df1435c))
(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))
)
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "twam-Misc:MountingHole_JLCPCB" (layer "F.Cu")
(tedit 60A56360) (tstamp 2ff899c4-f7e7-4b92-818a-4b488f9548ed)
(at 140.25 106.75)
(descr "Mounting Hole 1.2mm, no annular")
(tags "mounting hole 1.2mm no annular")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/057360cc-a2cb-4096-a600-b91114d6ec15")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fb02a67-26c1-488c-832a-23348537b2dd)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f2e462f-ba43-44a7-8ae3-cb725e89bd6d)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd927c7d-f6a9-462d-a91d-0ad50e16c83a)
)
(fp_circle (center 0 0) (end 0.7 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 354e124a-d677-4000-8f60-c16bbfd85f6c))
(pad "" np_thru_hole circle locked (at 0 0) (size 1.152 1.152) (drill 1.152) (layers *.Cu *.Mask)
(solder_mask_margin 0.148) (clearance 0.148) (tstamp b2434bcc-c1c2-4d72-9403-8bef0bea8e37))
)
(footprint "TestPoint:TestPoint_Pad_2.0x2.0mm" locked (layer "F.Cu")
(tedit 5A0F774F) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7)
(at 155.5 93.5)
(descr "SMD rectangular pad as test Point, square 2.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/c6cd638e-6247-4eb5-86f8-ed63cf5541aa")
(attr exclude_from_pos_files)
(fp_text reference "TP3" (at 0 -1.998) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fc6eda3-a41a-4ab9-935d-37e18cb30594)
)
(fp_text value "TXD" (at 0 2.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fcb7a65f-f4cd-47e7-94e9-48c450d0d7f3)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfcdffb4-9a75-4453-a5cf-48d0c88fa2a7)
)
(fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 2fe436e0-75bf-42a2-b14a-09df5c2be702))
(fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer "F.SilkS") (width 0.12) (tstamp 69675058-6b96-42da-8df5-92aaf6930be8))
(fp_line (start 1.2 1.2) (end -1.2 1.2) (layer "F.SilkS") (width 0.12) (tstamp a2306fdc-d8f4-42ce-83f7-03c3d3fe62be))
(fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer "F.SilkS") (width 0.12) (tstamp bcd0d850-a20d-42e1-b97f-b14f9222717c))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7195a7f5-2a0f-4cae-8649-2cc5cbdffe2b))
(fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 920101e0-4dde-4453-ba02-4211cb357ea2))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a12c94a5-1fd0-4cb6-9bfe-f7529f451405))
(fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f8fd3b2c-9550-4b51-be47-a8d9567c972f))
(pad "1" smd rect locked (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask")
(net 13 "/TXD") (pinfunction "1") (pintype "passive") (tstamp f43f384e-6bcf-4d6c-ac65-2e849bdb75c5))
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b)
(at 148 95.5 -90)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC" "C105432")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/0e5ba606-29f1-415d-b782-15075e12dae2")
(attr smd)
(fp_text reference "Q2" (at 0 -2.4 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e)
)
(fp_text value "S8550" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa)
)
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(pad "1" smd roundrect locked (at -0.9375 -0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(Q2-Pad1)") (pinfunction "B") (pintype "input") (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
(pad "2" smd roundrect locked (at -0.9375 0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "VCC") (pinfunction "E") (pintype "passive") (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(pad "3" smd roundrect locked (at 0.9375 0 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "Net-(D5-Pad2)") (pinfunction "C") (pintype "passive") (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_2.0x2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 3b909fd4-b382-4019-8708-80d1d9a9fe1c)
(at 139.5 99.5)
(descr "SMD rectangular pad as test Point, square 2.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/71197314-c3b9-4c4f-aa08-fee4fe478db3")
(attr exclude_from_pos_files)
(fp_text reference "TP5" (at 0 -1.998) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2276bf47-b441-4aa2-ba22-8213875ce0ee)
)
(fp_text value "VUSB" (at 0 2.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2af1d271-3c6a-476d-8eba-6b2aab466da3)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0774b60f-e343-428b-9125-3ca983239ad5)
)
(fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 9924c304-97d1-4655-9ab8-854a335a84c2))
(fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer "F.SilkS") (width 0.12) (tstamp b7844cf9-69d3-4f7a-977a-bfc30d5d4c82))
(fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer "F.SilkS") (width 0.12) (tstamp ee6e4a23-bb7c-4f28-ab56-3ba1b79e1c04))
(fp_line (start 1.2 1.2) (end -1.2 1.2) (layer "F.SilkS") (width 0.12) (tstamp ef11623e-ea9c-4a76-a028-9fae209a45f2))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4d7ffc75-3dd8-46f7-86f3-405d41c4571a))
(fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 825065db-dc11-43e9-aa2e-59e6b2cd21f3))
(fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b3dbf4ad-71cb-48f5-9655-41b47deeea78))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp eaab2e59-ff73-4d74-b3d3-7e7c2515083f))
(pad "1" smd rect locked (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask")
(net 3 "/VBUS") (pinfunction "1") (pintype "passive") (tstamp 0844b132-5386-469c-86ff-d527c8a00608))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3c93f67a-0e3b-4687-bc9d-040be5ef14d4)
(at 145.5 95.5 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/e41c36c0-3409-4096-94fe-47ce84f22965")
(attr smd)
(fp_text reference "C2" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0962bdf4-b1a6-488e-af48-1672a5c82fff)
)
(fp_text value "100n/50V" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e348d38-2ab2-4fae-b118-bf09e32e6116)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 581cd392-cad9-43f6-a244-053a474219a1)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 2184a3d3-b8b2-41f7-8af3-86536c56928b))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 853ea61e-8c79-49f8-b355-7a8568b5b628))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1b833b47-135d-4e4a-82d3-60766d331726))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2154ed4d-dfbc-454b-9852-8b66fdb7254d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2dc76e9b-80d1-4db0-8767-b307332d6b0d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b985cc59-bb13-42df-954b-10441ccc56dd))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 46f12d70-091b-4e0f-9d5b-b9c81545e4e2))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 794e69ff-6237-4bdd-9eaa-a34f5da6feba))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e662d46e-cffe-4f33-ad52-44bb9b3a93f0))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp edb57275-a45f-4c1e-a9ff-d35f0b173129))
(pad "1" smd roundrect locked (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp c69aa85f-0d8b-4f71-bc88-e17edb58946d))
(pad "2" smd roundrect locked (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "VCC") (pintype "passive") (tstamp 3329e178-6da0-4b49-9682-85f57bdd1454))
(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 "TestPoint:TestPoint_Pad_2.0x2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a)
(at 159 93.5)
(descr "SMD rectangular pad as test Point, square 2.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/374b14a5-63f1-4e00-ac6b-88d10c9284f6")
(attr exclude_from_pos_files)
(fp_text reference "TP2" (at 0 -1.998) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e2701ea2-e23f-44f2-a20e-c9e74ea88bb1)
)
(fp_text value "RXD" (at 0 2.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cdea6ba1-cc65-46ec-9776-a403fa76c4fe)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ac2bac7-c686-402e-9f05-089e132647d2)
)
(fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 0ea0e524-3bbd-4f05-896d-54b702c204b2))
(fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer "F.SilkS") (width 0.12) (tstamp 1d20c966-0439-42a1-b5e3-5e76b52f827f))
(fp_line (start 1.2 1.2) (end -1.2 1.2) (layer "F.SilkS") (width 0.12) (tstamp f56e10b5-909a-4bf7-b9bb-b5663dc8fff0))
(fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer "F.SilkS") (width 0.12) (tstamp fec2ae03-3539-4fc7-9da2-1b1336bf787c))
(fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 12721b60-b423-4830-af94-c68b76872f05))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 29f4961c-cbd7-42a0-91e7-8ae77405e061))
(fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 663e5097-d637-4088-8d27-2d72ff835abc))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ec0137ed-9765-4dfb-9cee-4a1826ddb19d))
(pad "1" smd rect locked (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask")
(net 8 "/RXD") (pinfunction "1") (pintype "passive") (tstamp 47c4da32-a886-4a7a-86ef-2f3db3797d7d))
)
(footprint "Package_SO:SC-74-6_1.5x2.9mm_P0.95mm" (layer "F.Cu")
(tedit 5D9F72B0) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)
(at 149.5 91.5 180)
(descr "SC-74, 6 Pin (https://www.nxp.com/docs/en/package-information/SOT457.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SC-74 SO")
(property "LCSC" "C513289")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/d300d527-df54-4fb0-b784-d9fb061a8599")
(attr smd)
(fp_text reference "U3" (at 0 -2.4) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756)
)
(fp_text value "74LVC2G17" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.38 0.38) (thickness 0.06)))
(tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47)
)
(fp_line (start 0 -1.56) (end -1.85 -1.56) (layer "F.SilkS") (width 0.12) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(fp_line (start 0 1.56) (end -0.75 1.56) (layer "F.SilkS") (width 0.12) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
(fp_line (start 0 1.56) (end 0.75 1.56) (layer "F.SilkS") (width 0.12) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(fp_line (start 0 -1.56) (end 0.75 -1.56) (layer "F.SilkS") (width 0.12) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(fp_line (start -2.1 1.7) (end 2.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(fp_line (start -2.1 -1.7) (end -2.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(fp_line (start 2.1 1.7) (end 2.1 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
(fp_line (start 2.1 -1.7) (end -2.1 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
(fp_line (start -0.75 1.45) (end -0.75 -1.075) (layer "F.Fab") (width 0.1) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
(fp_line (start -0.75 -1.075) (end -0.375 -1.45) (layer "F.Fab") (width 0.1) (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b))
(fp_line (start 0.75 1.45) (end -0.75 1.45) (layer "F.Fab") (width 0.1) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
(fp_line (start 0.75 -1.45) (end 0.75 1.45) (layer "F.Fab") (width 0.1) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(fp_line (start -0.375 -1.45) (end 0.75 -1.45) (layer "F.Fab") (width 0.1) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(pad "1" smd roundrect locked (at -1.1375 -0.95 180) (size 1.425 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(Q4-Pad3)") (pintype "input") (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
(pad "2" smd roundrect locked (at -1.1375 0 180) (size 1.425 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(pad "3" smd roundrect locked (at -1.1375 0.95 180) (size 1.425 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/TXD") (pintype "input") (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
(pad "4" smd roundrect locked (at 1.1375 0.95 180) (size 1.425 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(R14-Pad2)") (pintype "output") (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(pad "5" smd roundrect locked (at 1.1375 0 180) (size 1.425 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(pad "6" smd roundrect locked (at 1.1375 -0.95 180) (size 1.425 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/RXD") (pintype "output") (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SC-74-6_1.5x2.9mm_P0.95mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_2.0x2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 7147b342-4ca8-4694-a1ec-b615c151a5d0)
(at 143 104)
(descr "SMD rectangular pad as test Point, square 2.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/cb5c1b99-0475-490f-b5c7-342f81accf63")
(attr exclude_from_pos_files)
(fp_text reference "TP7" (at 0 -1.998) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce4b6c19-1441-4e43-8af4-a7f34dfbb538)
)
(fp_text value "D+" (at 0 2.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c986000-fc83-4495-a50f-9f4b94e485bc)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45fc93ca-f8ba-48a8-9189-1c9886475cd3)
)
(fp_line (start 1.2 -1.2) (end 1.2 1.2) (layer "F.SilkS") (width 0.12) (tstamp 802bd717-75a4-4efc-bdc3-ab512c6bce65))
(fp_line (start 1.2 1.2) (end -1.2 1.2) (layer "F.SilkS") (width 0.12) (tstamp 88ea0fe3-17bb-45bf-bf71-4da88c965186))
(fp_line (start -1.2 1.2) (end -1.2 -1.2) (layer "F.SilkS") (width 0.12) (tstamp bb7f3caf-4343-4dcb-b7b2-5479c850c4a2))
(fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer "F.SilkS") (width 0.12) (tstamp c9863f4f-bdf5-49f4-b18e-dce622ff9931))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 12c9f3e1-9431-42f8-b6f8-fb6fd35fc1cb))
(fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9fbabfd5-5316-4dcb-8d99-3c53b9c69880))
(fp_line (start -1.5 -1.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d8932824-bdfc-4009-a7d0-6ff32efa7e1a))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp f89b1d5e-28c8-498c-b199-7acbd8607540))
(pad "1" smd rect locked (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask")
(net 4 "/D+") (pinfunction "1") (pintype "passive") (tstamp b400c80e-5312-495d-b0d5-8365ed4de032))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 769938af-32ec-4344-b107-6d7019761be5)
(at 156.5 106 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/bc39b306-5284-444f-85a9-8952a0ab0cca")
(attr smd)
(fp_text reference "C3" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac4292ca-986e-4829-a30c-32b665529ca5)
)
(fp_text value "100n/50V" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4c270e4-d6d1-497f-8a55-bd02f6b3883f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp de2ee385-c1f0-4c27-9bfd-7db2dd744c48)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 44e62d57-11bd-4239-b0f9-35207dfecef9))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 8c41e3a0-91bb-4b32-8563-a0a9dbb97b94))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7defd80e-efc2-4fc8-bf87-973f4e9aabaf))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 86199d17-3abe-49f3-9be3-bd3591e219aa))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8a5d5baa-d575-486b-8544-fa790972f378))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c93e61c7-e944-44f7-be70-6ae0cf8f5815))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7dea7190-53d1-42a8-9a17-5713b8d9ec69))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 816e8c2e-9ccf-469d-8526-00bc54b22d6d))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cb0b703a-d658-4279-94c2-af050e3af2ad))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f19305dd-4c4b-4e58-b389-fed2efe5a8fe))
(pad "1" smd roundrect locked (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/VBUS") (pintype "passive") (tstamp 74f0aa92-455b-4dbd-ade7-3218bafa449b))
(pad "2" smd roundrect locked (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 36002631-779a-461a-99e4-caa89a729318))
(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 "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5C745284) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)
(at 156.25 97 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip")
(tags "net tie solder jumper bridged")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/3af39ba0-3fbc-4159-8ae6-534835672060")
(attr exclude_from_pos_files)
(fp_text reference "JP3" (at 0 -1.8 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b1dbc88-c8c5-476c-80ac-830e56684be9)
)
(fp_text value "PWR" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f587f477-194d-41ae-8a6d-91fbd85f9d3f)
)
(fp_poly (pts
(xy 0.25 -0.3)
(xy -0.25 -0.3)
(xy -0.25 0.3)
(xy 0.25 0.3)
) (layer "F.Cu") (width 0) (fill solid) (tstamp 9a7ade3c-a81d-4038-a57c-b220b9c3cd90))
(fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 764ce9a2-c363-448f-a68c-a7dbf5cd80c1))
(fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 96930a67-6215-4f2b-a9cc-16f78c9fd164))
(fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp adfaccc9-bb80-495a-9038-d58935037d76))
(fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp b08a146a-6e43-46ac-8c31-9d5442623eb3))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 325006ce-4c23-4f07-9871-dc0cd047f7fd))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 74796a55-82bc-4f74-9e9c-c7cb232069e3))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp cf672f56-2d68-4c6c-a783-23e23c937b72))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp e721274f-b458-4ab5-8d4d-44bffaffa7c9))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 20d6997e-64c7-454b-9573-baf26e1ad11b))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 240fde71-00e0-458d-bf75-b4d973cb180b))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 511ddebd-9f54-463b-bc54-5ebdd708d33d))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp d2d83bcc-f2f8-4838-be35-0f2248bff3b6))
(pad "1" smd custom locked (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 2 "+3V3") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp b6fc4182-53d3-44c8-80e1-53918daa9139))
(pad "2" smd custom locked (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 20 "VCC") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp e03d7bc9-2bd0-42b5-96ba-4ca164fb4c50))
)
(footprint "twam-Misc:MountingHole_JLCPCB" (layer "F.Cu")
(tedit 60A56360) (tstamp 8b949a4b-e067-411c-a960-b7d8430179a7)
(at 142.75 90.75)
(descr "Mounting Hole 1.2mm, no annular")
(tags "mounting hole 1.2mm no annular")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/87cef7da-ae3c-45e9-91c3-0e8c195db455")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 576a24e6-c9a9-4baa-8746-799dc0f5ee3b)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68535b31-11a5-4372-985e-34bf9ce07e00)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16079042-23f8-43ac-9d97-572bca5327f3)
)
(fp_circle (center 0 0) (end 0.7 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 94d7181f-2849-4624-8ebf-fd625e46f599))
(pad "" np_thru_hole circle locked (at 0 0) (size 1.152 1.152) (drill 1.152) (layers *.Cu *.Mask)
(solder_mask_margin 0.148) (clearance 0.148) (tstamp 763a96f8-a9a5-4469-b4a8-502f9492eb19))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 9334f81e-e03c-4e51-8a5d-25a499f50d61)
(at 154.25 103.25)
(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 "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/071b894b-1c6b-479b-a0ea-39e03282b25c")
(attr smd)
(fp_text reference "C5" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7bba4360-0b90-4aaf-9fed-4f7961efe14b)
)
(fp_text value "100n/50V" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 844ace0c-697d-4bdb-b1b5-9b28417f792e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4c307a64-68d0-4963-89a3-b91f5b6a89ea)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 942e34a1-4a9e-4ac7-a29d-58b745562997))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp f8dd03d3-ffd8-4002-be96-9cbe1a56a832))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8e6e5e6b-df45-4e8c-b399-8f1d594e67d6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 901745ab-a405-4c16-aaaf-6c572b281f94))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d82c7372-b309-465a-a183-58a5c58fb2d4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f5d505be-d831-475a-9652-cba0a905fda5))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1524feaa-0b84-42c9-b3fc-083e7f016caf))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3c9549ae-220b-4d1f-b27a-70cd7a09d053))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6b5face2-799c-4f45-971a-07ec27b428bd))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 937bea30-5edf-4e84-8cc5-fea70cac6d01))
(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 1 "GND") (pintype "passive") (tstamp 1c6642dd-2e29-43b8-9638-c91317788632))
(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 2 "+3V3") (pintype "passive") (tstamp 7be75906-0981-4daf-bdb4-6a78c255b4ee))
(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_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 93b9e563-bde6-455d-ab94-eb67dad5b813)
(at 152 95.5 180)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC" "C2146")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")
(path "/72dfced8-f5e0-4b20-9e23-31d93eadb636")
(attr smd)
(fp_text reference "Q4" (at 0 -2.4) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d3713bb-0af7-4c8c-b880-4e10bd4e1bde)
)
(fp_text value "S8050" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3ef9661-462e-4404-b8eb-b4fe7b10c753)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 7f08c459-4a0a-4f29-9acd-3504d4d8a3d8)
)
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 0a3d0482-6a93-4e77-8486-802b28abb730))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 0ad15ddc-72ef-4cc7-b25d-0cba030083c6))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp d52fcefb-bf3d-45bb-8c82-edea163e0ab4))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp fd944bcb-eb2d-4d64-b47b-168958e207ad))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 6654fef9-5213-4880-89d1-278362c6ab0f))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 72a358f1-d356-496a-895f-9241e1d4d64b))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp acebac2e-9b50-40e2-829a-656f95620549))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp ca20685e-1678-4285-bece-8043197d0b91))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 28b31b8d-bce5-4a29-b224-7bc8eda836e6))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 2abcaa82-2314-47db-819b-1a31a005d5a9))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 681d5c98-d8cb-408a-b6cb-4f89cc26c87f))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 68d6308c-9a71-445d-845a-6e8a3a8c1bd3))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 83e67828-1021-48cc-b32e-975f52424861))
(pad "1" smd roundrect locked (at -0.9375 -0.95 180) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(Q3-Pad2)") (pinfunction "B") (pintype "input") (tstamp ea98d491-4db3-4228-a5af-8b698f6c629f))
(pad "2" smd roundrect locked (at -0.9375 0.95 180) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "E") (pintype "passive") (tstamp 65798637-24d6-4ff1-9397-b5bb12c009de))
(pad "3" smd roundrect locked (at 0.9375 0 180) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(Q4-Pad3)") (pinfunction "C") (pintype "passive") (tstamp e9762b59-f81f-4d73-8aff-25dc3c3e8a03))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_2.0x2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292)
(at 143 99.5)
(descr "SMD rectangular pad as test Point, square 2.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "IEC-62056-21-Optical-Probe.kicad_sch")
(property "Sheetname" "")