-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResetdog.kicad_sch
1685 lines (1634 loc) · 65.7 KB
/
Resetdog.kicad_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
(kicad_sch (version 20211123) (generator eeschema)
(uuid 1af726b5-36c2-4447-af83-396af961184c)
(paper "A4")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "STS1_COBC_V2-rescue:74LVC1G17GW_125" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -10.16 8.382 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "74LVC1G17GW_125" (id 1) (at -10.16 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "74LVC1G17GW_125:IC_74LVC1G17GW_125" (id 2) (at 0.635 15.24 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MF" "Nexperia" (id 4) (at 0.635 25.4 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Description" "\nBuffer, Non-Inverting 1 Element 1 Bit per Element Push-Pull Output 5-TSSOP\n" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Package" "SOT-353 Nexperia USA" (id 6) (at 0 22.225 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Price" "None" (id 7) (at 0 -27.305 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Check_prices" "https://www.snapeda.com/parts/74LVC1G17GW,125/Nexperia/view-part/?ref=eda" (id 8) (at 0 -15.875 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "SnapEDA_Link" "https://www.snapeda.com/parts/74LVC1G17GW,125/Nexperia/view-part/?ref=snap" (id 9) (at -0.635 19.05 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MP" "74LVC1G17GW,125" (id 10) (at 0 12.065 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Availability" "In Stock" (id 11) (at 0 -24.13 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=8813745&manufacturer=Nexperia&part_name=74LVC1G17GW,125&search_term=74lvc1g17" (id 12) (at -1.27 -19.685 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "74LVC1G17GW_125_0_0"
(rectangle (start -10.16 -7.62) (end 10.16 7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin no_connect line (at -15.24 -5.08 0) (length 5.08)
(name "NC" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin input line (at -15.24 0 0) (length 5.08)
(name "A" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 15.24 -5.08 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin output line (at 15.24 0 180) (length 5.08)
(name "Y" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 15.24 5.08 180) (length 5.08)
(name "VCC" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "STS1_COBC_V2-rescue:MC74HC4538ADG" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -12.7 18.78 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "MC74HC4538ADG" (id 1) (at -12.7 -21.78 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "SOIC127P600X175-16N" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MC74HC4538ADG_0_0"
(rectangle (start -12.7 -17.78) (end 12.7 17.78)
(stroke (width 0.41) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin power_in line (at 17.78 -15.24 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 2.54 180) (length 5.08)
(name "Q2" (effects (font (size 1.016 1.016))))
(number "10" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 2.54 0) (length 5.08)
(name "B2" (effects (font (size 1.016 1.016))))
(number "11" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 7.62 0) (length 5.08)
(name "A2" (effects (font (size 1.016 1.016))))
(number "12" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -2.54 0) (length 5.08)
(name "RESET_2" (effects (font (size 1.016 1.016))))
(number "13" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 -10.16 0) (length 5.08)
(name "CX2/RX2" (effects (font (size 1.016 1.016))))
(number "14" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -15.24 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "15" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 15.24 180) (length 5.08)
(name "VCC" (effects (font (size 1.016 1.016))))
(number "16" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 -7.62 0) (length 5.08)
(name "CX1/RX1" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 0 0) (length 5.08)
(name "RESET_1" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 10.16 0) (length 5.08)
(name "A1" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 5.08 0) (length 5.08)
(name "B1" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 5.08 180) (length 5.08)
(name "Q1" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 10.16 180) (length 5.08)
(name "~{Q1}" (effects (font (size 1.016 1.016))))
(number "7" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -15.24 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "8" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 7.62 180) (length 5.08)
(name "~{Q2}" (effects (font (size 1.016 1.016))))
(number "9" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "Timer:MC14541BD" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MC14541BD" (id 1) (at 7.62 15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.onsemi.com/pdf/datasheet/mc14541b-d.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cmos" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "18V, Programmable Timer, SOIC-14" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MC14541BD_0_0"
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "R_{TC}" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "MODE" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 7.62 -7.62 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 15.24 270) (length 2.54)
(name "V_{DD}" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "C_{TC}" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "R_{S}" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 7.62 -5.08 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -10.16 0) (length 2.54)
(name "AR" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "MR" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -15.24 90) (length 2.54)
(name "V_{SS}" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 0 180) (length 2.54)
(name "OUTPUT/Q" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "Q/~{Q}_SELECT" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "MC14541BD_0_1"
(rectangle (start 7.62 -12.7) (end -7.62 12.7)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 86.36 90.17) (diameter 0) (color 0 0 0 0)
(uuid 279e0243-318f-41c0-abe5-747b414d6974)
)
(junction (at 81.28 92.71) (diameter 0) (color 0 0 0 0)
(uuid 2faab032-906b-4c67-954e-beb54d221a1e)
)
(junction (at 127 97.79) (diameter 0) (color 0 0 0 0)
(uuid 3c070471-316b-41b4-ae35-eb0cf75d4b9d)
)
(junction (at 172.72 52.832) (diameter 0) (color 0 0 0 0)
(uuid 50505f44-e7aa-4034-9e40-d129ddc57a2c)
)
(junction (at 134.62 119.38) (diameter 0) (color 0 0 0 0)
(uuid 697b3e41-b780-4ab1-ad69-99ae05d7e650)
)
(junction (at 99.06 68.58) (diameter 0) (color 0 0 0 0)
(uuid 6cbc71d3-97d2-4ee4-a7fb-7d3fbaf67543)
)
(junction (at 40.64 137.16) (diameter 0) (color 0 0 0 0)
(uuid 999039bc-47b6-4e18-aa78-e9da479f438d)
)
(junction (at 99.06 56.896) (diameter 0) (color 0 0 0 0)
(uuid acfc640f-798d-45c2-9738-e401bdd958bc)
)
(junction (at 43.18 82.55) (diameter 0) (color 0 0 0 0)
(uuid b6ea627a-99b8-4519-b834-2493fefe859c)
)
(junction (at 67.31 77.47) (diameter 0) (color 0 0 0 0)
(uuid c0b912bb-95c6-432c-9106-d7c6bf266e6a)
)
(junction (at 180.34 85.09) (diameter 0) (color 0 0 0 0)
(uuid cbc734cd-1514-4f18-86ea-743824730592)
)
(junction (at 60.96 92.71) (diameter 0) (color 0 0 0 0)
(uuid cf6ff916-e4a4-4c9a-8bf0-9dee86955a1a)
)
(junction (at 81.28 87.63) (diameter 0) (color 0 0 0 0)
(uuid df4cd24f-2d1f-4666-8f77-787df370ca3c)
)
(no_connect (at 172.72 80.01) (uuid 082ba710-f955-46cb-9414-814479a62d76))
(no_connect (at 137.16 100.33) (uuid 1c36ee25-419c-4c72-b6f2-53d766c65d06))
(no_connect (at 137.16 82.55) (uuid 5264ef5a-37bb-4e3f-a252-f7a01f5639f4))
(no_connect (at 137.16 87.63) (uuid 5ba4ba47-8452-4eed-a3a4-30797a580a8e))
(no_connect (at 137.16 92.71) (uuid 9ad11739-6be8-4c28-940b-eb0a78d1eefc))
(no_connect (at 172.72 82.55) (uuid a92f15e5-383c-41b3-8a25-c30641a6b7b3))
(no_connect (at 172.72 87.63) (uuid eccc7f7c-f4af-477c-89aa-8f613a507f6a))
(wire (pts (xy 172.72 85.09) (xy 180.34 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 048e8553-e4ea-419f-8d75-575ec9815cfc)
)
(polyline (pts (xy 29.21 80.01) (xy 29.21 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0585ed1d-2501-43aa-acf8-da2a3f8e498a)
)
(wire (pts (xy 43.18 77.47) (xy 43.18 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d906cb2-6eea-4678-8649-8c4af3a281a6)
)
(wire (pts (xy 81.28 92.71) (xy 81.28 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10bd7afb-8026-48b6-844b-10a40dbaaf1e)
)
(wire (pts (xy 27.94 77.47) (xy 27.94 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13b48c16-787d-4897-9240-e45dc63b6e54)
)
(wire (pts (xy 180.34 85.09) (xy 180.34 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18c3c3a7-2fdc-4172-b6a4-3ba1195ff1b6)
)
(wire (pts (xy 55.88 113.03) (xy 60.96 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ae9fbeb-2597-4403-be91-e3f8282a2a21)
)
(wire (pts (xy 20.32 137.16) (xy 20.32 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1defabe2-7ef2-4224-9b8b-3a27134419df)
)
(polyline (pts (xy 29.21 86.36) (xy 40.64 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 204f4084-0c2a-49a5-aa6b-a77cb84c396c)
)
(wire (pts (xy 88.9 85.09) (xy 81.28 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 273509e4-925f-488a-a497-e49add301fec)
)
(wire (pts (xy 127 96.52) (xy 127 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a5c6c54-1b06-498d-a612-6e1172cb8db6)
)
(wire (pts (xy 172.72 52.832) (xy 172.72 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ed1cd69-f941-477b-9d2b-4b1ff63d6c42)
)
(wire (pts (xy 134.62 119.38) (xy 134.62 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34f540b8-81c1-4f03-98fc-eb80c4dc8c8e)
)
(wire (pts (xy 83.82 80.01) (xy 88.9 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36fbad7d-cb44-4a61-9476-a16e63ea4990)
)
(wire (pts (xy 86.36 68.58) (xy 86.36 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39e2ce59-7042-4314-aafe-417c85ee45cd)
)
(wire (pts (xy 53.086 92.71) (xy 60.96 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d70d89e-2a2e-402f-91ff-f9115496c52d)
)
(wire (pts (xy 99.06 56.896) (xy 99.06 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e19c863-5681-4fd6-897b-380c7ccc5014)
)
(wire (pts (xy 43.18 82.55) (xy 88.9 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ff84d1d-eed2-4ca9-972c-952b9201923d)
)
(polyline (pts (xy 29.21 80.01) (xy 40.64 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48947fbc-ec5d-42d8-ae2f-982b1beb15fd)
)
(wire (pts (xy 83.82 74.93) (xy 88.9 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 491aa06a-984d-4f66-a91e-28fb040a420f)
)
(wire (pts (xy 60.96 92.71) (xy 81.28 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49ce1135-1be4-4a61-a011-8a17762c6b42)
)
(polyline (pts (xy 40.64 86.36) (xy 40.64 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c45c94f-095e-47b1-aa0d-0f5e36764045)
)
(wire (pts (xy 81.28 87.63) (xy 88.9 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f4806ba-9ae0-4c7a-a1e1-f333fdc79df7)
)
(wire (pts (xy 29.21 83.82) (xy 27.94 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51609cfc-78ab-4d8e-8007-b7211c8e2f5e)
)
(wire (pts (xy 134.62 90.17) (xy 137.16 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b436dad-5958-4262-a169-c5b74d5ae067)
)
(wire (pts (xy 180.34 67.31) (xy 134.62 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b8cedb0-5992-40d6-8eda-ed370f23247a)
)
(wire (pts (xy 120.65 97.79) (xy 127 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5fadc695-2e86-4d84-b218-5eaa804c771e)
)
(wire (pts (xy 134.62 67.31) (xy 134.62 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61819185-b6eb-46ad-8a7a-e69276aeb6bb)
)
(wire (pts (xy 20.32 113.03) (xy 25.4 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6abf7a9f-23e3-42c4-853d-aff18cd68b90)
)
(wire (pts (xy 99.06 52.578) (xy 99.06 56.896))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b6142cd-0491-4c78-aed0-77df552f4e86)
)
(wire (pts (xy 27.94 83.82) (xy 27.94 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e919c7a-2f48-4ac1-adc7-6c6445d952d7)
)
(wire (pts (xy 103.632 64.516) (xy 103.632 66.548))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75213946-ca27-4464-a703-9f34b1ea820a)
)
(wire (pts (xy 118.11 119.38) (xy 120.65 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c6c8255-4d4d-4f67-96ab-9de633ec4d3b)
)
(wire (pts (xy 86.36 90.17) (xy 86.36 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8244c629-0987-4349-aa30-d078eb157055)
)
(wire (pts (xy 172.72 48.768) (xy 172.72 52.832))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88b7cc1b-51e0-455f-a7d9-8db92220d041)
)
(wire (pts (xy 40.64 137.16) (xy 40.64 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95e27364-0612-4761-beb7-2ff34d0c5618)
)
(wire (pts (xy 81.28 92.71) (xy 88.9 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 975e533c-5d27-409e-8b4b-64f9ae07f12b)
)
(wire (pts (xy 76.2 80.01) (xy 67.31 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97ac2ca2-cbaa-41d5-85b6-46b82707a17f)
)
(wire (pts (xy 67.31 74.93) (xy 76.2 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b5d67eb-94e8-445d-9982-5f70b9824a06)
)
(wire (pts (xy 99.06 56.896) (xy 103.632 56.896))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d1fec66-64c1-4f9b-af4e-ba03e9d08492)
)
(wire (pts (xy 24.13 137.16) (xy 20.32 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f1a109a-a720-4c9a-aa2d-862f9ed260fc)
)
(wire (pts (xy 128.27 119.38) (xy 134.62 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9fd2275d-cf90-4431-9db1-fd690d44e00a)
)
(wire (pts (xy 67.31 77.47) (xy 67.31 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a42b8aa1-fa53-44c0-aa97-93e4029a9d75)
)
(wire (pts (xy 99.06 68.58) (xy 99.06 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae8cb6a6-e697-4fc5-8d45-14ad19b15092)
)
(wire (pts (xy 55.88 105.41) (xy 55.88 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b454eb3c-79e2-4619-b4f2-14f7f8a8414e)
)
(wire (pts (xy 67.31 77.47) (xy 67.31 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7630a06-7b84-4d6a-8166-3ae508b1d3ac)
)
(wire (pts (xy 42.672 92.71) (xy 45.466 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b8f4eab5-0675-4890-9d29-32a801d5da23)
)
(wire (pts (xy 36.83 83.82) (xy 43.18 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bad810d1-612e-413f-b96e-02db362b065a)
)
(wire (pts (xy 43.18 83.82) (xy 43.18 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd064510-a77c-4eb4-a38a-d58133aa90dd)
)
(wire (pts (xy 40.64 137.16) (xy 31.75 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c35b2784-1a2f-4c98-a37f-98ebcdfa34e7)
)
(wire (pts (xy 40.64 134.62) (xy 40.64 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c57dcb62-7f1e-45be-8eb9-8666cccf3083)
)
(wire (pts (xy 86.36 90.17) (xy 88.9 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c65498eb-392e-45af-b303-4d613adbf4fd)
)
(wire (pts (xy 60.96 113.03) (xy 60.96 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d0aa11a5-2e82-4fe9-96b4-4e8d1fa5e49d)
)
(wire (pts (xy 180.34 85.09) (xy 187.96 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d0f536d3-1e71-47a0-b0b1-6b15f4f3d6e9)
)
(wire (pts (xy 86.36 68.58) (xy 99.06 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d2936d13-3c4e-4f9a-842c-ae9a016f0868)
)
(wire (pts (xy 74.93 77.47) (xy 88.9 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3048712-442f-4cba-8a61-a1eba4c06b2d)
)
(wire (pts (xy 55.88 118.11) (xy 55.88 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d583a2d1-afff-4150-b54c-0b4118983044)
)
(wire (pts (xy 29.21 77.47) (xy 27.94 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd316144-7225-47c9-a71c-f5aee610cbbe)
)
(wire (pts (xy 81.28 85.09) (xy 81.28 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dfcb2769-7596-472d-842d-6aefeee7a45d)
)
(wire (pts (xy 177.038 60.452) (xy 177.038 61.722))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e06b86a3-04fd-41cf-9b48-0a6c69924230)
)
(wire (pts (xy 172.72 52.832) (xy 177.038 52.832))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e429a3ec-a183-4295-933e-4971b08f1850)
)
(wire (pts (xy 109.22 85.09) (xy 137.16 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4c7ac15-44ae-49c5-9f87-1329f8adb005)
)
(wire (pts (xy 36.83 77.47) (xy 43.18 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e637661f-32ff-4da4-bc1e-33b261c708cf)
)
(wire (pts (xy 88.9 95.25) (xy 86.36 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea2fc8c6-902f-436b-981e-22fc6997fc59)
)
(wire (pts (xy 127 97.79) (xy 137.16 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1b980af-2167-4e99-a525-7f33ddbc2dfd)
)
(wire (pts (xy 134.62 80.01) (xy 137.16 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9b0ef6e-9a5c-4faf-a9aa-6f4741c0b1b2)
)
(text "R=2.2M, C=4.7u => tau~27 hours" (at 59.69 68.58 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 450cfa65-2ef7-4c44-bc59-00e7f022e112)
)
(text "Falling Edge, 100ms,\nnot retriggerable" (at 134.62 64.77 180)
(effects (font (size 1.778 1.5113)) (justify left bottom))
(uuid 6061a8ae-32c8-43cd-94b6-753e1ddb777d)
)
(text "MODE=0 => single cycle mode" (at 44.45 85.09 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 64550fd7-eb96-4491-8977-72d67a71384a)
)
(text "DNP" (at 31.75 82.55 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6e1c4f2f-1b6f-4c49-8415-6df837543975)
)
(text "A=B=0 => 8192 counts" (at 48.26 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid aaa92884-fe54-4886-866e-cbf149200da3)
)
(text "AR=1 => Auto reset on\npower on disabled" (at 62.23 100.33 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b526b23c-a8ee-44da-abd9-7a3abcce8668)
)
(text "MODE=1 => recycle mode" (at 44.45 82.55 0)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left bottom))
(uuid cb57363b-89b6-4591-a0c7-fb84710da412)
)
(hierarchical_label "RDT_Clear" (shape input) (at 42.672 92.71 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4c17fefd-1dc8-4a93-8388-ad5b1e1701f7)
)
(hierarchical_label "DCDC_~{Enable}" (shape output) (at 187.96 85.09 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b3a74645-4ec2-4769-adf5-ffb1570efbc2)
)
(symbol (lib_id "power:+3V3") (at 27.94 74.93 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 159687b3-c88a-455f-aa3d-f6d24ce56e52)
(property "Reference" "#PWR085" (id 0) (at 27.94 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 29.21 73.66 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 27.94 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 27.94 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 40bd3026-5abc-4862-855f-e45825174f02))
)
(symbol (lib_id "Device:R") (at 33.02 77.47 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 15d3edab-8928-494c-a952-846a1bb123c8)
(property "Reference" "R110" (id 0) (at 35.56 76.2 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0" (id 1) (at 33.02 77.47 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 33.02 75.692 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 33.02 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB Part #" "C4117710" (id 4) (at 33.02 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer_Part_Number" "ERJ-H3G0R00V" (id 5) (at 33.02 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c809ccf4-97df-4156-9a29-871003ed9757))
(pin "2" (uuid 8a046a55-d16f-46cc-bc8f-b493d2a7d633))
)
(symbol (lib_id "Device:R") (at 127 92.71 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 17cafd9e-ac79-419a-af90-236b2a8e3605)
(property "Reference" "R39" (id 0) (at 129.54 91.4399 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "220k" (id 1) (at 129.54 93.9799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 125.222 92.71 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 127 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB Part #" "C4285297" (id 4) (at 127 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer_Part_Number" "ERJ-H3EF5102V" (id 5) (at 127 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 823a1319-1119-4953-b132-d81ae3be2aff))
(pin "2" (uuid da49b833-dd1b-47f0-a3e3-cb642f796c38))
)
(symbol (lib_id "power:GND") (at 55.88 120.65 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 1f632dcb-cfd3-4293-ace7-8ce655379a3b)
(property "Reference" "#PWR0181" (id 0) (at 55.88 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 56.007 125.0442 0))
(property "Footprint" "" (id 2) (at 55.88 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 55.88 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2dd37f9b-e14d-431a-8d03-d566111fb702))
)
(symbol (lib_id "power:+3V3") (at 120.65 90.17 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2114c7a2-319e-4aff-bd16-4cee0ff4d1e9)
(property "Reference" "#PWR069" (id 0) (at 120.65 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 121.92 88.9 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 120.65 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 120.65 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a1d13684-641e-4989-b60b-0362e563ac26))
)
(symbol (lib_id "Device:C") (at 103.632 60.706 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 246d8af8-3327-461c-b589-0f1fd4fa64f7)
(property "Reference" "C84" (id 0) (at 104.902 63.246 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "100n" (id 1) (at 104.902 58.166 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 102.6668 56.896 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 103.632 60.706 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB Part #" "C129621" (id 4) (at 103.632 60.706 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer_Part_Number" "C0603C104K5RACAUTO" (id 5) (at 103.632 60.706 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8f637f43-9d01-44b5-98c0-a1b6f9b68e47))
(pin "2" (uuid 41bece30-ce75-43c2-b335-b97dae05e958))
)
(symbol (lib_id "Device:R") (at 81.28 104.14 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2c57fa10-6460-4655-a4cd-839e8d1d43b3)
(property "Reference" "R72" (id 0) (at 79.248 104.14 90))
(property "Value" "10k" (id 1) (at 83.82 104.14 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 83.058 104.14 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 81.28 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB Part #" "C4297913" (id 4) (at 81.28 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer_Part_Number" "ERJ-H3EF1002V" (id 5) (at 81.28 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c9480373-2fcd-46fb-8e12-cb2ce75e1fe4))
(pin "2" (uuid 74324a24-6b85-4254-821d-2b1884495201))
)
(symbol (lib_id "Device:R") (at 33.02 83.82 270) (unit 1)
(in_bom no) (on_board yes)
(uuid 340a5139-3e4e-441e-8a3b-73a26246a3ed)
(property "Reference" "R111" (id 0) (at 35.56 82.55 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0" (id 1) (at 33.02 83.82 90)