-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdebounce_shield.sch
2255 lines (2255 loc) · 66.9 KB
/
debounce_shield.sch
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
EESchema Schematic File Version 4
LIBS:debounce_shield-cache
EELAYER 29 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 1
Title "DebounceHAT"
Date "2019-11-12"
Rev "1.2"
Comp "Nyantronics"
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L debounce_shield-rescue:40106-debounce_shield-rescue U1
U 1 1 5AA98E4C
P 6600 3450
F 0 "U1" H 6700 3600 50 0000 L CNN
F 1 "74LV14D" H 6650 3300 50 0000 L CNN
F 2 "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" H 6600 3450 60 0001 C CNN
F 3 "https://assets.nexperia.com/documents/data-sheet/74LV14.pdf" H 6600 3450 60 0001 C CNN
F 4 "771-74LV14D-T " H 6600 3450 50 0001 C CNN "Mouser Part Number"
F 5 "Nexperia" H 6600 3450 50 0001 C CNN "Manufacturer_Name"
F 6 "74LV14D,118 " H 6600 3450 50 0001 C CNN "Manufacturer_Part_Number"
1 6600 3450
1 0 0 -1
$EndComp
$Comp
L debounce_shield-rescue:40106-debounce_shield-rescue U1
U 2 1 5AA98ED2
P 6600 4350
F 0 "U1" H 6700 4500 50 0000 L CNN
F 1 "74LV14D" H 6650 4200 50 0000 L CNN
F 2 "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" H 6600 4350 60 0001 C CNN
F 3 "https://assets.nexperia.com/documents/data-sheet/74LV14.pdf" H 6600 4350 60 0001 C CNN
F 4 "771-74LV14D-T " H 6600 4350 50 0001 C CNN "Mouser Part Number"
F 5 "Nexperia" H 6600 4350 50 0001 C CNN "Manufacturer_Name"
F 6 "74LV14D,118 " H 6600 4350 50 0001 C CNN "Manufacturer_Part_Number"
2 6600 4350
1 0 0 -1
$EndComp
$Comp
L debounce_shield-rescue:40106-debounce_shield-rescue U1
U 3 1 5AA98EF1
P 6600 5700
F 0 "U1" H 6700 5850 50 0000 L CNN
F 1 "74LV14D" H 6650 5550 50 0000 L CNN
F 2 "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" H 6600 5700 60 0001 C CNN
F 3 "https://assets.nexperia.com/documents/data-sheet/74LV14.pdf" H 6600 5700 60 0001 C CNN
F 4 "771-74LV14D-T " H 6600 5700 50 0001 C CNN "Mouser Part Number"
F 5 "Nexperia" H 6600 5700 50 0001 C CNN "Manufacturer_Name"
F 6 "74LV14D,118 " H 6600 5700 50 0001 C CNN "Manufacturer_Part_Number"
3 6600 5700
1 0 0 -1
$EndComp
$Comp
L debounce_shield-rescue:40106-debounce_shield-rescue U1
U 5 1 5AA98F79
P 6600 4800
F 0 "U1" H 6700 4950 50 0000 L CNN
F 1 "74LV14D" H 6650 4650 50 0000 L CNN
F 2 "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" H 6600 4800 60 0001 C CNN
F 3 "https://assets.nexperia.com/documents/data-sheet/74LV14.pdf" H 6600 4800 60 0001 C CNN
F 4 "771-74LV14D-T " H 6600 4800 50 0001 C CNN "Mouser Part Number"
F 5 "Nexperia" H 6600 4800 50 0001 C CNN "Manufacturer_Name"
F 6 "74LV14D,118 " H 6600 4800 50 0001 C CNN "Manufacturer_Part_Number"
5 6600 4800
1 0 0 -1
$EndComp
$Comp
L debounce_shield-rescue:40106-debounce_shield-rescue U1
U 6 1 5AA98FF6
P 6600 3900
F 0 "U1" H 6700 4050 50 0000 L CNN
F 1 "74LV14D" H 6650 3750 50 0000 L CNN
F 2 "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" H 6600 3900 60 0001 C CNN
F 3 "https://assets.nexperia.com/documents/data-sheet/74LV14.pdf" H 6600 3900 60 0001 C CNN
F 4 "771-74LV14D-T " H 6600 3900 50 0001 C CNN "Mouser Part Number"
F 5 "Nexperia" H 6600 3900 50 0001 C CNN "Manufacturer_Name"
F 6 "74LV14D,118 " H 6600 3900 50 0001 C CNN "Manufacturer_Part_Number"
6 6600 3900
1 0 0 -1
$EndComp
$Comp
L debounce_shield-rescue:GND-debounce_shield-rescue #PWR01
U 1 1 5AAA9E97
P 6250 6200
F 0 "#PWR01" H 6250 6200 30 0001 C CNN
F 1 "GND" H 6250 6130 30 0001 C CNN
F 2 "" H 6250 6200 60 0001 C CNN
F 3 "" H 6250 6200 60 0001 C CNN
1 6250 6200
1 0 0 -1
$EndComp
Text GLabel 6300 3050 0 60 Input ~ 0
+3.3V
$Comp
L power:PWR_FLAG #FLG07
U 1 1 5AAB1C99
P 6500 2950
F 0 "#FLG07" H 6500 3045 30 0001 C CNN
F 1 "PWR_FLAG" H 6500 3130 30 0000 C CNN
F 2 "" H 6500 2950 60 0001 C CNN
F 3 "" H 6500 2950 60 0001 C CNN
1 6500 2950
1 0 0 -1
$EndComp
$Comp
L power:PWR_FLAG #FLG08
U 1 1 5AAB2668
P 6250 6000
F 0 "#FLG08" H 6250 6095 30 0001 C CNN
F 1 "PWR_FLAG" H 6250 6180 30 0000 C CNN
F 2 "" H 6250 6000 60 0001 C CNN
F 3 "" H 6250 6000 60 0001 C CNN
1 6250 6000
1 0 0 -1
$EndComp
$Comp
L debounce_shield-rescue:CAT24C32-debounce_shield-rescue U2
U 1 1 5AAC12F2
P 9700 1750
F 0 "U2" H 10000 2250 50 0000 C CNN
F 1 "CAT24C32" H 10000 2150 50 0000 C CNN
F 2 "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" H 9700 1750 50 0001 C CNN
F 3 "" H 9700 1750 50 0000 C CNN
F 4 "698-CAT24C32WI-GT3 " H 9700 1750 50 0001 C CNN "Mouser Part Number"
F 5 "ON" H 9700 1750 50 0001 C CNN "Manufacturer_Name"
F 6 "CAT24C32WI-GT3 " H 9700 1750 50 0001 C CNN "Manufacturer_Part_Number"
1 9700 1750
1 0 0 -1
$EndComp
Text GLabel 9600 1000 0 60 Input ~ 0
+3.3V
$Comp
L debounce_shield-rescue:GND-debounce_shield-rescue #PWR09
U 1 1 5AAC2578
P 9700 2350
F 0 "#PWR09" H 9700 2350 30 0001 C CNN
F 1 "GND" H 9700 2280 30 0001 C CNN
F 2 "" H 9700 2350 60 0001 C CNN
F 3 "" H 9700 2350 60 0001 C CNN
1 9700 2350
1 0 0 -1
$EndComp
Text GLabel 7100 4550 0 60 BiDi ~ 0
IDSDA
Text GLabel 10750 1850 2 60 Input ~ 0
IDSCL
Text GLabel 10750 1950 2 60 BiDi ~ 0
IDSDA
Wire Wire Line
7100 3850 7100 3900
Wire Wire Line
7100 4350 7300 4350
Wire Wire Line
7300 4350 7300 4550
Wire Wire Line
7100 4800 7150 4800
Wire Wire Line
7100 5250 7300 5250
Wire Wire Line
7300 5250 7300 4950
Wire Wire Line
7100 5700 9850 5700
Wire Wire Line
6100 5400 6100 5250
Wire Wire Line
6300 3050 6500 3050
Connection ~ 6500 3050
Wire Wire Line
6500 2950 6500 3050
Wire Wire Line
6500 6050 6500 5850
Wire Wire Line
6250 6000 6250 6050
Connection ~ 6250 6050
Wire Wire Line
9700 2350 9700 2200
Connection ~ 9700 1150
Connection ~ 9700 2200
$Comp
L debounce_shield-rescue:R-debounce_shield-rescue R2
U 1 1 5AAFD3AE
P 10650 1500
F 0 "R2" H 10800 1550 40 0000 C CNN
F 1 "3.9k" H 10800 1450 40 0000 C CNN
F 2 "Resistor_SMD:R_0603_1608Metric" V 10580 1500 30 0001 C CNN
F 3 "" H 10650 1500 30 0000 C CNN
F 4 "Yageo" H 10650 1500 50 0001 C CNN "Manufacturer_Name"
F 5 "AC0603FR-133K9L " H 10650 1500 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "603-AC0603FR-133K9L " H 10650 1500 50 0001 C CNN "Mouser Part Number"
1 10650 1500
1 0 0 -1
$EndComp
$Comp
L debounce_shield-rescue:R-debounce_shield-rescue R3
U 1 1 5AAFD443
P 10500 1500
F 0 "R3" H 10350 1550 40 0000 C CNN
F 1 "3.9k" H 10350 1450 40 0000 C CNN
F 2 "Resistor_SMD:R_0603_1608Metric" V 10430 1500 30 0001 C CNN
F 3 "" H 10500 1500 30 0000 C CNN
F 4 "Yageo" H 10500 1500 50 0001 C CNN "Manufacturer_Name"
F 5 "AC0603FR-133K9L " H 10500 1500 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "603-AC0603FR-133K9L " H 10500 1500 50 0001 C CNN "Mouser Part Number"
1 10500 1500
1 0 0 -1
$EndComp
Wire Wire Line
6500 3050 7350 3050
Wire Wire Line
6250 6050 6250 6200
Wire Wire Line
6250 6050 6500 6050
Wire Wire Line
9700 1150 10250 1150
Wire Wire Line
9700 2200 9700 2150
$Comp
L debounce_shield-rescue:40106-debounce_shield-rescue U1
U 4 1 5AA98F56
P 6600 5250
F 0 "U1" H 6700 5400 50 0000 L CNN
F 1 "74LV14D" H 6650 5100 50 0000 L CNN
F 2 "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" H 6600 5250 60 0001 C CNN
F 3 "https://assets.nexperia.com/documents/data-sheet/74LV14.pdf" H 6600 5250 60 0001 C CNN
F 4 "771-74LV14D-T " H 6600 5250 50 0001 C CNN "Mouser Part Number"
F 5 "Nexperia" H 6600 5250 50 0001 C CNN "Manufacturer_Name"
F 6 "74LV14D,118 " H 6600 5250 50 0001 C CNN "Manufacturer_Part_Number"
4 6600 5250
1 0 0 -1
$EndComp
Wire Wire Line
6100 4350 6100 4500
Wire Wire Line
6100 3450 6100 3600
$Comp
L debounce_shield-rescue:C-debounce_shield-rescue C5
U 1 1 5AAA8BA1
P 5250 3750
F 0 "C5" V 5350 3800 50 0000 L CNN
F 1 "100nF" V 5450 3550 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 5250 3750 60 0001 C CNN
F 3 "" H 5250 3750 60 0000 C CNN
F 4 "Taiyo Yuden " H 5250 3750 50 0001 C CNN "Manufacturer_Name"
F 5 "GMK107B7104KAHT " H 5250 3750 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "963-GMK107B7104KAHT " H 5250 3750 50 0001 C CNN "Mouser Part Number"
1 5250 3750
0 1 1 0
$EndComp
$Comp
L debounce_shield-rescue:C-debounce_shield-rescue C4
U 1 1 5AAA8BF2
P 5250 4350
F 0 "C4" V 5200 4400 50 0000 L CNN
F 1 "100nF" V 5100 4150 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 5250 4350 60 0001 C CNN
F 3 "" H 5250 4350 60 0000 C CNN
F 4 "Taiyo Yuden " H 5250 4350 50 0001 C CNN "Manufacturer_Name"
F 5 "GMK107B7104KAHT " H 5250 4350 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "963-GMK107B7104KAHT " H 5250 4350 50 0001 C CNN "Mouser Part Number"
1 5250 4350
0 1 1 0
$EndComp
$Comp
L debounce_shield-rescue:C-debounce_shield-rescue C6
U 1 1 5AAA956B
P 5250 3450
F 0 "C6" V 5200 3500 50 0000 L CNN
F 1 "100nF" V 5100 3250 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 5250 3450 60 0001 C CNN
F 3 "" H 5250 3450 60 0000 C CNN
F 4 "Taiyo Yuden " H 5250 3450 50 0001 C CNN "Manufacturer_Name"
F 5 "GMK107B7104KAHT " H 5250 3450 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "963-GMK107B7104KAHT " H 5250 3450 50 0001 C CNN "Mouser Part Number"
1 5250 3450
0 1 1 0
$EndComp
$Comp
L debounce_shield-rescue:C-debounce_shield-rescue C3
U 1 1 5AAA95AC
P 5250 4650
F 0 "C3" V 5350 4700 50 0000 L CNN
F 1 "100nF" V 5450 4450 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 5250 4650 60 0001 C CNN
F 3 "" H 5250 4650 60 0000 C CNN
F 4 "Taiyo Yuden " H 5250 4650 50 0001 C CNN "Manufacturer_Name"
F 5 "GMK107B7104KAHT " H 5250 4650 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "963-GMK107B7104KAHT " H 5250 4650 50 0001 C CNN "Mouser Part Number"
1 5250 4650
0 1 1 0
$EndComp
$Comp
L debounce_shield-rescue:C-debounce_shield-rescue C2
U 1 1 5AAA95EF
P 5250 5250
F 0 "C2" V 5200 5300 50 0000 L CNN
F 1 "100nF" V 5100 5050 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 5250 5250 60 0001 C CNN
F 3 "" H 5250 5250 60 0000 C CNN
F 4 "Taiyo Yuden " H 5250 5250 50 0001 C CNN "Manufacturer_Name"
F 5 "GMK107B7104KAHT " H 5250 5250 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "963-GMK107B7104KAHT " H 5250 5250 50 0001 C CNN "Mouser Part Number"
1 5250 5250
0 1 1 0
$EndComp
$Comp
L debounce_shield-rescue:C-debounce_shield-rescue C1
U 1 1 5AAA9636
P 5250 5550
F 0 "C1" V 5350 5600 50 0000 L CNN
F 1 "100nF" V 5450 5350 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 5250 5550 60 0001 C CNN
F 3 "" H 5250 5550 60 0000 C CNN
F 4 "Taiyo Yuden " H 5250 5550 50 0001 C CNN "Manufacturer_Name"
F 5 "GMK107B7104KAHT " H 5250 5550 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "963-GMK107B7104KAHT " H 5250 5550 50 0001 C CNN "Mouser Part Number"
1 5250 5550
0 1 1 0
$EndComp
$Comp
L debounce_shield-rescue:GND-debounce_shield-rescue #PWR017
U 1 1 5C19B24C
P 4050 5550
F 0 "#PWR017" H 4050 5550 30 0001 C CNN
F 1 "GND" H 4050 5480 30 0001 C CNN
F 2 "" H 4050 5550 60 0001 C CNN
F 3 "" H 4050 5550 60 0001 C CNN
1 4050 5550
1 0 0 -1
$EndComp
$Comp
L debounce_shield-rescue:GND-debounce_shield-rescue #PWR013
U 1 1 5C19B32E
P 4050 3700
F 0 "#PWR013" H 4050 3700 30 0001 C CNN
F 1 "GND" H 4050 3630 30 0001 C CNN
F 2 "" H 4050 3700 60 0001 C CNN
F 3 "" H 4050 3700 60 0001 C CNN
1 4050 3700
1 0 0 -1
$EndComp
Wire Wire Line
4000 3650 4050 3650
Wire Wire Line
4050 3650 4050 3700
$Comp
L debounce_shield-rescue:GND-debounce_shield-rescue #PWR014
U 1 1 5C23EE72
P 4050 4150
F 0 "#PWR014" H 4050 4150 30 0001 C CNN
F 1 "GND" H 4050 4080 30 0001 C CNN
F 2 "" H 4050 4150 60 0001 C CNN
F 3 "" H 4050 4150 60 0001 C CNN
1 4050 4150
1 0 0 -1
$EndComp
Wire Wire Line
4050 4150 4050 4100
Wire Wire Line
4050 4100 4000 4100
$Comp
L debounce_shield-rescue:GND-debounce_shield-rescue #PWR015
U 1 1 5C2E0CB2
P 4050 4600
F 0 "#PWR015" H 4050 4600 30 0001 C CNN
F 1 "GND" H 4050 4530 30 0001 C CNN
F 2 "" H 4050 4600 60 0001 C CNN
F 3 "" H 4050 4600 60 0001 C CNN
1 4050 4600
1 0 0 -1
$EndComp
$Comp
L debounce_shield-rescue:GND-debounce_shield-rescue #PWR016
U 1 1 5C2E0D23
P 4050 5050
F 0 "#PWR016" H 4050 5050 30 0001 C CNN
F 1 "GND" H 4050 4980 30 0001 C CNN
F 2 "" H 4050 5050 60 0001 C CNN
F 3 "" H 4050 5050 60 0001 C CNN
1 4050 5050
1 0 0 -1
$EndComp
Wire Wire Line
4050 5050 4050 5000
Wire Wire Line
4050 5000 4000 5000
Wire Wire Line
4050 4600 4050 4550
Wire Wire Line
4050 4550 4000 4550
Wire Wire Line
4000 5450 4050 5450
Wire Wire Line
4050 5450 4050 5550
$Comp
L Device:R_Small R25
U 1 1 5C52E90A
P 3200 3900
F 0 "R25" V 3150 3750 50 0000 C CNN
F 1 "1k" V 3200 3900 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 3900 50 0001 C CNN
F 3 "~" H 3200 3900 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " H 3200 3900 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 3900 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 3900 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 3900
0 1 1 0
$EndComp
Wire Wire Line
4350 3600 4250 3600
Wire Wire Line
4250 3600 4250 3450
Wire Wire Line
4250 3450 4000 3450
Wire Wire Line
4350 3900 4250 3900
Wire Wire Line
4350 3700 4250 3700
Wire Wire Line
4250 3700 4250 3600
Connection ~ 4250 3600
Wire Wire Line
4350 3800 4250 3800
Wire Wire Line
4250 3800 4250 3900
Connection ~ 4250 3900
Wire Wire Line
4250 3900 4000 3900
Wire Wire Line
4850 3700 4850 3800
Wire Wire Line
4850 3800 4750 3800
Wire Wire Line
4850 3700 4850 3450
Connection ~ 4850 3700
Wire Wire Line
4750 4600 4850 4600
Wire Wire Line
4850 4600 4850 3800
Connection ~ 4850 3800
Wire Wire Line
4750 4700 4850 4700
Wire Wire Line
4850 4700 4850 4600
Connection ~ 4850 4600
Wire Wire Line
4750 5500 4850 5500
Wire Wire Line
4850 5500 4850 4700
Connection ~ 4850 4700
Wire Wire Line
4750 5600 4850 5600
Wire Wire Line
4850 5600 4850 5500
Connection ~ 4850 5500
Wire Wire Line
4350 4500 4250 4500
Wire Wire Line
4250 4500 4250 4350
Wire Wire Line
4250 4350 4000 4350
Wire Wire Line
4350 4600 4250 4600
Wire Wire Line
4250 4600 4250 4500
Connection ~ 4250 4500
Wire Wire Line
4350 4800 4250 4800
Wire Wire Line
4350 4700 4250 4700
Wire Wire Line
4250 4700 4250 4800
Connection ~ 4250 4800
Wire Wire Line
4250 4800 4000 4800
Wire Wire Line
4350 5700 4250 5700
Wire Wire Line
4350 5400 4250 5400
Wire Wire Line
4250 5400 4250 5250
Wire Wire Line
4250 5250 4000 5250
Wire Wire Line
4350 5500 4250 5500
Wire Wire Line
4250 5500 4250 5400
Connection ~ 4250 5400
Wire Wire Line
4350 5600 4250 5600
Wire Wire Line
4250 5600 4250 5700
Connection ~ 4250 5700
Wire Wire Line
4250 5700 4000 5700
Text GLabel 4850 3450 1 60 Input ~ 0
+3.3V
$Comp
L debounce_shield-rescue:GND-debounce_shield-rescue #PWR0101
U 1 1 5CABA3C8
P 4050 6000
F 0 "#PWR0101" H 4050 6000 30 0001 C CNN
F 1 "GND" H 4050 5930 30 0001 C CNN
F 2 "" H 4050 6000 60 0001 C CNN
F 3 "" H 4050 6000 60 0001 C CNN
1 4050 6000
1 0 0 -1
$EndComp
Wire Wire Line
4000 5900 4050 5900
Wire Wire Line
4050 5900 4050 6000
$Comp
L Device:R_Small R22
U 1 1 5C52EABE
P 3200 5250
F 0 "R22" V 3150 5100 50 0000 C CNN
F 1 "1k" V 3200 5250 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 5250 50 0001 C CNN
F 3 "~" H 3200 5250 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " H 3200 5250 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 5250 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 5250 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 5250
0 1 1 0
$EndComp
Wire Wire Line
5450 3450 5600 3450
Wire Wire Line
5600 3450 5600 3750
Wire Wire Line
5450 3750 5600 3750
Connection ~ 5600 3750
Wire Wire Line
5600 3750 5600 4350
Wire Wire Line
5450 4350 5600 4350
Connection ~ 5600 4350
Wire Wire Line
5600 4350 5600 4650
Wire Wire Line
5450 4650 5600 4650
Wire Wire Line
5600 4650 5600 5250
Wire Wire Line
5450 5250 5600 5250
Connection ~ 5600 5250
Wire Wire Line
5600 5250 5600 5550
Wire Wire Line
5450 5550 5600 5550
Connection ~ 5600 5550
Wire Wire Line
5600 5550 5600 5900
Wire Wire Line
4950 5250 4950 5400
Wire Wire Line
4950 5250 5050 5250
Connection ~ 4950 5400
Wire Wire Line
4950 5400 4750 5400
Wire Wire Line
5050 5550 4950 5550
Wire Wire Line
4950 5550 4950 5700
Connection ~ 4950 5700
Wire Wire Line
4950 5700 4750 5700
Wire Wire Line
5050 4350 4950 4350
Wire Wire Line
4950 4350 4950 4500
Wire Wire Line
4950 4500 4750 4500
Wire Wire Line
5050 4650 4950 4650
Wire Wire Line
4950 4650 4950 4800
Wire Wire Line
4950 4800 4750 4800
Wire Wire Line
5050 3450 4950 3450
Wire Wire Line
4950 3450 4950 3600
Wire Wire Line
5050 3750 4950 3750
Wire Wire Line
4950 3750 4950 3900
Wire Wire Line
4950 3900 4750 3900
$Comp
L debounce_shield-rescue:GND-debounce_shield-rescue #PWR0102
U 1 1 5D1785C1
P 5600 5900
F 0 "#PWR0102" H 5600 5900 30 0001 C CNN
F 1 "GND" H 5600 5830 30 0001 C CNN
F 2 "" H 5600 5900 60 0001 C CNN
F 3 "" H 5600 5900 60 0001 C CNN
1 5600 5900
1 0 0 -1
$EndComp
Connection ~ 5600 4650
Wire Wire Line
4950 5400 6100 5400
Wire Wire Line
4950 5700 6100 5700
Wire Wire Line
6100 4500 4950 4500
Connection ~ 4950 4500
Wire Wire Line
6100 4800 4950 4800
Connection ~ 4950 4800
Wire Wire Line
6100 3900 4950 3900
Connection ~ 4950 3900
Wire Wire Line
6100 3600 4950 3600
Connection ~ 4950 3600
Text GLabel 4400 950 0 50 Input ~ 0
+5V
$Comp
L debounce_shield-rescue:C-debounce_shield-rescue C13
U 1 1 5DCA0BBB
P 6700 6050
F 0 "C13" H 6750 6150 50 0000 L CNN
F 1 "100nF" H 6750 5950 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 6700 6050 60 0001 C CNN
F 3 "" H 6700 6050 60 0000 C CNN
F 4 "Taiyo Yuden " H 6700 6050 50 0001 C CNN "Manufacturer_Name"
F 5 "GMK107B7104KAHT " H 6700 6050 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "963-GMK107B7104KAHT " H 6700 6050 50 0001 C CNN "Mouser Part Number"
1 6700 6050
0 -1 -1 0
$EndComp
Connection ~ 6500 6050
Text GLabel 7050 6050 2 60 Input ~ 0
+3.3V
Wire Wire Line
7050 6050 6900 6050
$Comp
L Device:LED PWR1
U 1 1 5DE61C49
P 6350 2200
F 0 "PWR1" H 6350 2300 50 0000 C CNN
F 1 "LED" H 6350 2100 50 0000 C CNN
F 2 "LED_SMD:LED_0805_2012Metric" H 6350 2200 50 0001 C CNN
F 3 "~" H 6350 2200 50 0001 C CNN
F 4 "604-AP2012HD " H 6350 2200 50 0001 C CNN "Mouser Part Number"
F 5 "Kingbright" H 6350 2200 50 0001 C CNN "Manufacturer_Name"
F 6 "AP2012HD " H 6350 2200 50 0001 C CNN "Manufacturer_Part_Number"
1 6350 2200
1 0 0 -1
$EndComp
$Comp
L Device:R_Small R21
U 1 1 5C52EB4E
P 3200 5700
F 0 "R21" V 3150 5550 50 0000 C CNN
F 1 "1k" V 3200 5700 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 5700 50 0001 C CNN
F 3 "~" H 3200 5700 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " H 3200 5700 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 5700 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 5700 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 5700
0 1 1 0
$EndComp
Wire Wire Line
2600 5250 2600 5700
Wire Wire Line
3400 5700 3300 5700
Wire Wire Line
2750 5050 2750 5250
Wire Wire Line
3400 5250 3300 5250
Wire Wire Line
3400 4800 3300 4800
$Comp
L debounce_shield-rescue:C-debounce_shield-rescue C12
U 1 1 5C92F796
P 10000 2200
F 0 "C12" V 10150 2150 50 0000 L CNN
F 1 "100nF" V 10250 2100 50 0000 L CNN
F 2 "Capacitor_SMD:C_0603_1608Metric" H 10000 2200 60 0001 C CNN
F 3 "" H 10000 2200 60 0000 C CNN
F 4 "Taiyo Yuden " H 10000 2200 50 0001 C CNN "Manufacturer_Name"
F 5 "GMK107B7104KAHT " H 10000 2200 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "963-GMK107B7104KAHT " H 10000 2200 50 0001 C CNN "Mouser Part Number"
1 10000 2200
0 1 1 0
$EndComp
Wire Wire Line
9800 2200 9700 2200
Wire Wire Line
10200 2200 10250 2200
Connection ~ 10250 1150
$Comp
L Mechanical:MountingHole_Pad H1
U 1 1 5C853D2D
P 2400 6500
F 0 "H1" H 2500 6551 50 0000 L CNN
F 1 "MountingHole_Pad" H 2500 6460 50 0000 L CNN
F 2 "MountingHole:MountingHole_3.5mm_Pad_Via" H 2400 6500 50 0001 C CNN
F 3 "~" H 2400 6500 50 0001 C CNN
F 4 " " H 2400 6500 50 0001 C CNN "Manufacturer_Name"
1 2400 6500
1 0 0 -1
$EndComp
Text GLabel 2300 6750 0 50 Input ~ 0
PE
Wire Wire Line
3300 3900 3400 3900
Wire Wire Line
3300 3450 3400 3450
Wire Wire Line
3000 4550 3100 4550
Wire Wire Line
2650 5150 2650 5700
Wire Wire Line
2800 4950 2800 5250
Wire Wire Line
2950 5000 3100 5000
Wire Wire Line
2900 4850 2900 4800
Wire Wire Line
3000 4550 3000 4500
Wire Wire Line
2800 4300 2800 4100
Wire Wire Line
2650 4100 2650 3650
Wire Wire Line
4750 3700 4850 3700
Wire Wire Line
4750 3600 4950 3600
Wire Wire Line
7350 3950 7350 3050
$Comp
L RKZE-0505S:RKZE-0505S PS1
U 1 1 5DAEE4A5
P 5500 950
F 0 "PS1" H 6150 1215 50 0000 C CNN
F 1 "RKZE-0505S/H " H 6150 1124 50 0000 C CNN
F 2 "RKZE-0505S:RKZE0512SHP" H 6650 1050 50 0001 L CNN
F 3 "https://www.recom-power.com/pdf/Econoline/RKZE.pdf" H 6650 950 50 0001 L CNN
F 4 "DC/DC Converter Isolated 5V to 5V out 1W" H 6650 850 50 0001 L CNN "Description"
F 5 "10.45" H 6650 750 50 0001 L CNN "Height"
F 6 "RECOM Power" H 6650 650 50 0001 L CNN "Manufacturer_Name"
F 7 "RKZE-0505S/H" H 6650 550 50 0001 L CNN "Manufacturer_Part_Number"
F 8 "919-RKZE-0505S/H" H 6650 450 50 0001 L CNN "Mouser Part Number"
F 9 "https://www.mouser.com/Search/Refine.aspx?Keyword=919-RKZE-0505S" H 6650 350 50 0001 L CNN "Mouser Price/Stock"
F 10 "1809313P" H 6650 250 50 0001 L CNN "RS Part Number"
F 11 "http://uk.rs-online.com/web/p/products/1809313P" H 6650 150 50 0001 L CNN "RS Price/Stock"
1 5500 950
1 0 0 -1
$EndComp
Wire Wire Line
5500 1050 5200 1050
Wire Wire Line
5200 1050 5200 1350
Wire Wire Line
7000 1900 7100 1900
Wire Wire Line
7000 1900 7000 2000
Wire Wire Line
7000 2100 7100 2100
Connection ~ 7000 1900
Wire Wire Line
6800 1050 6900 1050
Wire Wire Line
6900 2200 7100 2200
Wire Wire Line
6900 2200 6900 2300
Wire Wire Line
6900 2300 7100 2300
Connection ~ 6900 2200
Wire Wire Line
7100 2400 6900 2400
Connection ~ 6900 2300
NoConn ~ 6800 950
Wire Wire Line
6900 2200 6500 2200
Wire Wire Line
6200 2200 6000 2200
Wire Wire Line
5800 2200 5400 2200
Wire Wire Line
5400 2200 5400 1900
Wire Wire Line
6900 2400 6900 2300
$Comp
L RLS-126:RLS-126 L1
U 1 1 5DE038D5
P 4600 950
F 0 "L1" H 5000 1175 50 0000 C CNN
F 1 "RLS-126" H 5000 1084 50 0000 C CNN
F 2 "RLS-126:RLS126" H 5250 1000 50 0001 L CNN
F 3 "https://www.recom-power.com/pdf/Accessories/RLS-126.pdf" H 5250 900 50 0001 L CNN
F 4 "Fixed Inductors Line Inductors for RECOM Power Supply" H 5250 800 50 0001 L CNN "Description"
F 5 "2.6" H 5250 700 50 0001 L CNN "Height"
F 6 "RECOM Power" H 5250 600 50 0001 L CNN "Manufacturer_Name"
F 7 "RLS-126" H 5250 500 50 0001 L CNN "Manufacturer_Part_Number"
F 8 "919-RLS-126" H 5250 400 50 0001 L CNN "Mouser Part Number"
F 9 "https://www.mouser.com/Search/Refine.aspx?Keyword=919-RLS-126" H 5250 300 50 0001 L CNN "Mouser Price/Stock"
F 10 "1855855" H 5250 200 50 0001 L CNN "RS Part Number"
F 11 "http://uk.rs-online.com/web/p/products/1855855" H 5250 100 50 0001 L CNN "RS Price/Stock"
1 4600 950
1 0 0 -1
$EndComp
Wire Wire Line
4500 1250 4500 1350
Wire Wire Line
4500 1350 5200 1350
Connection ~ 4500 1350
Wire Wire Line
5500 950 5400 950
Wire Wire Line
4400 950 4500 950
Wire Wire Line
3100 5700 2900 5700
Wire Wire Line
3300 4350 3400 4350
Wire Wire Line
2950 4350 3100 4350
Wire Wire Line
2950 4350 2950 4450
$Comp
L Device:R_Small R23
U 1 1 5C52EA30
P 3200 4800
F 0 "R23" V 3150 4650 50 0000 C CNN
F 1 "1k" V 3200 4800 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 4800 50 0001 C CNN
F 3 "~" H 3200 4800 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " H 3200 4800 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 4800 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 4800 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 4800
0 1 1 0
$EndComp
$Comp
L Device:R_Small R24
U 1 1 5C52E9A6
P 3200 4350
F 0 "R24" V 3150 4200 50 0000 C CNN
F 1 "1k" V 3200 4350 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 4350 50 0001 C CNN
F 3 "~" H 3200 4350 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " H 3200 4350 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 4350 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 4350 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 4350
0 1 1 0
$EndComp
Wire Wire Line
2750 3900 2950 3900
$Comp
L Device:R_Small R26
U 1 1 5C52E1B6
P 3200 3450
F 0 "R26" V 3150 3300 50 0000 C CNN
F 1 "1k" V 3200 3450 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 3450 50 0001 C CNN
F 3 "~" H 3200 3450 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " V 3200 3450 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 3450 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 3450 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 3450
0 1 1 0
$EndComp
Wire Wire Line
2600 3450 2950 3450
$Comp
L Device:R_Small R16
U 1 1 5DDF0C88
P 3200 3650
F 0 "R16" V 3250 3500 50 0000 C CNN
F 1 "1k" V 3200 3650 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 3650 50 0001 C CNN
F 3 "~" H 3200 3650 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " V 3200 3650 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 3650 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 3650 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 3650
0 1 1 0
$EndComp
$Comp
L Device:R_Small R15
U 1 1 5DDF1345
P 3200 4100
F 0 "R15" V 3250 3950 50 0000 C CNN
F 1 "1k" V 3200 4100 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 4100 50 0001 C CNN
F 3 "~" H 3200 4100 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " V 3200 4100 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 4100 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 4100 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 4100
0 1 1 0
$EndComp
$Comp
L Device:R_Small R14
U 1 1 5DDF1A52
P 3200 4550
F 0 "R14" V 3250 4400 50 0000 C CNN
F 1 "1k" V 3200 4550 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 4550 50 0001 C CNN
F 3 "~" H 3200 4550 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " V 3200 4550 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 4550 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 4550 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 4550
0 1 1 0
$EndComp
$Comp
L Device:R_Small R13
U 1 1 5DDF2157
P 3200 5000
F 0 "R13" V 3250 4850 50 0000 C CNN
F 1 "1k" V 3200 5000 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 5000 50 0001 C CNN
F 3 "~" H 3200 5000 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " V 3200 5000 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 5000 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 5000 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 5000
0 1 1 0
$EndComp
$Comp
L Device:R_Small R11
U 1 1 5DDF39B9
P 3200 5900
F 0 "R11" V 3250 5750 50 0000 C CNN
F 1 "1k" V 3200 5900 50 0000 C CNN
F 2 "Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder" H 3200 5900 50 0001 C CNN
F 3 "~" H 3200 5900 50 0001 C CNN
F 4 "71-CRCW12061K20JNEB " V 3200 5900 50 0001 C CNN "Mouser Part Number"
F 5 "Vishay/Dale" H 3200 5900 50 0001 C CNN "Manufacturer_Name"
F 6 "CRCW12061K20JNEB " H 3200 5900 50 0001 C CNN "Manufacturer_Part_Number"
1 3200 5900
0 1 1 0
$EndComp
$Comp
L Device:D_TVS D6
U 1 1 5DDF4EEE
P 3150 3550
F 0 "D6" H 3400 3550 50 0000 C CNN
F 1 "D_TVS" H 2800 3550 50 0000 C CNN
F 2 "Diode_SMD:D_SOD-123" H 3150 3550 50 0001 C CNN
F 3 "https://eu.mouser.com/datasheet/2/80/ATV02W-HF_series_RevC-1480797.pdf" H 3150 3550 50 0001 C CNN
F 4 "Comchip" H 3150 3550 50 0001 C CNN "Manufacturer_Name"
F 5 "ATV02W110B-HF " H 3150 3550 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "750-ATV02W110B-HF " H 3150 3550 50 0001 C CNN "Mouser Part Number"
1 3150 3550
1 0 0 -1
$EndComp
$Comp
L Device:D_TVS D5
U 1 1 5DDF5652
P 3150 4000
F 0 "D5" H 3400 4000 50 0000 C CNN
F 1 "D_TVS" H 2800 4000 50 0000 C CNN
F 2 "Diode_SMD:D_SOD-123" H 3150 4000 50 0001 C CNN
F 3 "https://eu.mouser.com/datasheet/2/80/ATV02W-HF_series_RevC-1480797.pdf" H 3150 4000 50 0001 C CNN
F 4 "Comchip" H 3150 4000 50 0001 C CNN "Manufacturer_Name"
F 5 "ATV02W110B-HF " H 3150 4000 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "750-ATV02W110B-HF " H 3150 4000 50 0001 C CNN "Mouser Part Number"
1 3150 4000
1 0 0 -1
$EndComp
$Comp
L Device:D_TVS D4
U 1 1 5DDF5B6D
P 3150 4450
F 0 "D4" H 3400 4450 50 0000 C CNN
F 1 "D_TVS" H 2800 4450 50 0000 C CNN
F 2 "Diode_SMD:D_SOD-123" H 3150 4450 50 0001 C CNN
F 3 "https://eu.mouser.com/datasheet/2/80/ATV02W-HF_series_RevC-1480797.pdf" H 3150 4450 50 0001 C CNN
F 4 "Comchip" H 3150 4450 50 0001 C CNN "Manufacturer_Name"
F 5 "ATV02W110B-HF " H 3150 4450 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "750-ATV02W110B-HF " H 3150 4450 50 0001 C CNN "Mouser Part Number"
1 3150 4450
1 0 0 -1
$EndComp
$Comp
L Device:D_TVS D3
U 1 1 5DDF6165
P 3150 4900
F 0 "D3" H 3400 4900 50 0000 C CNN
F 1 "D_TVS" H 2800 4900 50 0000 C CNN
F 2 "Diode_SMD:D_SOD-123" H 3150 4900 50 0001 C CNN
F 3 "https://eu.mouser.com/datasheet/2/80/ATV02W-HF_series_RevC-1480797.pdf" H 3150 4900 50 0001 C CNN
F 4 "Comchip" H 3150 4900 50 0001 C CNN "Manufacturer_Name"
F 5 "ATV02W110B-HF " H 3150 4900 50 0001 C CNN "Manufacturer_Part_Number"
F 6 "750-ATV02W110B-HF " H 3150 4900 50 0001 C CNN "Mouser Part Number"
1 3150 4900