-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwitchGainAmp.kicad_sch
1661 lines (1622 loc) · 60.3 KB
/
SwitchGainAmp.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 20230121) (generator eeschema)
(uuid d2f6b79b-2222-40c7-92f0-bb55d2111ea6)
(paper "A4")
(title_block
(date "2023-03-05")
(rev "3")
(company "Jochen Steinmann")
)
(lib_symbols
(symbol "4xxx_IEEE:4066" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 2.54 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4066" (at 5.08 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "4066_0_1"
(rectangle (start -5.08 5.08) (end 5.08 -5.08)
(stroke (width 0) (type default))
(fill (type none))
)
(pin power_in line (at 0 5.08 270) (length 0) hide
(name "Vdd" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -5.08 90) (length 0) hide
(name "Vss" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "4066_1_1"
(pin passive line (at -12.7 2.54 0) (length 7.62)
(name "I/O" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 7.62)
(name "ON" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 0 180) (length 7.62)
(name "O/I" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
(symbol "4066_2_1"
(pin passive line (at 12.7 0 180) (length 7.62)
(name "O/I" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 2.54 0) (length 7.62)
(name "I/O" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 7.62)
(name "ON" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
(symbol "4066_3_1"
(pin input line (at -12.7 -2.54 0) (length 7.62)
(name "ON" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 2.54 0) (length 7.62)
(name "I/O" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 0 180) (length 7.62)
(name "O/I" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "4066_4_1"
(pin passive line (at 12.7 0 180) (length 7.62)
(name "O/I" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 2.54 0) (length 7.62)
(name "I/O" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 7.62)
(name "ON" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(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:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (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))
(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 "PCM_Amplifier_Operational_AKL:LT1491CS" (pin_names (offset 0.2)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 1.27 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LT1491CS" (at 1.27 3.81 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO_AKL:SOIC-14_3.9x8.7mm_P1.27mm" (at 1.27 3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.tme.eu/Document/87f6222119fd9fe94e226e944fba2bf3/lt1490.pdf" (at 1.27 3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "quad opamp operational amplifier micropower rrio rail-to-rail LT1491" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "SO-14 Quad Micropower Rail-to-Rail Operational Amplifier, 1450μV Offset, 180kHz GBW, 55μA per Amplifier, Alternate KiCAD Library" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LT1491CS_0_1"
(polyline
(pts
(xy -3.81 5.08)
(xy -3.81 -5.08)
(xy 6.35 0)
(xy -3.81 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "LT1491CS_1_1"
(pin output line (at 8.89 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -6.35 90) (length 3.18)
(name "V-" (effects (font (size 1 1))))
(number "11" (effects (font (size 1 1))))
)
(pin input line (at -6.35 2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 -2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 6.35 270) (length 3.18)
(name "V+" (effects (font (size 1 1))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
(symbol "LT1491CS_2_1"
(pin input line (at -6.35 -2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 8.89 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "LT1491CS_3_1"
(pin input line (at -6.35 -2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at 8.89 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "LT1491CS_4_1"
(pin input line (at -6.35 -2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 8.89 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (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" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (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" (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))
(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 92.71 88.9) (diameter 0) (color 0 0 0 0)
(uuid 44837330-7a33-45bc-94f7-644b748f390b)
)
(junction (at 92.71 120.65) (diameter 0) (color 0 0 0 0)
(uuid 4b3bf7db-a3b3-4807-b693-d145fee05d25)
)
(junction (at 92.71 170.18) (diameter 0) (color 0 0 0 0)
(uuid 7512a975-e68f-4663-b243-8de610fbb3f3)
)
(junction (at 165.1 49.53) (diameter 0) (color 0 0 0 0)
(uuid 7ae5fe55-6ca8-42db-bc94-4d7b9508797e)
)
(junction (at 92.71 133.35) (diameter 0) (color 0 0 0 0)
(uuid a3d6a9f9-579f-49e9-9194-73bfc6965dfa)
)
(junction (at 92.71 157.48) (diameter 0) (color 0 0 0 0)
(uuid a773001f-8683-4ffe-8902-aff0123ed6e3)
)
(junction (at 92.71 52.07) (diameter 0) (color 0 0 0 0)
(uuid e113099f-f8c5-463c-a656-8363dbccf39d)
)
(junction (at 165.1 130.81) (diameter 0) (color 0 0 0 0)
(uuid e13c6f04-a74a-44f8-9c7e-b2b4ebcdd65f)
)
(junction (at 92.71 76.2) (diameter 0) (color 0 0 0 0)
(uuid e5ba17cd-dee0-4463-a22c-2c421c27693e)
)
(junction (at 92.71 39.37) (diameter 0) (color 0 0 0 0)
(uuid ed5e147c-a903-4833-95fc-da8c5574a820)
)
(wire (pts (xy 92.71 133.35) (xy 92.71 130.81))
(stroke (width 0) (type default))
(uuid 027358e5-0617-4f75-b56e-4b7c9708d2f1)
)
(wire (pts (xy 95.25 88.9) (xy 92.71 88.9))
(stroke (width 0) (type default))
(uuid 0a30e9f2-6e1b-4ec8-8dfb-97bb7330560b)
)
(wire (pts (xy 62.23 154.94) (xy 74.93 154.94))
(stroke (width 0) (type default))
(uuid 0e7a9a69-86ee-4d5e-b828-d12cfbabe8fb)
)
(wire (pts (xy 139.7 86.36) (xy 165.1 86.36))
(stroke (width 0) (type default))
(uuid 1f315cb9-b434-43ef-8c3b-360c2bcdab35)
)
(wire (pts (xy 138.43 167.64) (xy 165.1 167.64))
(stroke (width 0) (type default))
(uuid 23193a7b-439b-400a-af96-035481a8ef86)
)
(wire (pts (xy 92.71 170.18) (xy 92.71 167.64))
(stroke (width 0) (type default))
(uuid 2ad44265-9acb-49d9-a6df-c43621050c2c)
)
(wire (pts (xy 102.87 133.35) (xy 113.03 133.35))
(stroke (width 0) (type default))
(uuid 3cf4d6ab-690f-4c93-b3bc-369fe682b8b6)
)
(wire (pts (xy 92.71 76.2) (xy 92.71 78.74))
(stroke (width 0) (type default))
(uuid 3de2e20a-cebb-4673-9844-972f2697694e)
)
(wire (pts (xy 62.23 118.11) (xy 74.93 118.11))
(stroke (width 0) (type default))
(uuid 41b30718-4f17-4f91-bfbf-6d044ae2faa2)
)
(wire (pts (xy 62.23 36.83) (xy 74.93 36.83))
(stroke (width 0) (type default))
(uuid 4265b4f4-ff80-49b2-a8c0-45f116e108f3)
)
(wire (pts (xy 104.14 39.37) (xy 115.57 39.37))
(stroke (width 0) (type default))
(uuid 481bf8fa-8e2b-4a67-a456-8ac96cd743e2)
)
(wire (pts (xy 102.87 157.48) (xy 115.57 157.48))
(stroke (width 0) (type default))
(uuid 49358436-d0fb-4831-b632-355ee65c0279)
)
(wire (pts (xy 92.71 120.65) (xy 92.71 123.19))
(stroke (width 0) (type default))
(uuid 4c5fc55b-8181-484d-956a-13c73d87c308)
)
(wire (pts (xy 138.43 135.89) (xy 140.97 135.89))
(stroke (width 0) (type default))
(uuid 4d069b85-a8fc-401a-8986-641fef791ed1)
)
(wire (pts (xy 138.43 172.72) (xy 140.97 172.72))
(stroke (width 0) (type default))
(uuid 4d4d3f06-a1a9-454b-9c47-c316e21b9901)
)
(wire (pts (xy 72.39 133.35) (xy 72.39 123.19))
(stroke (width 0) (type default))
(uuid 4e79c940-19f1-4963-941b-1b10ef493a37)
)
(wire (pts (xy 90.17 120.65) (xy 92.71 120.65))
(stroke (width 0) (type default))
(uuid 599934f4-74d0-4cf1-9fc7-127411bbbc31)
)
(wire (pts (xy 138.43 130.81) (xy 165.1 130.81))
(stroke (width 0) (type default))
(uuid 5b927bc2-09b8-431c-b14f-57ea6aa3c88c)
)
(wire (pts (xy 92.71 52.07) (xy 72.39 52.07))
(stroke (width 0) (type default))
(uuid 5f2725bf-bf2d-46f5-bc74-8ab42b0834b7)
)
(wire (pts (xy 81.28 30.48) (xy 81.28 33.02))
(stroke (width 0) (type default))
(uuid 64ce7daa-8b42-4480-bb90-7f1a229c3c96)
)
(wire (pts (xy 95.25 170.18) (xy 92.71 170.18))
(stroke (width 0) (type default))
(uuid 6a574d30-b317-4ea8-a9be-54034a841456)
)
(wire (pts (xy 165.1 130.81) (xy 171.45 130.81))
(stroke (width 0) (type default))
(uuid 749b5617-9d35-47ad-9529-2ba3cb11b473)
)
(wire (pts (xy 92.71 120.65) (xy 95.25 120.65))
(stroke (width 0) (type default))
(uuid 7592cb73-e54a-49f5-a911-ce963e8d9a78)
)
(wire (pts (xy 90.17 39.37) (xy 92.71 39.37))
(stroke (width 0) (type default))
(uuid 75d04863-df88-4f4c-9ba9-78df706a7b10)
)
(wire (pts (xy 72.39 170.18) (xy 72.39 160.02))
(stroke (width 0) (type default))
(uuid 761b9802-b6fb-4b27-8b65-9cbf544baa4b)
)
(wire (pts (xy 165.1 86.36) (xy 165.1 49.53))
(stroke (width 0) (type default))
(uuid 775930e6-b27e-420d-af18-a9da02a0e598)
)
(wire (pts (xy 92.71 157.48) (xy 92.71 160.02))
(stroke (width 0) (type default))
(uuid 7e3e7d7e-b566-4cd5-93c0-7758837ca2dc)
)
(wire (pts (xy 92.71 88.9) (xy 92.71 86.36))
(stroke (width 0) (type default))
(uuid 85aceab4-2c86-4965-8ecf-6fd04db3d6b4)
)
(wire (pts (xy 72.39 88.9) (xy 72.39 78.74))
(stroke (width 0) (type default))
(uuid 85bce6dc-21f0-4821-a1b9-6397040e6e57)
)
(polyline (pts (xy 25.4 101.6) (xy 283.21 101.6))
(stroke (width 0.5) (type default) (color 0 72 0 1))
(uuid 893a1db2-2438-46aa-9935-f2bb485d6243)
)
(wire (pts (xy 92.71 157.48) (xy 95.25 157.48))
(stroke (width 0) (type default))
(uuid 8d1c8db3-eea6-4803-b37b-5a25d1bbe03b)
)
(wire (pts (xy 92.71 170.18) (xy 72.39 170.18))
(stroke (width 0) (type default))
(uuid 96e24845-5348-42b3-9f97-c5d7cb73c25d)
)
(wire (pts (xy 95.25 52.07) (xy 92.71 52.07))
(stroke (width 0) (type default))
(uuid 98da63cc-380c-49ca-bab9-e7501e99e01b)
)
(wire (pts (xy 72.39 78.74) (xy 74.93 78.74))
(stroke (width 0) (type default))
(uuid 9de30389-b22d-445d-a264-7378c1da9428)
)
(wire (pts (xy 127 57.15) (xy 127 59.69))
(stroke (width 0) (type default))
(uuid a038c3a7-fe1e-4bc1-862c-07087bee55db)
)
(wire (pts (xy 256.54 139.7) (xy 256.54 140.97))
(stroke (width 0) (type default))
(uuid a39f90c5-e981-40d6-86d7-60132edb198b)
)
(wire (pts (xy 127 44.45) (xy 127 46.99))
(stroke (width 0) (type default))
(uuid a4471a9b-cc38-4d0a-af70-3cd056e08862)
)
(wire (pts (xy 92.71 133.35) (xy 72.39 133.35))
(stroke (width 0) (type default))
(uuid ab3dbc8e-780f-43f9-beea-e02381c5079c)
)
(wire (pts (xy 102.87 120.65) (xy 115.57 120.65))
(stroke (width 0) (type default))
(uuid ae881275-a7bc-46f6-9615-34784947749d)
)
(wire (pts (xy 102.87 52.07) (xy 114.3 52.07))
(stroke (width 0) (type default))
(uuid aea8ccc8-0625-46bb-94d9-6b2c832a39a1)
)
(wire (pts (xy 102.87 170.18) (xy 113.03 170.18))
(stroke (width 0) (type default))
(uuid b44e0d26-425a-44f1-8dc8-df426d8cc433)
)
(wire (pts (xy 92.71 52.07) (xy 92.71 49.53))
(stroke (width 0) (type default))
(uuid b5de1ad8-c19f-4847-9cf4-6605594c5b04)
)
(wire (pts (xy 72.39 41.91) (xy 74.93 41.91))
(stroke (width 0) (type default))
(uuid b6b7306f-121f-472e-983f-e09d72c13b72)
)
(wire (pts (xy 92.71 39.37) (xy 96.52 39.37))
(stroke (width 0) (type default))
(uuid b7b99652-96a6-421a-923d-3714bebe16ba)
)
(wire (pts (xy 81.28 45.72) (xy 81.28 46.99))
(stroke (width 0) (type default))
(uuid b8662621-06bd-4984-8692-1c7f266f4703)
)
(wire (pts (xy 256.54 129.54) (xy 256.54 132.08))
(stroke (width 0) (type default))
(uuid bbf0234b-f412-4bf6-9218-d3d651858c5b)
)
(wire (pts (xy 269.24 129.54) (xy 269.24 130.81))
(stroke (width 0) (type default))
(uuid c3a14e83-0e0a-4ecf-b009-0bce48935531)
)
(wire (pts (xy 72.39 123.19) (xy 74.93 123.19))
(stroke (width 0) (type default))
(uuid c7536ff7-257b-45e8-8cd8-662ce57c10de)
)
(wire (pts (xy 92.71 88.9) (xy 72.39 88.9))
(stroke (width 0) (type default))
(uuid cb80ad3a-2091-4fd8-b9b7-bb2ab1c664ba)
)
(wire (pts (xy 165.1 167.64) (xy 165.1 130.81))
(stroke (width 0) (type default))
(uuid ce05e519-cca7-4306-a824-5cc5b9a0ec7f)
)
(wire (pts (xy 92.71 39.37) (xy 92.71 41.91))
(stroke (width 0) (type default))
(uuid d567d95b-2766-414e-bea5-6da8647a97b9)
)
(wire (pts (xy 62.23 73.66) (xy 74.93 73.66))
(stroke (width 0) (type default))
(uuid db272f72-615f-4989-81ef-1a84d631f51f)
)
(wire (pts (xy 104.14 76.2) (xy 115.57 76.2))
(stroke (width 0) (type default))
(uuid dcb9cd49-14a5-4e9f-a1b4-a6e77cad6dae)
)
(wire (pts (xy 139.7 54.61) (xy 142.24 54.61))
(stroke (width 0) (type default))
(uuid de5242a7-e758-49d2-bc33-1f5a55ca866d)
)
(wire (pts (xy 90.17 76.2) (xy 92.71 76.2))
(stroke (width 0) (type default))
(uuid de5e644f-3fea-4e5d-befc-cb6433d56876)
)
(wire (pts (xy 165.1 49.53) (xy 170.18 49.53))
(stroke (width 0) (type default))
(uuid e1f84071-75de-4633-9b6a-2dc5d8c11299)
)
(wire (pts (xy 72.39 160.02) (xy 74.93 160.02))
(stroke (width 0) (type default))
(uuid e8169fa4-d9f2-4090-80e6-e6a6bcc86096)
)
(wire (pts (xy 139.7 91.44) (xy 142.24 91.44))
(stroke (width 0) (type default))
(uuid e878bc09-2c3a-4665-8f44-a7e628127ac7)
)
(wire (pts (xy 269.24 138.43) (xy 269.24 140.97))
(stroke (width 0) (type default))
(uuid ea34dffa-7690-4939-913a-d6c2aeaad245)
)
(wire (pts (xy 139.7 49.53) (xy 165.1 49.53))
(stroke (width 0) (type default))
(uuid eb270223-4c30-45c6-9622-4db8a1b41a8d)
)
(wire (pts (xy 95.25 133.35) (xy 92.71 133.35))
(stroke (width 0) (type default))
(uuid f15207b0-dd79-47d5-a925-bc2217182702)
)
(wire (pts (xy 72.39 52.07) (xy 72.39 41.91))
(stroke (width 0) (type default))
(uuid f2ea6f72-a274-42de-886e-55d26e859845)
)
(wire (pts (xy 92.71 76.2) (xy 96.52 76.2))
(stroke (width 0) (type default))
(uuid f48c162e-41da-42d6-8b1b-e852be1ee2c8)
)
(wire (pts (xy 90.17 157.48) (xy 92.71 157.48))
(stroke (width 0) (type default))
(uuid fc3f56a0-b2b7-463a-bc8f-48b13ac9a687)
)
(wire (pts (xy 102.87 88.9) (xy 114.3 88.9))
(stroke (width 0) (type default))
(uuid fd3e7328-638a-40d0-ad18-b3901c7157fc)
)
(text "U1" (at 46.99 154.94 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
(uuid 04f0cb06-1575-410a-89a8-9121e80b6b57)
)
(text "U0" (at 48.26 73.66 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
(uuid 058ec427-5ab1-4398-af96-816d75b29551)
)
(text "G = 6.8928" (at 105.41 165.1 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
(uuid 0902625d-8324-47b2-9f73-c158e540b02b)
)
(text "Switch Gain between 1 and ..." (at 134.62 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1f210d07-dd6f-4b37-b542-3fde0ff4f57e)
)
(text "https://circuitdigest.com/electronic-circuits/programmable-gain-amplifier-using-mosfet-and-transistor"
(at 177.8 17.78 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2517407b-ac09-4d0a-bbb5-f5fb0d3321dd)
)
(text "G = 9.3928" (at 105.41 128.27 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
(uuid 31ccab49-60c7-452b-b45c-e3d6fef44adb)
)
(text "I0" (at 48.26 36.83 0)
(effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left bottom))
(uuid 4b507b3c-1678-49f3-91b3-6f888bdc0fac)
)
(text "Switch Gain between 1 and ..." (at 134.62 58.42 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 95506af6-0f69-419a-97d6-eeef1edba922)
)
(text "G = 9.3928" (at 105.41 46.99 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
(uuid a3add6ed-886f-49a7-8d34-065d4ee8d6d4)
)
(text "Switch Gain between 1 and ..." (at 133.35 176.53 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b5139dd4-8f6f-4f57-8d39-1ad706165b3b)
)
(text "G = 6.8928" (at 105.41 83.82 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
(uuid bd26156e-c593-4685-a53a-1828de443e31)
)
(text "Switch Gain between 1 and ..." (at 133.604 139.446 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c3396041-d9c9-4110-922d-28e36c1aa2d4)
)
(text "Gain = 1 + R47/R51" (at 100.33 44.45 0)
(effects (font (size 1.27 1.27) (thickness 0.254) bold italic) (justify left bottom))
(uuid ea4123c3-1a25-4010-86b2-82ee0af850d0)
)
(text "I1" (at 46.99 118.11 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
(uuid f792eb03-a604-4583-8a4b-61dc774cecf9)
)
(text "resistor to decouple filter \ncap from amplifier output"
(at 102.87 36.195 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fffb9ef7-3a43-4d09-b3bf-821b78484960)
)
(hierarchical_label "IN_3" (shape input) (at 62.23 154.94 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 12fb1152-9d05-48ec-b164-3183143d3c27)
)
(hierarchical_label "GAIN_3" (shape input) (at 140.97 172.72 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2a3f2498-5476-477d-a1d8-7a51fbe7884b)
)
(hierarchical_label "OUT_1" (shape output) (at 115.57 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2dd5a46e-aa22-4505-b397-d7759c149261)
)
(hierarchical_label "OUT_2" (shape output) (at 115.57 120.65 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3dfb75cd-7736-41f5-908f-c9e98014b5dc)
)
(hierarchical_label "OUT_0" (shape output) (at 115.57 39.37 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3e080f5f-4530-4706-8167-29983bdddf6d)
)
(hierarchical_label "GAIN_1" (shape input) (at 142.24 91.44 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 83dff94f-56ac-441c-b560-512f4b306693)
)
(hierarchical_label "BIAS_01" (shape input) (at 170.18 49.53 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 93885584-0be8-4b4c-8220-1aa447b73f69)
)
(hierarchical_label "IN_1" (shape input) (at 62.23 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 95baa0de-9e22-4524-8649-1ce294b78f5a)
)
(hierarchical_label "GAIN_2" (shape input) (at 140.97 135.89 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9fe61e0b-487c-46fd-8131-abea64dfbb0b)
)
(hierarchical_label "GAIN_0" (shape input) (at 142.24 54.61 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a36b279e-71cc-49a2-9ded-8ac00e06d62e)
)
(hierarchical_label "IN_2" (shape input) (at 62.23 118.11 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid bc446834-2e29-4264-832c-5da7482b5392)
)
(hierarchical_label "IN_0" (shape input) (at 62.23 36.83 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c28e8dd5-e040-47a6-9095-9d61da124890)
)
(hierarchical_label "BIAS_23" (shape input) (at 171.45 130.81 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d06c2359-a2a1-45a9-bdac-f7ad86362098)
)
(hierarchical_label "OUT_3" (shape output) (at 115.57 157.48 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d14759ce-57f9-4bad-877d-38739da6be9c)
)
(symbol (lib_id "power:+3.3V") (at 269.24 129.54 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 07e39353-1b9c-4c76-a6c5-5312fd6739eb)
(property "Reference" "#PWR070" (at 269.24 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 269.24 125.9355 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 269.24 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 269.24 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2a593c22-5c91-4bee-a719-4de550e2900c))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/504813d8-ac02-4268-9012-f5868abf7d63"
(reference "#PWR070") (unit 1)
)
)
)
)
(symbol (lib_id "4xxx_IEEE:4066") (at 125.73 170.18 0) (mirror y) (unit 4)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2236f732-5c7d-44ab-b7e1-98cafe0476b0)
(property "Reference" "U12" (at 125.73 161.29 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4066" (at 125.73 163.83 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 125.73 170.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 125.73 170.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "14" (uuid 558f1dbc-c830-486e-ac69-d3a8e870cdc2))
(pin "7" (uuid b738bb66-1860-4459-a348-a7ee8d125510))
(pin "1" (uuid 973ac844-e4d8-4c2f-b2f1-d75d60b49fc3))
(pin "13" (uuid e73fa01a-fea0-48fe-980b-a47a6fb3c377))
(pin "2" (uuid 12be3a8f-b636-4e6b-b13d-1fb1e52ae3ec))
(pin "3" (uuid 4e3534e0-1389-459a-ad0a-4c45898d2b6a))
(pin "4" (uuid 39fdb0f3-53b1-461e-b794-3aea97fc095b))
(pin "5" (uuid 4a1080c0-2cde-4b02-9355-5eb833dbcea1))
(pin "6" (uuid 8ecedc65-b9ff-4d72-8ab4-a426b535fed3))
(pin "8" (uuid 44f81c04-8a57-493a-87a1-6da450c9435b))
(pin "9" (uuid 438d2a51-1c10-4a97-bcd9-24c06d5cb7f1))
(pin "10" (uuid 9254cb27-8f90-401c-bc2f-8ec854fc4a30))
(pin "11" (uuid 54fa8476-1ee5-44ed-bab1-f6e177788eb0))
(pin "12" (uuid 17673bba-2793-4f78-8076-409936c698ec))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/504813d8-ac02-4268-9012-f5868abf7d63"
(reference "U12") (unit 4)
)
)
)
)
(symbol (lib_id "Device:R") (at 99.06 133.35 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 22eba373-4ebe-461d-a3f9-3938434d1cce)
(property "Reference" "R53" (at 99.06 128.27 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5k6" (at 99.06 130.81 90)
(effects (font (size 1.27 1.27) bold))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 99.06 135.128 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 99.06 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 922b13a5-ac4d-4699-9c19-be1ac83daa2b))
(pin "2" (uuid cf20d9d8-c3ef-4c7f-9ec5-7fc8bc8980ec))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/504813d8-ac02-4268-9012-f5868abf7d63"
(reference "R53") (unit 1)
)
)
)
)
(symbol (lib_id "4xxx_IEEE:4066") (at 127 52.07 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2aada6e7-cc9d-4c7d-8989-4c498a47c1f9)
(property "Reference" "U12" (at 130.81 43.18 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4066" (at 130.81 45.72 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 127 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 127 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "14" (uuid 6e5b7896-433f-4383-8861-e32040eef3c9))
(pin "7" (uuid 5614876b-4cd7-4d88-bb9f-a8d22d218426))
(pin "1" (uuid ab6b2cfe-40e1-41fe-9258-09e0e6bbaacd))
(pin "13" (uuid 71948a71-4a09-4d08-a50c-2ba55c527389))
(pin "2" (uuid 53974f55-0691-4cda-8bb0-57658d06fced))
(pin "3" (uuid eeff4d2a-a83b-47dd-bd51-d62152493e88))
(pin "4" (uuid 03f3078e-b4cd-4344-9dc5-1b048605d5cf))
(pin "5" (uuid 1ae73da2-b290-407f-92fc-6b6a26c7d5d4))
(pin "6" (uuid bd4e6cd0-e464-45d4-88d8-afb2bc5df2a3))
(pin "8" (uuid c8ee4821-8006-472a-96d9-6c1e61ef4ea2))
(pin "9" (uuid 9ae90bec-8477-48ba-8de2-2b4c423e6fd3))
(pin "10" (uuid 62065845-4c84-4c68-ab33-bdbc9fc82c7f))
(pin "11" (uuid 28459575-ceec-4cf0-bcdf-b078503e8def))
(pin "12" (uuid 8ade4083-167a-49ab-b823-add17ecfebd2))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/504813d8-ac02-4268-9012-f5868abf7d63"
(reference "U12") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 100.33 39.37 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2fd75f85-0605-42a5-93ae-8aada9743e01)
(property "Reference" "R58" (at 100.33 34.417 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "120" (at 100.33 36.957 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 100.33 41.148 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 100.33 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1245c472-6fb8-416e-a1ed-f0540685ba8c))
(pin "2" (uuid 4e36bd69-245c-494a-9966-eb8b6ec6328f))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/504813d8-ac02-4268-9012-f5868abf7d63"
(reference "R58") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 99.06 88.9 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 331989ed-f791-4086-8d59-333e41f2307f)
(property "Reference" "R50" (at 99.06 83.82 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5k6" (at 99.06 86.36 90)
(effects (font (size 1.27 1.27) bold))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 99.06 90.678 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 99.06 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 46108d5e-7165-4d27-b045-22321e3e30db))
(pin "2" (uuid d652aca5-609c-438a-bffa-7daed3bd5878))
(instances
(project "OpenFlowMeter"
(path "/25e5aa8e-2696-44a3-8d3c-c2c53f2923cf/504813d8-ac02-4268-9012-f5868abf7d63"
(reference "R50") (unit 1)
)
)
)
)
(symbol (lib_id "PCM_Amplifier_Operational_AKL:LT1491CS") (at 81.28 39.37 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 34ca1c6c-15d7-45f9-b193-d9d5cc090351)
(property "Reference" "U8" (at 83.1009 30.48 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LT1491CS" (at 83.1009 33.02 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 82.55 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.tme.eu/Document/87f6222119fd9fe94e226e944fba2bf3/lt1490.pdf" (at 82.55 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 70e7a2da-79a4-4a8c-b76b-d67392b5b1a9))
(pin "11" (uuid c88fd5ae-bde3-4623-b509-412e363650f6))
(pin "2" (uuid e18d36d5-b24e-4202-8e26-d2878b67d643))
(pin "3" (uuid cdf2e60b-a7ad-4b53-8923-0e4a85ca821b))
(pin "4" (uuid 40fc90bc-41e9-4802-bd1f-a42c2408f348))
(pin "5" (uuid 01427797-96ed-4b99-b231-8ba97cb87a7c))
(pin "6" (uuid dc5345a9-eb8a-493b-9c40-702f1dbea6af))
(pin "7" (uuid fe07777c-0f3b-4467-914b-40bec27e1013))
(pin "10" (uuid fece4958-9d95-4a36-9f26-657408c95496))
(pin "8" (uuid 1716efb7-a306-46d4-9b46-472745a460c7))
(pin "9" (uuid ebc1861e-09e9-4465-bc39-3a902c7bcdad))
(pin "12" (uuid 11b824af-38f4-4eb4-9476-86c6e7a40369))
(pin "13" (uuid 76b796e2-66d8-4b1f-95fd-ba282e86bf68))