-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathADCTRANSL.kicad_sch
1291 lines (1249 loc) · 48.7 KB
/
ADCTRANSL.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 f096ad36-36da-4146-bcd1-34c6f16bf605)
(paper "A4")
(title_block
(title "H7DDCADC")
(date "2022-07-10")
(rev "initial")
(company "papamidas DM1CR")
(comment 1 "high speed 1.8V to 3.3V level translator")
)
(lib_symbols
(symbol "74xGxx:74AUP1G97" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -2.54 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74AUP1G97" (id 1) (at 0 -5.08 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" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Configurable Single Gate LVC CMOS" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Configurable Multi-Function Single Gate, Low-Voltage CMOS" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT* SC*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74AUP1G97_0_1"
(rectangle (start -3.81 3.81) (end 3.81 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "74AUP1G97_1_1"
(pin input line (at -6.35 0 0) (length 2.54)
(name "IN1" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 0 -3.81 270) (length 0) hide
(name "GND" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin input line (at -6.35 2.54 0) (length 2.54)
(name "IN0" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin output line (at 6.35 0 180) (length 2.54)
(name "Y" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 0 3.81 90) (length 0) hide
(name "VCC" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin input line (at -6.35 -2.54 0) (length 2.54)
(name "IN2" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:FerriteBead_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (id 0) (at 1.905 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "FerriteBead_Small" (id 1) (at 1.905 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "L ferrite bead inductor filter" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FerriteBead_Small_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.7874)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.889)
(xy 0 1.2954)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.8288 0.2794)
(xy -1.1176 1.4986)
(xy 1.8288 -0.2032)
(xy 1.1176 -1.4224)
(xy -1.8288 0.2794)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "FerriteBead_Small_1_1"
(pin passive line (at 0 2.54 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 -2.54 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (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" "power-flag" (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))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 160.02 62.23) (diameter 0) (color 0 0 0 0)
(uuid 00586ac8-f957-469f-b8b4-cd891ef91ca2)
)
(junction (at 114.3 137.16) (diameter 0) (color 0 0 0 0)
(uuid 0981c542-ea2d-4ba5-9580-69c729fcc590)
)
(junction (at 114.3 144.78) (diameter 0) (color 0 0 0 0)
(uuid 2483a2d7-b45a-4deb-84c9-e005390c6f0f)
)
(junction (at 137.16 144.78) (diameter 0) (color 0 0 0 0)
(uuid 2b72795d-9bfe-4992-a71a-dc853b1c7306)
)
(junction (at 160.02 44.45) (diameter 0) (color 0 0 0 0)
(uuid 3a9d590c-359e-4d05-84a2-2e0667b58aa8)
)
(junction (at 125.73 144.78) (diameter 0) (color 0 0 0 0)
(uuid 41121e1c-729e-49d7-bf0c-dd5a46668544)
)
(junction (at 161.29 137.16) (diameter 0) (color 0 0 0 0)
(uuid 505e433c-f6d0-4192-b4de-0bb861a9f4ad)
)
(junction (at 119.38 137.16) (diameter 0) (color 0 0 0 0)
(uuid 56b27ba0-f7ec-4811-a468-d13ef3a71a55)
)
(junction (at 148.59 137.16) (diameter 0) (color 0 0 0 0)
(uuid 57e559bf-56d6-45b6-9104-287b89410733)
)
(junction (at 148.59 144.78) (diameter 0) (color 0 0 0 0)
(uuid 612f26e0-4ab5-4afa-8d06-07d5a41f9b60)
)
(junction (at 160.02 96.52) (diameter 0) (color 0 0 0 0)
(uuid 7dc0ad12-c595-42f7-9658-7700666ed3fb)
)
(junction (at 125.73 137.16) (diameter 0) (color 0 0 0 0)
(uuid 7edf0613-82df-4bf6-b681-bc00aae60eb8)
)
(junction (at 160.02 137.16) (diameter 0) (color 0 0 0 0)
(uuid 8642834e-3e37-4085-a2df-04e3c901776b)
)
(junction (at 161.29 144.78) (diameter 0) (color 0 0 0 0)
(uuid 8d48b1a0-19b1-4534-8d20-e5b32f02e7e4)
)
(junction (at 160.02 80.01) (diameter 0) (color 0 0 0 0)
(uuid 91e896c7-a5d8-4692-b393-025ac7ccb7a9)
)
(junction (at 100.33 144.78) (diameter 0) (color 0 0 0 0)
(uuid 94dfadc2-aa69-471f-9733-e2b07dd69a57)
)
(junction (at 160.02 114.3) (diameter 0) (color 0 0 0 0)
(uuid a6907c60-e864-4ce1-b6a0-72fe667248c1)
)
(junction (at 137.16 137.16) (diameter 0) (color 0 0 0 0)
(uuid a8281c83-994a-4503-9eb1-c58e1cc35202)
)
(wire (pts (xy 135.89 30.48) (xy 134.62 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04940791-b193-4909-b48f-b45b3008202e)
)
(wire (pts (xy 160.02 62.23) (xy 160.02 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05eb2502-9902-4ca3-b41f-f5231b04e498)
)
(wire (pts (xy 161.29 137.16) (xy 173.99 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c2f8084-83ef-4145-8bbf-ccff965f935c)
)
(wire (pts (xy 148.59 85.09) (xy 170.18 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d724e2c-1319-441b-8244-2151b5a1abc7)
)
(wire (pts (xy 135.89 49.53) (xy 110.49 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0efbcab2-1e0d-41a0-aae5-034678c1dbe6)
)
(wire (pts (xy 142.24 29.21) (xy 142.24 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f6eb634-9e85-4df0-9e23-3d6d30fc89f3)
)
(wire (pts (xy 135.89 33.02) (xy 110.49 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fd701c4-d103-40af-b938-63c95d0f252e)
)
(wire (pts (xy 135.89 119.38) (xy 110.49 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16bbb6fa-0611-4f3f-9439-e7dbcd46bdca)
)
(wire (pts (xy 137.16 144.78) (xy 148.59 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16ed389e-d245-4ae1-8605-0d938dd6aaf2)
)
(wire (pts (xy 142.24 114.3) (xy 160.02 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18c621b1-87f3-4905-a0bb-3e0db06eab25)
)
(wire (pts (xy 142.24 96.52) (xy 160.02 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a7892cd-8b06-45fa-bbc8-1c0482e3938f)
)
(wire (pts (xy 148.59 67.31) (xy 170.18 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2526a363-70a9-4ab5-a52c-aaec28c17fc9)
)
(wire (pts (xy 142.24 62.23) (xy 160.02 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 268eaeb3-2747-47b4-bd28-3f0dcac2fdce)
)
(wire (pts (xy 137.16 137.16) (xy 148.59 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28fa12a1-0ef2-428e-873b-27c1348aa6af)
)
(wire (pts (xy 135.89 46.99) (xy 134.62 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2aa54e72-e455-4224-9b30-bc734e93872f)
)
(wire (pts (xy 161.29 137.16) (xy 161.29 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ddcad19-1f68-4ece-a76b-56fcfb095f29)
)
(wire (pts (xy 135.89 82.55) (xy 134.62 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2de4c89b-c919-4fbc-8e65-e401cdaed67c)
)
(wire (pts (xy 137.16 137.16) (xy 137.16 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2eddf9c7-9657-4d4e-8121-64b51e21f3bf)
)
(wire (pts (xy 114.3 144.78) (xy 125.73 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31eaf964-337f-49ca-8d4b-e0dbc9b6018a)
)
(wire (pts (xy 135.89 64.77) (xy 134.62 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3637504e-be81-431f-af9e-636a62d775ba)
)
(wire (pts (xy 95.25 137.16) (xy 100.33 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38470766-4af1-4e94-881d-1396a8799a5a)
)
(wire (pts (xy 160.02 26.67) (xy 160.02 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3cc7cc66-659f-42c3-b550-7845d7a2a280)
)
(wire (pts (xy 148.59 49.53) (xy 170.18 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e59ad8e-abb4-4ed6-b629-3387f7dfd619)
)
(wire (pts (xy 148.59 119.38) (xy 170.18 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fd1b0ed-c6af-4150-ac0f-13a66e2f9fff)
)
(wire (pts (xy 114.3 138.43) (xy 114.3 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 430a7728-0993-43ba-83e2-7c90c3243864)
)
(wire (pts (xy 142.24 80.01) (xy 160.02 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46e5d7e2-e5c0-4be2-b0de-3973e252db6f)
)
(wire (pts (xy 135.89 121.92) (xy 134.62 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48a3f9f5-f96f-4aaf-9737-bd043f31b6e5)
)
(wire (pts (xy 105.41 137.16) (xy 114.3 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49d856f9-cd8f-4657-942e-56ab32e47fdf)
)
(wire (pts (xy 148.59 143.51) (xy 148.59 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ae78623-f848-4d8f-8364-4d9c3300cf63)
)
(wire (pts (xy 173.99 143.51) (xy 173.99 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ee20528-042d-4dcf-930f-52dff9f58d16)
)
(wire (pts (xy 148.59 33.02) (xy 170.18 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59eaf06c-520d-499a-a86d-61c555ca7d82)
)
(wire (pts (xy 142.24 106.68) (xy 142.24 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a4ecb5b-792c-4844-95a5-806ecb42aac6)
)
(wire (pts (xy 135.89 35.56) (xy 134.62 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c14c2ff-da50-4094-adab-56f4235e1d73)
)
(wire (pts (xy 142.24 81.28) (xy 142.24 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e4e0526-b968-4eb8-888a-9b8b37ecd18f)
)
(wire (pts (xy 160.02 44.45) (xy 160.02 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e597483-77f1-4fca-b6f9-c277fc2b1932)
)
(wire (pts (xy 135.89 116.84) (xy 134.62 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f2ba2cd-baa0-49dd-aa38-5e97da538fcc)
)
(wire (pts (xy 135.89 87.63) (xy 134.62 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64d93ebf-eb98-4b91-9632-70bdc13c8c70)
)
(wire (pts (xy 148.59 101.6) (xy 170.18 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 691e0141-69f9-42a9-895c-c19b9e23804c)
)
(wire (pts (xy 148.59 137.16) (xy 148.59 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b50e28c-59d5-4ae4-9c39-e02425128728)
)
(wire (pts (xy 142.24 97.79) (xy 142.24 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b7099f9-d8ee-4007-a7b1-c98091fe0514)
)
(wire (pts (xy 142.24 90.17) (xy 142.24 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d6a3e18-2b6c-4a49-91fa-37823bdcec0d)
)
(wire (pts (xy 135.89 85.09) (xy 110.49 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6fd76557-7c7d-4e67-a288-80312412b930)
)
(wire (pts (xy 173.99 137.16) (xy 173.99 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75bb14b5-8ff4-4d73-b5e0-5386137cd51e)
)
(wire (pts (xy 148.59 144.78) (xy 161.29 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7dc9796a-b5f9-4e00-a764-f1bcc285a303)
)
(wire (pts (xy 148.59 137.16) (xy 160.02 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f54e2b1-d76f-4446-9636-104d5a3995aa)
)
(wire (pts (xy 160.02 114.3) (xy 160.02 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7fda085b-dbe1-4e6a-8181-173718b2c76c)
)
(wire (pts (xy 142.24 115.57) (xy 142.24 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83508d02-2bde-4290-8782-6918d9e6108a)
)
(wire (pts (xy 142.24 45.72) (xy 142.24 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 847d1689-6404-491c-93e9-0dc96ac5e5ea)
)
(wire (pts (xy 135.89 101.6) (xy 110.49 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8dd59aae-6a81-4510-b7e1-541211b4711c)
)
(wire (pts (xy 142.24 44.45) (xy 160.02 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92a47c44-a8f3-43d8-a427-e9d888d5de90)
)
(wire (pts (xy 137.16 143.51) (xy 137.16 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a3abdbb-be53-4c48-9e92-b40af666572d)
)
(wire (pts (xy 114.3 137.16) (xy 119.38 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b80b8d4-d13d-4d5a-a9bf-5ce91492468d)
)
(wire (pts (xy 135.89 104.14) (xy 134.62 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e0623cd-974e-44bf-ab82-8cfcead726b2)
)
(wire (pts (xy 160.02 96.52) (xy 160.02 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ead8bc9-b2e2-4bf7-8158-87ea74d8db5a)
)
(wire (pts (xy 161.29 144.78) (xy 173.99 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ecea402-90fa-4814-9842-c9ac287e13c0)
)
(wire (pts (xy 125.73 143.51) (xy 125.73 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f9bd9b1-f66c-4601-96e3-28ebc5a02cfb)
)
(wire (pts (xy 142.24 63.5) (xy 142.24 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a001afe7-1365-4b9f-8302-0ab362147bcf)
)
(wire (pts (xy 142.24 54.61) (xy 142.24 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a15b2b67-3639-4ca8-87bf-50a0307f4e89)
)
(wire (pts (xy 100.33 144.78) (xy 114.3 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2788d69-f209-42b2-bab5-8e8b1bc972cc)
)
(wire (pts (xy 95.25 144.78) (xy 100.33 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a4e77a3e-feee-4482-87c9-4b59288657f4)
)
(wire (pts (xy 125.73 137.16) (xy 125.73 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid abc07ae9-728c-4b81-89f8-d76e6e4abe3d)
)
(wire (pts (xy 135.89 69.85) (xy 134.62 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid acf3dba0-a5e3-42a8-b751-ced98cdcef63)
)
(wire (pts (xy 135.89 67.31) (xy 110.49 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad8de738-c091-4418-9ef1-daaa34ec95f8)
)
(wire (pts (xy 142.24 38.1) (xy 142.24 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b0765efd-7360-40de-8d93-bcd73b0c725c)
)
(wire (pts (xy 142.24 72.39) (xy 142.24 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcd7d07d-5766-4551-a585-14730afcad64)
)
(wire (pts (xy 160.02 80.01) (xy 160.02 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd1657e4-e4cf-4413-af37-2874b8d35203)
)
(wire (pts (xy 160.02 137.16) (xy 161.29 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cda0e324-6dc6-41ae-9aaf-97a552c0e4c6)
)
(wire (pts (xy 135.89 52.07) (xy 134.62 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1723233-38c9-4885-84fc-e97df498864d)
)
(wire (pts (xy 125.73 144.78) (xy 137.16 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d302f217-3e49-4aa1-93c2-865b640e7d6e)
)
(wire (pts (xy 142.24 124.46) (xy 142.24 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db1488c8-c5fc-4da9-ba71-fb1cb42472d1)
)
(wire (pts (xy 114.3 143.51) (xy 114.3 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e01da69b-2c08-4b1c-b1f9-837b53e94245)
)
(wire (pts (xy 142.24 26.67) (xy 160.02 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e7a1e9ca-cda8-47b4-a2a2-0620cb59183e)
)
(wire (pts (xy 119.38 137.16) (xy 125.73 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec5494fd-225b-44d5-adb9-d29189f850dc)
)
(wire (pts (xy 135.89 99.06) (xy 134.62 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f0c3f09e-c193-4a93-ba13-6564d99e9d69)
)
(wire (pts (xy 125.73 137.16) (xy 137.16 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1c6f154-d98f-4805-8094-299c39667409)
)
(wire (pts (xy 161.29 143.51) (xy 161.29 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f4101541-9a1f-467f-85c3-b1ab1d479426)
)
(text "74AUP1T34 (buffer, preferred over 1T97) was not available at time of design (Jul 7, 22)"
(at 181.61 165.1 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 93cd2bca-ae3e-4504-b321-66ba592e024e)
)
(text "NXP Suffix GW = TSSOP6 (SOT363-2, 0.65 mm pitch)" (at 190.5 93.98 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9804e248-a115-4f26-b25b-d98f4523c2c0)
)
(global_label "V1T97" (shape passive) (at 173.99 137.16 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f5f39453-31e7-45b9-9317-e78b33cd18ad)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 182.0879 137.0806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(hierarchical_label "IN5" (shape input) (at 110.49 101.6 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 011836eb-1fec-44ca-b8b4-ab7df19b51e8)
)
(hierarchical_label "GND" (shape input) (at 95.25 144.78 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0d458ffd-e85b-43eb-bbc8-2b0a70702e5f)
)
(hierarchical_label "OUT4" (shape output) (at 170.18 85.09 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 14e84dc8-018d-4d04-b3bd-c7d71c2cbe62)
)
(hierarchical_label "IN3" (shape input) (at 110.49 67.31 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1972d362-dff3-4304-9927-f962e15ea235)
)
(hierarchical_label "OUT3" (shape output) (at 170.18 67.31 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1f0fd646-46c7-4bfd-b997-856ba7ef0a27)
)
(hierarchical_label "OUT6" (shape output) (at 170.18 119.38 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 24c3eddf-1ea4-4ab2-91b5-5f92531e5386)
)
(hierarchical_label "IN2" (shape input) (at 110.49 49.53 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2c2cce2e-6be5-4398-b3ad-abd8ae0376a4)
)
(hierarchical_label "IN4" (shape input) (at 110.49 85.09 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 36f0c40b-4439-4c6e-b6a1-8d675db84cae)
)
(hierarchical_label "VSUP" (shape input) (at 95.25 137.16 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 81366367-4dce-4f47-8090-4c4b1f61d43f)
)
(hierarchical_label "OUT2" (shape output) (at 170.18 49.53 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9c37a0ac-d908-43b4-a51b-3efbc4474b97)
)
(hierarchical_label "IN6" (shape input) (at 110.49 119.38 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c00ce944-318d-4ac6-82c7-f0e9fa047d8e)
)
(hierarchical_label "IN1" (shape input) (at 110.49 33.02 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cf4d49c2-1a0f-42a0-b988-0cfd3b45dde7)
)
(hierarchical_label "OUT5" (shape output) (at 170.18 101.6 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cf9e3a75-efb2-40ae-bce7-7cca3fabc767)
)
(hierarchical_label "OUT1" (shape output) (at 170.18 33.02 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid edb4bc0c-caf5-4b8c-a3e8-9d5819c507f1)
)
(symbol (lib_id "74xGxx:74AUP1G97") (at 142.24 119.38 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0d1671e0-422a-4047-899f-a6f3d38e0100)
(property "Reference" "U21" (id 0) (at 152.4 116.84 0))
(property "Value" "74AUP1T97GW" (id 1) (at 152.4 121.92 0))
(property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6_Handsoldering" (id 2) (at 142.24 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (id 3) (at 142.24 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 51ed6c11-94eb-4ac1-b180-da234823f6bf))
(pin "2" (uuid 83527163-b5fa-43bf-8124-2e9f67220ede))
(pin "3" (uuid cb0dc99e-7641-43a9-9c2a-cac0a0d82cc6))
(pin "4" (uuid 8037ad79-0135-46b1-a55e-1ffbca01d085))
(pin "5" (uuid 265a103b-2546-4e2c-8f14-86ff913832e5))
(pin "6" (uuid 65a06b92-ff1d-4e8b-a026-24a1fdaa7c7e))
)
(symbol (lib_id "power:GND") (at 134.62 121.92 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 110583da-8de1-48b0-9dde-5032fe1972ae)
(property "Reference" "#PWR0116" (id 0) (at 128.27 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 127 121.92 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 134.62 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 134.62 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dfc6bfb4-8777-4b27-863f-faa864de9193))
)
(symbol (lib_id "power:GND") (at 134.62 104.14 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 252e4ddf-f8c7-4156-ad8b-601f83794d0f)
(property "Reference" "#PWR0117" (id 0) (at 128.27 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 127 104.14 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 134.62 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 134.62 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d41b270b-f79e-4851-bf08-9e82d45d0cb7))
)
(symbol (lib_id "power:GND") (at 134.62 116.84 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2ff40382-345e-48d1-ac4d-534ee5142fe4)
(property "Reference" "#PWR0115" (id 0) (at 128.27 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 127 116.84 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 134.62 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 134.62 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d5ee14ae-f34b-4eb5-b684-27fc35c89e96))
)
(symbol (lib_id "74xGxx:74AUP1G97") (at 142.24 85.09 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 3188bf81-9f41-46ee-a519-09b5b9f0c475)
(property "Reference" "U19" (id 0) (at 152.4 82.55 0))
(property "Value" "74AUP1T97GW" (id 1) (at 152.4 87.63 0))
(property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6_Handsoldering" (id 2) (at 142.24 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (id 3) (at 142.24 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0f9aef48-9403-446b-8986-4c9a2148c2b1))
(pin "2" (uuid 3618bed7-07f3-4cb2-b2fa-c756b6f7a7f6))
(pin "3" (uuid 6bdb3cb1-1068-41b0-b82c-731ccbff1cb1))
(pin "4" (uuid a83938ae-22d4-40b9-af68-8c869208c455))
(pin "5" (uuid b207e6aa-8d6f-4c47-98ea-b8b7de3dcee2))
(pin "6" (uuid 52cea906-b4e5-4bfb-a7c5-36604892d476))
)
(symbol (lib_id "power:GND") (at 142.24 106.68 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 36125102-42b7-423e-a0f8-b1fd554dca64)
(property "Reference" "#PWR0119" (id 0) (at 142.24 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 144.78 106.68 0))
(property "Footprint" "" (id 2) (at 142.24 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 142.24 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9eb4239c-20c2-4e70-8bac-e892c2bdc347))
)
(symbol (lib_id "power:GND") (at 142.24 38.1 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 3ed8d156-db8b-4624-84cd-895f9a58284e)
(property "Reference" "#PWR095" (id 0) (at 142.24 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 144.78 38.1 0))
(property "Footprint" "" (id 2) (at 142.24 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 142.24 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e28d8bd4-5d0a-4774-bc08-cf3a63291563))
)
(symbol (lib_id "Device:C_Small") (at 114.3 140.97 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 431baca7-cb8a-4b72-be66-3255881e718f)
(property "Reference" "C16" (id 0) (at 116.84 139.7062 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 116.84 142.2462 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 114.3 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 114.3 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3bbae5d4-6082-49cc-a334-20e15dfcb8e0))
(pin "2" (uuid 0d0408af-ade9-4875-962c-01187d8658e7))
)
(symbol (lib_id "power:GND") (at 134.62 52.07 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 444fbabf-3777-4abf-8276-187edbf62dfa)
(property "Reference" "#PWR0123" (id 0) (at 128.27 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 127 52.07 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 134.62 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 134.62 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 28e1b030-ea91-471a-aaa1-97a5fddd7549))
)
(symbol (lib_id "power:GND") (at 134.62 46.99 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 4d0dfa9f-d6f2-4efd-b737-a63703766ffe)
(property "Reference" "#PWR0124" (id 0) (at 128.27 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 127 46.99 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 134.62 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 134.62 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e2d40da9-6e83-4bb1-9432-1224939d9697))
)
(symbol (lib_id "Device:C_Small") (at 125.73 140.97 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4f460764-66e1-4a2b-b731-318570f90f1e)
(property "Reference" "C17" (id 0) (at 128.27 139.7062 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 128.27 142.2462 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 125.73 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 125.73 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bf8b41c8-9c94-4271-a4e4-442428fd7610))
(pin "2" (uuid beaf24b4-3dc5-4526-befc-7d88d3cee3ef))
)
(symbol (lib_id "Device:C_Small") (at 173.99 140.97 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 54ff89b0-054f-4c32-9988-e69584a92259)
(property "Reference" "C28" (id 0) (at 177.8 139.7 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 177.8 142.24 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 173.99 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 173.99 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 480d5272-a449-43d3-a19b-91648eb98240))
(pin "2" (uuid 6a6c8aea-fbf7-4ce5-a585-43a0cd7cbb65))
)
(symbol (lib_id "power:GND") (at 134.62 64.77 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 55506e8f-1640-486a-ac89-54504ef7b7fa)
(property "Reference" "#PWR0127" (id 0) (at 128.27 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 127 64.77 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 134.62 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 134.62 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1bd5b45d-3ad1-4b30-958c-df710824e30d))
)
(symbol (lib_id "power:GND") (at 100.33 144.78 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 5d7f0f0f-6771-4383-a493-fb46d683fcfa)
(property "Reference" "#PWR0101" (id 0) (at 100.33 151.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 100.33 149.86 0))
(property "Footprint" "" (id 2) (at 100.33 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 100.33 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 75c7b648-42d7-4545-97c6-3a0a99e276e6))
)
(symbol (lib_id "74xGxx:74AUP1G97") (at 142.24 67.31 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 5e60650f-8bd6-49b8-9c92-f4bf443aad0b)
(property "Reference" "U18" (id 0) (at 152.4 64.77 0))
(property "Value" "74AUP1T97GW" (id 1) (at 152.4 69.85 0))
(property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6_Handsoldering" (id 2) (at 142.24 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (id 3) (at 142.24 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 28e4e415-f92f-4c2c-bdaa-2a61316e24b9))
(pin "2" (uuid bfd7579d-31d6-4fef-b412-c063bb344481))
(pin "3" (uuid ad8e5d72-037d-425a-b053-375e8800f1fd))
(pin "4" (uuid 7ddc40e6-5dc8-4dd4-aee7-7694bc45d506))
(pin "5" (uuid a5abea32-d635-4a5e-ba12-97cc82cb2c08))
(pin "6" (uuid 892111cc-4b77-4fcc-9388-40940d4e75c5))
)
(symbol (lib_id "Device:C_Small") (at 148.59 140.97 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 63dff693-149e-4d3e-bd22-b0cf6b4d33d0)
(property "Reference" "C19" (id 0) (at 152.4 139.7 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 152.4 142.24 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 148.59 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 148.59 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b608f795-fb5c-4679-a501-394fd5f23a86))
(pin "2" (uuid 8e4c4a2f-202b-48e5-a331-244b2b0ed4b7))
)
(symbol (lib_id "power:GND") (at 134.62 69.85 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 64d03f20-6da8-4050-bc94-0ae9c186059f)
(property "Reference" "#PWR0126" (id 0) (at 128.27 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 127 69.85 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 134.62 69.85 0)
(effects (font (size 1.27 1.27)) hide)