summaryrefslogtreecommitdiff
path: root/frontend_board/components.dcm
blob: d98e2fe4239d668993322217128662a308aa715b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
EESchema-DOCLIB  Version 2.0
#
$CMP AD390JD
D Quad 12bit DAC, 4LSB Gain Error, DH-28
K 4ch DAC 12bit
F http://www.analog.com/static/imported-files/data_sheets/AD390MIL.pdf
$ENDCMP
#
$CMP AD390KD
D Quad 12bit DAC, 2LSB Gain Error, DH-28
K 4ch DAC 12bit
F http://www.analog.com/static/imported-files/data_sheets/AD390MIL.pdf
$ENDCMP
#
$CMP AD558JN
D Single 8-bit DAC, Internal Reference, Output Amp, Single Supply, DIP-16
K 8bit DAC Reference Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD558.pdf
$ENDCMP
#
$CMP AD558JP
D Single 8-bit DAC, Internal Reference, Output Amp, Single Supply, PLCC-20
K 8bit DAC Reference Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD558.pdf
$ENDCMP
#
$CMP AD558KN
D Single 8-bit DAC, Internal Reference, Output Amp, Single Supply, DIP-16
K 8bit DAC Reference Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD558.pdf
$ENDCMP
#
$CMP AD558KP
D Single 8-bit DAC, Internal Reference, Output Amp, Single Supply, PLCC-20
K 8bit DAC Reference Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD558.pdf
$ENDCMP
#
$CMP AD5593R
D 8-channel 12bits configurable ADC/DAC/GPIO Internal Reference, I2C interface Integrated temperature sensor,Single Supply, TSSOP-16
K 8channel 12bit ADC DAC GPIO I2C Temperature
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5593R.pdf
$ENDCMP
#
$CMP AD5687BCPZ
D Dual, 12-Bit nanoDAC+ with SPI Interface, LFCSP-16
K dac 2nch 12bit spi 
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5689_5687.pdf
$ENDCMP
#
$CMP AD5687BRUZ
D Dual, 12-Bit nanoDAC+ with SPI Interface, TSSOP-16
K dac 2nch 12bit spi 
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5689_5687.pdf
$ENDCMP
#
$CMP AD5687RBCPZ
D Dual, 12-Bit nanoDAC+ with 2 ppm/°C Reference, SPI Interface, LFCSP-16
K dac 2nch 12bit spi
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5689R_5687R.pdf
$ENDCMP
#
$CMP AD5687RBRUZ
D Dual, 12-Bit nanoDAC+ with 2 ppm/°C Reference, SPI Interface, TSSOP-16
K dac 2nch 12bit spi
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5689R_5687R.pdf
$ENDCMP
#
$CMP AD5689BCPZ
D Dual, 16-Bit nanoDAC+ with SPI Interface, LFCSP-16
K dac 2nch 16bit spi
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5689_5687.pdf
$ENDCMP
#
$CMP AD5689BRUZ
D Dual, 16-Bit nanoDAC+ with SPI Interface, TSSOP-16
K dac 2nch 16bit spi
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5689_5687.pdf
$ENDCMP
#
$CMP AD5689RxCPZ
D Dual, 16-Bit nanoDAC+ with 2 ppm/°C Reference, SPI Interface, LFCSP-16
K dac 2nch 16bit spi
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5689R_5687R.pdf
$ENDCMP
#
$CMP AD5689RxRUZ
D Dual, 16-Bit nanoDAC+ with 2 ppm/°C Reference, SPI Interface, TSSOP-16
K dac 2nch 16bit spi
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5689R_5687R.pdf
$ENDCMP
#
$CMP AD5697RBCPZ
D Dual, 12-Bit nanoDAC+ with 2 ppm/°C Reference, I2C Interface, LFCSP-16
K dac 2nch 12bit i2c
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5697R.pdf
$ENDCMP
#
$CMP AD5697RBRUZ
D Dual, 12-Bit nanoDAC+ with 2 ppm/°C Reference, I2C Interface, TSSOP-16
K dac 2nch 12bit i2c
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD5697R.pdf
$ENDCMP
#
$CMP AD7171
D Single channel Analog to Digial Converter, 16-bit, differential input, 125Hz, SPI interface
K sigma delta adc spi 1ch
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD7171.pdf
$ENDCMP
#
$CMP AD7224KN
D 8bit DAC, Dual or Single Supply, DIP-18
K 8bit DAC Dual Single Supply 1ch
F http://www.analog.com/static/imported-files/data_sheets/AD7224.pdf
$ENDCMP
#
$CMP AD7224KP
D 8bit DAC, Dual or Single Supply, PLCC-20
K 8bit DAC Dual Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD7224.pdf
$ENDCMP
#
$CMP AD7224KR-1
D 8bit DAC, Dual or Single Supply, SOIC-20
K 8bit DAC Dual Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD7224.pdf
$ENDCMP
#
$CMP AD7224KR-18
D 8bit DAC, Dual or Single Supply, SOIC-18
K 8bit DAC Dual Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD7224.pdf
$ENDCMP
#
$CMP AD7224LN
D 8bit DAC, Dual or Single Supply, DIP-18
K 8bit DAC Dual Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD7224.pdf
$ENDCMP
#
$CMP AD7224LP
D 8bit DAC, Dual or Single Supply, PLCC-20
K 8bit DAC Dual Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD7224.pdf
$ENDCMP
#
$CMP AD7224LR-1
D 8bit DAC, Dual or Single Supply, SOIC-20
K 8bit DAC Dual Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD7224.pdf
$ENDCMP
#
$CMP AD7224LR-18
D 8bit DAC, Dual or Single Supply, SOIC-18
K 8bit DAC Dual Single Supply
F http://www.analog.com/static/imported-files/data_sheets/AD7224.pdf
$ENDCMP
#
$CMP AD7225BRS
D Quad 8bit DAC, Separate Reference Voltage, SSOP-24
K 8bit DAC 4CH
F http://www.analog.com/static/imported-files/data_sheets/AD7225.pdf
$ENDCMP
#
$CMP AD7225CRS
D Quad 8bit DAC, Separate Reference Voltage, SSOP-24
K 8bit DAC 4CH
F http://www.analog.com/static/imported-files/data_sheets/AD7225.pdf
$ENDCMP
#
$CMP AD7225KN
D Quad 8bit DAC, Separate Reference Voltage, PDIP-24
K 8bit DAC 4CH
F http://www.analog.com/static/imported-files/data_sheets/AD7225.pdf
$ENDCMP
#
$CMP AD7225KP
D Quad 8bit DAC, Separate Reference Voltage, PLCC-28
K 8bit DAC 4CH
F http://www.analog.com/static/imported-files/data_sheets/AD7225.pdf
$ENDCMP
#
$CMP AD7225KR
D Quad 8bit DAC, Separate Reference Voltage, SOIC-24
K 8bit DAC 4CH
F http://www.analog.com/static/imported-files/data_sheets/AD7225.pdf
$ENDCMP
#
$CMP AD7225LN
D Quad 8bit DAC, Separate Reference Voltage, PDIP-24
K 8bit DAC 4CH
F http://www.analog.com/static/imported-files/data_sheets/AD7225.pdf
$ENDCMP
#
$CMP AD7225LP
D Quad 8bit DAC, Separate Reference Voltage, PLCC-28
K 8bit DAC 4CH
F http://www.analog.com/static/imported-files/data_sheets/AD7225.pdf
$ENDCMP
#
$CMP AD7225LR
D Quad 8bit DAC, Separate Reference Voltage, SO-24
K 8bit DAC 4CH
F http://www.analog.com/static/imported-files/data_sheets/AD7225.pdf
$ENDCMP
#
$CMP AD7226BRSZ
D Quad 8bit DAC, 4 Channel, Single Reference Voltage, SSOP-20
K 4CH DAC 8bit
F http://www.analog.com/static/imported-files/data_sheets/AD7226.pdf
$ENDCMP
#
$CMP AD7226KN
D Quad 8bit DAC, 4 Channel, Single Reference Voltage, DIP-20
K 4CH DAC 8bit
F http://www.analog.com/static/imported-files/data_sheets/AD7226.pdf
$ENDCMP
#
$CMP AD7226KP
D Quad 8bit DAC, 4 Channel, Single Reference Voltage, PLCC-20
K 4CH DAC 8bit
F http://www.analog.com/static/imported-files/data_sheets/AD7226.pdf
$ENDCMP
#
$CMP AD7226KR
D Quad 8bit DAC, 4 Channel, Single Reference Voltage, SOIC-20
K 4CH DAC 8bit
F http://www.analog.com/static/imported-files/data_sheets/AD7226.pdf
$ENDCMP
#
$CMP AD7228ABN
D 8bit DAC 8 Channel, Single Reference, DIP-24
K 8bit DAC 8CH
F http://www.analog.com/static/imported-files/data_sheets/AD7228.pdf
$ENDCMP
#
$CMP AD7228ABP
D 8bit DAC 8 Channel, Single Reference, PLCC-28
K 8bit DAC 8CH
F http://www.analog.com/static/imported-files/data_sheets/AD7228.pdf
$ENDCMP
#
$CMP AD7228ABR
D 8bit DAC 8 Channel, Single Reference, SOIC-24
K 8bit DAC 8CH
F http://www.analog.com/static/imported-files/data_sheets/AD7228.pdf
$ENDCMP
#
$CMP AD7228ACN
D 8bit DAC 8 Channel, Single Reference, DIP-24
K 8bit DAC 8CH
F http://www.analog.com/static/imported-files/data_sheets/AD7228.pdf
$ENDCMP
#
$CMP AD7228ACP
D 8bit DAC 8 Channel, Single Reference, PLCC-28
K 8bit DAC 8CH
F http://www.analog.com/static/imported-files/data_sheets/AD7228.pdf
$ENDCMP
#
$CMP AD7228ACR
D 8bit DAC 8 Channel, Single Reference, SOIC-24
K 8bit DAC 8CH
F http://www.analog.com/static/imported-files/data_sheets/AD7228.pdf
$ENDCMP
#
$CMP AD7304
D 3 V/5 V, Rail-to-Rail, Quad, 8-Bit DAC, SPI Interface, SOIC-16/TSSOP-16
K dac 4ch 8bit spi
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD7304_7305.pdf
$ENDCMP
#
$CMP AD7305
D 3 V/5 V, Rail-to-Rail, Quad, 8-Bit DAC, Parallel Interface, SOIC-20/TSSOP-20
K dac 4ch 8bit parallel
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD7304_7305.pdf
$ENDCMP
#
$CMP AD7390
D Serial-Input Micropower 12-Bit DAC, DIP-8/SOIC-8/TSSOP-8
K SPI 12 bit DAC
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD7390_7391.pdf
$ENDCMP
#
$CMP AD7391
D Serial-Input Micropower 10-Bit DAC, DIP-8/SOIC-8/TSSOP-8
K SPI 10 bit DAC
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD7390_7391.pdf
$ENDCMP
#
$CMP AD7533JN
D 10bit Multiplying DAC, 1 Channel, DIP-16
K 10bit DAC 1CH
F http://www.analog.com/static/imported-files/data_sheets/AD7533.pdf
$ENDCMP
#
$CMP AD7533JP
D 10bit Multiplying DAC, 1 Channel, PLCC-20
K 10bit DAC 1CH
F http://www.analog.com/static/imported-files/data_sheets/AD7533.pdf
$ENDCMP
#
$CMP AD7533KN
D 10bit Multiplying DAC, 1 Channel, DIP-16
K 10bit DAC 1CH
F http://www.analog.com/static/imported-files/data_sheets/AD7533.pdf
$ENDCMP
#
$CMP AD7533KP
D 10bit Multiplying DAC, 1 Channel, PLCC-20
K 10bit DAC 1CH
F http://www.analog.com/static/imported-files/data_sheets/AD7533.pdf
$ENDCMP
#
$CMP AD7533KR
D 10bit Multiplying DAC, 1 Channel, SOIC-16
K 10bit DAC 1CH
F http://www.analog.com/static/imported-files/data_sheets/AD7533.pdf
$ENDCMP
#
$CMP AD7533LN
D 10bit Multiplying DAC, 1 Channel, DIP-16
K 10bit DAC 1CH
F http://www.analog.com/static/imported-files/data_sheets/AD7533.pdf
$ENDCMP
#
$CMP AD7722
D 16-Bit, 195 kSPS CMOS, Sigma-Delta ADC, MQFP-44
K adc 1ch 16bit parallel serial
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD7722.pdf
$ENDCMP
#
$CMP AD775
D DA Converter 8 bits - 20MHz, PDIP/SOIC-24
K DAC CNA
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD775.pdf
$ENDCMP
#
$CMP AD7819
D Analog to Digital 8 bits converter, PDIP/SOIC/TSSOP-16
K CAD
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD7819.pdf
$ENDCMP
#
$CMP AD9280ARS
D Video ADC (32 Mhz), SSOP-28
K ADC CAN VIDEO
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD9280.pdf
$ENDCMP
#
$CMP AD9283
D ADC 50MHz 8 bits, SSOP-20
K ADC
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD9283.pdf
$ENDCMP
#
$CMP AD9708AR
D Video DAC (32 MHz), SOIC/TSSOP-28
K DAC CNA VIDEO
F http://www.analog.com/media/en/technical-documentation/data-sheets/AD9708.pdf
$ENDCMP
#
$CMP ADC0800
D Analog to Digital 8 bits converter, DIP-18 (Hermetic)
K CAD
F http://www.ti.com/lit/ds/snas562/snas562.pdf
$ENDCMP
#
$CMP ADC08060
D Fast ADC  (20 .. 60 Mhz), TSSOP-24
K ADC CAN VIDEO
F http://www.ti.com/lit/ds/symlink/adc08060.pdf
$ENDCMP
#
$CMP ADC0832
D 2 inputs AD Converter (serial output),
K ADC CAN
F http://www.ti.com/lit/ds/symlink/adc0831-n.pdf
$ENDCMP
#
$CMP ADC1173
D Fast ADC  (15 Mhz), TSSOP-24
K ADC CAN VIDEO
F http://www.ti.com/lit/ds/symlink/adc1173.pdf
$ENDCMP
#
$CMP ADS1110
D 16 Bit Analog to Digital converter with on board reference
K 16 Bit Analog to digital converter ADC
F http://www.ti.com/lit/ds/symlink/ads1110.pdf
$ENDCMP
#
$CMP ADS1118I
D 16-bit analog to digital converter, 2 or 4 inputs, integrated temperature sensor, SPI interface
K adc spi quad double
F http://www.ti.com/lit/ds/sbas457e/sbas457e.pdf
$ENDCMP
#
$CMP ADS1120-PW
D Low-power, quad-input, 16-bit analog to digital converter, integrated temperature sensor, SPI interface, TSSOP-16 package
K adc spi
F http://www.ti.com/lit/ds/symlink/ads1120.pdf
$ENDCMP
#
$CMP ADS1120-RVA
D Low-power, quad-input, 16-bit analog to digital converter, integrated temperature sensor, SPI interface, QFN-16 package
K adc spi
F http://www.ti.com/lit/ds/symlink/ads1120.pdf
$ENDCMP
#
$CMP ADS1232IPW
D Single Bridge 24bit ADC for Sensors, TSSOP-24
K ADC 24bit Sensors Dual Channel
F http://www.ti.com/lit/ds/symlink/ads1232.pdf
$ENDCMP
#
$CMP ADS1234IPW
D Dual Bridge 24bit ADC for Sensors, TSSOP-28
K ADC 24bit Sensors Quad Channel
F http://www.ti.com/lit/ds/symlink/ads1232.pdf
$ENDCMP
#
$CMP ADS1243
D 24-bit ADC, 8 Channels, SPI compatible, PGA 1 to 128, TSSOP-20
K 24bit ADC 8 Channels PGA SPI
F http://www.ti.com/lit/ds/symlink/ads1243.pdf
$ENDCMP
#
$CMP ADS1251
D Single channel 24-bit Analog to Digital Converter, 5V supply, differential input, 20kHz, 2-wire serial interface, SOIC-8
K delta-sigma adc low-power
F http://www.ti.com/lit/ds/symlink/ads1251.pdf
$ENDCMP
#
$CMP ADS128D818
D 16-bit ADC, 8 Channels, I2C compatible, PGA 1 to 128, TSSOP-16
K 16bit ADC 8 Channels TSSOP I2C
F http://www.ti.com/lit/ds/symlink/adc128d818.pdf
$ENDCMP
#
$CMP ADS1298_TQFP
D ADS1298 Low-Power, 8-Channel, 24-Bit Analog Front-End for Biopotential Measurements, TQFP-64
K 24bit ADC 8 Channels PGA SPI Biopotential
F http://www.ti.com/lit/gpn/ads1298
$ENDCMP
#
$CMP ADS1299_TQFP
D ADS1298 Low-Power, 8-Channel, 24-Bit Analog Front-End for Biopotential Measurements, TQFP-64
K 24bit ADC 8 Channels PGA SPI Biopotential
F http://www.ti.com/lit/gpn/ads1298
$ENDCMP
#
$CMP ADS7828
D 12-Bits, 8-Channels, ADC, I2C, TSSOP-16
K I2C ADC 12Bits
F http://www.ti.com/lit/ds/symlink/ads7828.pdf
$ENDCMP
#
$CMP ADS7830
D Single-supply, 8bit, 8 ch, SAR, 70kHz SR, 2.7 - 5 VDD, I2C, TSSOP-16
K 8bit DAC 8CH
F http://www.ti.com/lit/ds/symlink/ads7830.pdf
$ENDCMP
#
$CMP ADS7843E
D Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, SSOP-16
K Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, SSOP-16
F http://www.ti.com/lit/ds/symlink/ads7843.pdf
$ENDCMP
#
$CMP ADS7843E/2K5
D Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, SSOP-16
K Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, SSOP-16
F http://www.ti.com/lit/ds/symlink/ads7843.pdf
$ENDCMP
#
$CMP ADS7843EG4
D Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, SSOP-16
K Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, SSOP-16
F http://www.ti.com/lit/ds/symlink/ads7843.pdf
$ENDCMP
#
$CMP ADS7843IDBQRQ1
D Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +125 C, QSPI, SPI, 3-wire serial interface, SSOP-16
K Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +125 C, QSPI, SPI, 3-wire serial interface, SSOP-16
F http://www.ti.com/lit/ds/symlink/ads7843-q1.pdf
$ENDCMP
#
$CMP CA3300
D Convertisseur A->D 6 bits rapide
K ADC CAN
$ENDCMP
#
$CMP DAC08
D DA Converter 8 bits
K DAC CNA
F http://www.analog.com/media/en/technical-documentation/data-sheets/DAC08.pdf
$ENDCMP
#
$CMP DAC0808_DIP
D 8-bit multiplying DAC
K 8 bit multiplying DAC
F http://www.ti.com/lit/ds/symlink/dac0808.pdf
$ENDCMP
#
$CMP DAC0808_SOIC
D 8-bit multiplying DAC
K 8 bit multiplying DAC
F http://www.ti.com/lit/ds/symlink/dac0808.pdf
$ENDCMP
#
$CMP DAC7513_DCN
D Low-Power, Rail-to-Rail Output, 12-Bit Serial Input DAC
K TI DAC 12 bit
F http://www.ti.com.cn/cn/lit/ds/symlink/dac7513.pdf
$ENDCMP
#
$CMP LTC1257
D Single Supply 12-bit DAC with Internal Reference Voltage, SOIC-8
K DAC 12-bit
F http://cds.linear.com/docs/en/datasheet/1257fc.pdf
$ENDCMP
#
$CMP LTC1406CGN
D ADC 8bit Low Power 20Msps, SSOP-24
K Low Power ADC 8bit 20Msps
F http://cds.linear.com/docs/en/datasheet/1406f.pdf
$ENDCMP
#
$CMP LTC1406IGN
D ADC 8bit Low Power 20Msps, SSOP-24
K Low Power ADC 8bit 20Msps
F http://cds.linear.com/docs/en/datasheet/1406f.pdf
$ENDCMP
#
$CMP LTC1446
D 2-Channel 12-Bit Rail-To-Rail D/A Converters with SPI Interface and Internal Reference (4.096V)
K 12-Bit DAC SPI Reference 2ch
F http://cds.linear.com/docs/en/datasheet/1446fa.pdf
$ENDCMP
#
$CMP LTC1446L
D 2-Channel 12-Bit Rail-To-Rail D/A Converters with SPI Interface and Internal Reference (2.500V)
K 12-Bit DAC SPI 2ch
F http://cds.linear.com/docs/en/datasheet/1446fa.pdf
$ENDCMP
#
$CMP LTC1594CS
D Micropower 12-bit 4 Channel ADC, Serial IO, SOIC-16
K 12bit ADC 4 Channel
F http://cds.linear.com/docs/en/datasheet/15948fb.pdf
$ENDCMP
#
$CMP LTC1594IS
D Micropower 12-bit 4 Channel ADC, Serial IO, SO-16
K 12bit ADC 4 Channel
F http://cds.linear.com/docs/en/datasheet/15948fb.pdf
$ENDCMP
#
$CMP LTC1598CG
D Micropower 12-bit 8 Channel ADC, Serial IO, SSOP-24
K 12bit ADC 4 Channel
F http://cds.linear.com/docs/en/datasheet/15948fb.pdf
$ENDCMP
#
$CMP LTC1598IG
D Micropower 12-bit 8 Channel ADC, Serial IO, SSOP-24
K 12bit ADC 4 Channel
F http://cds.linear.com/docs/en/datasheet/15948fb.pdf
$ENDCMP
#
$CMP LTC1664CGN
D Quad Micropower 10-bit DAC, Standard, SSOP-16
K Quad DAC Micropower 10bit 4ch
F http://cds.linear.com/docs/Datasheet/1664fa.pdf
$ENDCMP
#
$CMP LTC1664CN
D Quad Micropower 10-bit DAC, Standard, DIP-16
K Quad DAC Micropower 10bit 4ch
F http://cds.linear.com/docs/Datasheet/1664fa.pdf
$ENDCMP
#
$CMP LTC1664IGN
D Quad Micropower 10-bit DAC, Industrial, SSOP-16
K Quad DAC Micropower 10bit 4ch
F http://cds.linear.com/docs/Datasheet/1664fa.pdf
$ENDCMP
#
$CMP LTC1664IN
D Quad Micropower 10-bit DAC, Industrial, DIP-16
K Quad DAC Micropower 10bit 4ch
F http://cds.linear.com/docs/Datasheet/1664fa.pdf
$ENDCMP
#
$CMP LTC1864
D Single channel 16-bit Analog to Digial Converter, 5V supply, differential input, 150ksps, SPI interface
K sigma-delta adc spi 1ch
F http://cds.linear.com/docs/en/datasheet/18645fb.pdf
$ENDCMP
#
$CMP LTC1864L
D Single channel 16-bit Analog to Digial Converter, 3V supply, differential input, 150ksps, SPI interface
K sigma-delta adc spi 1ch
F http://cds.linear.com/docs/en/datasheet/18645lfs.pdf
$ENDCMP
#
$CMP LTC1865-MS
D Dual channel 16-bit Analog to Digital Converter, 5V supply, 150ksps, SPI interface
K sigma-delta adc 2ch
F http://cds.linear.com/docs/en/datasheet/18645fb.pdf
$ENDCMP
#
$CMP LTC1865-S8
D Dual channel 16-bit Analog to Digital Converter, 5V supply, 150ksps, SPI interface
K sigma-delta adc 2ch
F http://cds.linear.com/docs/en/datasheet/18645fb.pdf
$ENDCMP
#
$CMP LTC1865L-MS
D Dual channel 16-bit Analog to Digital Converter, 3V supply, 150ksps, SPI interface
K sigma-delta adc 2ch
F http://cds.linear.com/docs/en/datasheet/18645lfs.pdf
$ENDCMP
#
$CMP LTC1865L-S8
D Dual channel 16-bit Analog to Digital Converter, 3V supply, 150ksps, SPI interface
K sigma-delta adc 2ch
F http://cds.linear.com/docs/en/datasheet/18645lfs.pdf
$ENDCMP
#
$CMP LTC2309_QFN
D 8 Channels, 12-Bit SAR ADC, I2C interface, QFN-24 package
K LT ADC 12bit I2C SAR QFN
F http://cds.linear.com/docs/en/datasheet/2309fd.pdf
$ENDCMP
#
$CMP LTC2309_TSSOP
D 8 Channels, 12-Bit SAR ADC, I2C interface, TSSOP-20 package
K LT ADC 12bit I2C SAR TSSOP
F http://cds.linear.com/docs/en/datasheet/2309fd.pdf
$ENDCMP
#
$CMP LTC2508CDKD-32
D 32-Bit Oversampling ADC with Configurable Digital Filter, 0°0C to 70°C, DFN-24 package
K LT ADC 32bit
F http://cds.linear.com/docs/en/datasheet/250832fa.pdf
$ENDCMP
#
$CMP LTC2508IDKD-32
D 32-Bit Oversampling ADC with Configurable Digital Filter, -40°C to 85°C, DFN-24 package
K LT ADC 32bit
F http://cds.linear.com/docs/en/datasheet/250832fa.pdf
$ENDCMP
#
$CMP MAX11614
D 8-channel single-ended or 4-channel, differential, 12-bit ADC, I2C, 4.096V internal reference, 16-QSOP package
K adc i2c 8ch
F https://datasheets.maximintegrated.com/en/ds/MAX11612-MAX11617.pdf
$ENDCMP
#
$CMP MAX11615
D 8-channel single-ended or 4-channel, differential, 12-bit ADC, I2C, 2.048V internal reference, 16-QSOP package
K adc i2c 8ch
F https://datasheets.maximintegrated.com/en/ds/MAX11612-MAX11617.pdf
$ENDCMP
#
$CMP MAX11616
D 12-channel single-ended or 6-channel, differential, 12-bit ADC, I2C, 4.096V internal reference, 16-QSOP package
K adc i2c 12ch
F https://datasheets.maximintegrated.com/en/ds/MAX11612-MAX11617.pdf
$ENDCMP
#
$CMP MAX11617
D 12-channel single-ended or 6-channel, differential, 12-bit ADC, I2C, 2.048V internal reference, 16-QSOP package
K adc i2c 12ch
F https://datasheets.maximintegrated.com/en/ds/MAX11612-MAX11617.pdf
$ENDCMP
#
$CMP MAX1274
D 1.8Msps, Single-Supply, Low-Power, True-Differential, 12-Bit ADCs, bipolar input
K 12bit ADC 1CH diff differential
F https://datasheets.maximintegrated.com/en/ds/MAX1274-MAX1275.pdf
$ENDCMP
#
$CMP MAX1275
D 1.8Msps, Single-Supply, Low-Power, True-Differential, 12-Bit ADCs, unipolar input
K 12bit ADC 1CH diff differential
F https://datasheets.maximintegrated.com/en/ds/MAX1274-MAX1275.pdf
$ENDCMP
#
$CMP MAX5138
D Low-Power, Single, 16-Bit, Buffered Voltage-Output DAC
K 16-bit DAC 1CH
F https://datasheets.maximintegrated.com/en/ds/MAX5138-MAX5139.pdf
$ENDCMP
#
$CMP MAX5139
D Low-Power, Single, 12-Bit, Buffered Voltage-Output DAC
K 12-bit DAC 1CH
F https://datasheets.maximintegrated.com/en/ds/MAX5138-MAX5139.pdf
$ENDCMP
#
$CMP MC1408_DIP
D 8-bit multiplying DAC
K 8 bit multiplying DAC
F http://www.pinballpcb.com/datasheets/OnMC1408-dac.pdf
$ENDCMP
#
$CMP MC1408_SOIC
D 8-bit multiplying DAC
K 8 bit multiplying DAC
F http://www.pinballpcb.com/datasheets/OnMC1408-dac.pdf
$ENDCMP
#
$CMP MCP3002
D Dual Channel 10-Bit A/D Converter with SPI Serial Interface
K Dual Channel 10-Bit ADC SPI 2CH
F http://ww1.microchip.com/downloads/en/DeviceDoc/21294E.pdf
$ENDCMP
#
$CMP MCP3004
D 4-Channel 10-Bit A/D Converters with SPI Interface
K 10-Bit ADC SPI 4CH
F http://ww1.microchip.com/downloads/en/DeviceDoc/21295C.pdf
$ENDCMP
#
$CMP MCP3008
D A/D Converter, 10-Bit, 8-Channel, SPI Interface , 2.7V-5.5V
K 12bit ADC Reference Single Supply SPI 8CH
F http://ww1.microchip.com/downloads/en/DeviceDoc/21295d.pdf
$ENDCMP
#
$CMP MCP3204
D A/D Converter, 12-Bit, 4-Channel, SPI Interface, 2.7V-5.5V
K 12bit ADC Reference Single Supply SPI 4ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/21298c.pdf
$ENDCMP
#
$CMP MCP3208
D A/D Converter, 12-Bit, 8-Channel, SPI Interface , 2.7V-5.5V
K 12bit ADC Reference Single Supply SPI 8ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/21298c.pdf
$ENDCMP
#
$CMP MCP3301
D 13-Bit Differential Input, Low Power A/D Converter with SPI Interface
K 13-Bit Differential ADC SPI  1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/21700D.pdf
$ENDCMP
#
$CMP MCP3421A0T-E/CH
D Single Delta-Sigma 18bit Analog to Digital Converter, I2C Interface, SOT-23-6
K Sigma-Delta ADC Converter 18bit I2C 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22003e.pdf
$ENDCMP
#
$CMP MCP3422
D 2-Channel, 18-Bit, Delta-Sigma AD-Converter, I²C Interface, Reference
K 18-Bit ADC I2C IIC I²C Delta-Sigma-ADC Delta-Sigma-ADC Reference 2ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22088c.pdf
$ENDCMP
#
$CMP MCP3423
D 2-Channel, 18-Bit, Delta-Sigma AD-Converter, I²C Interface, Reference, MSOP
K 18-Bit ADC I2C IIC I²C Delta-Sigma-ADC Delta-Sigma-ADC Reference 2ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22088c.pdf
$ENDCMP
#
$CMP MCP3424
D 4-Channel, 18-Bit, Delta-Sigma AD-Converter, I²C Interface, Reference
K 18-Bit ADC I2C IIC I²C Delta-Sigma-ADC Delta-Sigma-ADC Reference 4ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22088c.pdf
$ENDCMP
#
$CMP MCP3425A0T-E/CH
D Single Delta-Sigma 16bit Analog to Digital Converter, I2C Interface, SOT-23-6
K Sigma-Delta ADC Converter 16bit I2C  1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22072b.pdf
$ENDCMP
#
$CMP MCP3425A1T-E/CH
D Single Delta-Sigma 16bit Analog to Digital Converter, I2C Interface, SOT-23-6
K Sigma-Delta ADC Converter 16bit I2C 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22072b.pdf
$ENDCMP
#
$CMP MCP3425A2T-E/CH
D Single Delta-Sigma 16bit Analog to Digital Converter, I2C Interface, SOT-23-6
K Sigma-Delta ADC Converter 16bit I2C 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22072b.pdf
$ENDCMP
#
$CMP MCP3425A3T-E/CH
D Single Delta-Sigma 16bit Analog to Digital Converter, I2C Interface, SOT-23-6
K Sigma-Delta ADC Converter 16bit I2C 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22072b.pdf
$ENDCMP
#
$CMP MCP3426-xMC
D 16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I2C Interface and On-Board Reference, DFN-8
K adc 2ch 16bit i2c
F http://ww1.microchip.com/downloads/en/DeviceDoc/22226a.pdf
$ENDCMP
#
$CMP MCP3426-xMS
D 16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I2C Interface and On-Board Reference, MSOP-8
K adc 2ch 16bit i2c
F http://ww1.microchip.com/downloads/en/DeviceDoc/22226a.pdf
$ENDCMP
#
$CMP MCP3426-xSN
D 16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I2C Interface and On-Board Reference, SOIC-8
K adc 2ch 16bit i2c
F http://ww1.microchip.com/downloads/en/DeviceDoc/22226a.pdf
$ENDCMP
#
$CMP MCP3427-xMF
D 16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I2C Interface and On-Board Reference, DFN-10
K adc 2ch 16bit i2c
F http://ww1.microchip.com/downloads/en/DeviceDoc/22226a.pdf
$ENDCMP
#
$CMP MCP3427-xUN
D 16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I2C Interface and On-Board Reference, MSOP-10
K adc 2ch 16bit i2c
F http://ww1.microchip.com/downloads/en/DeviceDoc/22226a.pdf
$ENDCMP
#
$CMP MCP3428
D 16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I2C Interface and On-Board Reference, SOIC-14/TSSOP-14
K adc 4ch 16bit i2c
F http://ww1.microchip.com/downloads/en/DeviceDoc/22226a.pdf
$ENDCMP
#
$CMP MCP3550-50-E/MS
D Single Delta-Sigma 22bit Analog to Digital Converter, SPI Interface, 50Hz Rejection, MSOP-8
K Sigma-Delta ADC Converter 22bit SPI 1ch
F http://ww1.microchip.com/downloads/en/devicedoc/21950c.pdf
$ENDCMP
#
$CMP MCP3550-60-E/SN
D Single Delta-Sigma 22bit Analog to Digital Converter, SPI Interface, 60Hz Rejection, MSOP-8
K Sigma-Delta ADC Converter 22bit SPI 1ch
F http://ww1.microchip.com/downloads/en/devicedoc/21950c.pdf
$ENDCMP
#
$CMP MCP3551-E/MS
D Single Delta-Sigma 22bit Analog to Digital Converter, SPI Interface, MSOP-8
K Sigma-Delta ADC Converter 22bit SPI 1ch
F http://ww1.microchip.com/downloads/en/devicedoc/21950c.pdf
$ENDCMP
#
$CMP MCP3553-E/SN
D Single Delta-Sigma 22bit Analog to Digital Converter, SPI Interface, MSOP-8
K Sigma-Delta ADC Converter 22bit SPI 1ch
F http://ww1.microchip.com/downloads/en/devicedoc/21950c.pdf
$ENDCMP
#
$CMP MCP4728
D 12-bit digital to analog converter, quad output, 2.048V internal reference, integrated EEPROM, I2C interface
K dac i2c
F http://ww1.microchip.com/downloads/en/DeviceDoc/22187E.pdf
$ENDCMP
#
$CMP MCP4801
D 8-Bit D/A Converters with SPI Interface, internal Reference (2.048V)
K 8-Bit DAC SPI Reference 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22244B.pdf
$ENDCMP
#
$CMP MCP4801-E/MC
D 8-Bit D/A Converters with SPI Interface, internal Reference (2.048V)
K 8-Bit DAC SPI Reference 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22244B.pdf
$ENDCMP
#
$CMP MCP4802
D 2-Channel 8-Bit D/A Converters with SPI Interface and Internal Reference (2.048V)
K 8-Bit DAC SPI Reference 2ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002249B.pdf
$ENDCMP
#
$CMP MCP4811
D 10-Bit D/A Converters with SPI Interface, internal Reference (2.048V)
K 10-Bit DAC SPI Reference 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22244B.pdf
$ENDCMP
#
$CMP MCP4811-E/MC
D 10-Bit D/A Converters with SPI Interface, internal Reference (2.048V)
K 10-Bit DAC SPI Reference 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22244B.pdf
$ENDCMP
#
$CMP MCP4812
D 2-Channel 10-Bit D/A Converters with SPI Interface and Internal Reference (2.048V)
K 10-Bit DAC SPI Reference 2ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002249B.pdf
$ENDCMP
#
$CMP MCP4821
D 12-Bit D/A Converters with SPI Interface, internal Reference (2.048V)
K 12-Bit DAC SPI Reference 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22244B.pdf
$ENDCMP
#
$CMP MCP4821-E/MC
D 12-Bit D/A Converters with SPI Interface, internal Reference (2.048V)
K 12-Bit DAC SPI Reference 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22244B.pdf
$ENDCMP
#
$CMP MCP4822
D 2-Channel 12-Bit D/A Converters with SPI Interface and Internal Reference (2.048V)
K 12-Bit DAC SPI Reference 2ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002249B.pdf
$ENDCMP
#
$CMP MCP4901
D 8-Bit D/A Converters with SPI Interface
K 8-Bit DAC SPI  1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22248a.pdf
$ENDCMP
#
$CMP MCP4901-E/MC
D 8-Bit D/A Converters with SPI Interface
K 8-Bit DAC SPI  1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22248a.pdf
$ENDCMP
#
$CMP MCP4902
D 2-Channel 8-Bit D/A Converters with SPI Interface
K 8-Bit DAC SPI  2ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22250A.pdf
$ENDCMP
#
$CMP MCP4911
D 10-Bit D/A Converters with SPI Interface
K 10-Bit DAC SPI 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22248a.pdf
$ENDCMP
#
$CMP MCP4911-E/MC
D 10-Bit D/A Converters with SPI Interface
K 10-Bit DAC SPI  1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22248a.pdf
$ENDCMP
#
$CMP MCP4912
D 2-Channel 10-Bit D/A Converters with SPI Interface
K 10-Bit DAC SPI 2ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22250A.pdf
$ENDCMP
#
$CMP MCP4921
D 12-Bit D/A Converters with SPI Interface
K 12-Bit DAC SPI 1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22248a.pdf
$ENDCMP
#
$CMP MCP4921-E/MC
D 12-Bit D/A Converters with SPI Interface
K 12-Bit DAC SPI  1ch
F http://ww1.microchip.com/downloads/en/DeviceDoc/22248a.pdf
$ENDCMP
#
$CMP MCP4921-E/MS
D Single 12-bit Digital to Analog Converter, SPI Interface, MSOP-8
K Single DAC 1ch 12bit SPI
F http://ww1.microchip.com/downloads/en/devicedoc/21897a.pdf
$ENDCMP
#
$CMP MCP4921-E/P
D Single 12-bit Digital to Analog Converter, SPI Interface, PDIP-8
K Single DAC 1ch 12bit SPI
F http://ww1.microchip.com/downloads/en/devicedoc/21897a.pdf
$ENDCMP
#
$CMP MCP4921-E/SN
D Single 12-bit Digital to Analog Converter, SPI Interface, SOIC-8
K Single DAC 1ch 12bit SPI
F http://ww1.microchip.com/downloads/en/devicedoc/21897a.pdf
$ENDCMP
#
$CMP MCP4922
D 2-Channel 12-Bit D/A Converters with SPI Interface
K 12-Bit DAC SPI 2CH
F http://ww1.microchip.com/downloads/en/DeviceDoc/22250A.pdf
$ENDCMP
#
$CMP MCP4922-E/P
D Dual 12-bit Digital to Analog Converter, SPI Interface, PDIP-14
K Dual DAC 1ch 12bit SPI
F http://ww1.microchip.com/downloads/en/devicedoc/21897a.pdf
$ENDCMP
#
$CMP MCP4922-E/SL
D Dual 12-bit Digital to Analog Converter, SPI Interface, SOIC-14
K Dual DAC 1ch 12bit SPI
F http://ww1.microchip.com/downloads/en/devicedoc/21897a.pdf
$ENDCMP
#
$CMP MCP4922-E/ST
D Dual 12-bit Digital to Analog Converter, SPI Interface, TSSOP-14
K Dual DAC 1ch 12bit SPI
F http://ww1.microchip.com/downloads/en/devicedoc/21897a.pdf
$ENDCMP
#
$CMP PT2399
D Echo Processor IC
K CMOS ADC DAC 44K Digital processing VCO
F http://sound.westhost.com/pt2399.pdf
$ENDCMP
#
$CMP TDA8702
D 8bit Video DAC (32 MHz), DIP-16
K DAC CNA VIDEO
F philips/tda8702.pdf
$ENDCMP
#
$CMP TDA8702T
D 8bit Video DAC (32 MHz), SOIC-16
K DAC CNA VIDEO
F philips/tda8702.pdf
$ENDCMP
#
$CMP TDC1408
D TDC1408
$ENDCMP
#
$CMP TLV5627CD
D 4-Channel DAC, 8bit, w/ Power Down, SOIC-16
K DAC 4CH 8bit
F http://www.ti.com/lit/ds/symlink/tlv5627.pdf
$ENDCMP
#
$CMP TLV5627CPW
D 4-Channel DAC, 8bit, w/ Power Down, TSSOP-16
K DAC 4CH 8bit
F http://www.ti.com/lit/ds/symlink/tlv5627.pdf
$ENDCMP
#
$CMP UVC3100
D High Speed 30MHz Flash 8-bit ADC 10MHz 10-bit DAC, For CCD Digitizers
K 8bit ADC 10bit DAC CCD
$ENDCMP
#
$CMP UVC3101
D High Speed 30MHz Flash 8-bit ADC 10MHz 10-bit DAC, For CCD Digitizers
K 8bit ADC 10bit DAC CCD
$ENDCMP
#
$CMP XPT2046QF
D Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, QFN-16
K Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, QFN-16
F http://www.xptek.com.cn/uploadfile/download/201707171401161883.pdf
$ENDCMP
#
$CMP XPT2046TS
D Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, TSSOP-16
K Single-supply, 12bit, 4 ch, touch screen driver, 2.2 - 5.25 VDD, -40 to +85 C, QSPI, SPI, 3-wire serial interface, TSSOP-16
F http://www.xptek.com.cn/uploadfile/download/201707171401161883.pdf
$ENDCMP
#
#End Doc Library