entry : usbDevices.entrySet()) {
device = entry.getValue();
int deviceVID = device.getVendorId();
int devicePID = device.getProductId();
if (deviceVID != 0x1d6b && (devicePID != 0x0001 && devicePID != 0x0002 && devicePID != 0x0003) && deviceVID != 0x5c6 && devicePID != 0x904c) {
// There is a device connected to our Android device. Try to open it as a Serial Port.
requestUserPermission();
keep = false;
} else {
connection = null;
device = null;
}
if (!keep)
break;
}
if (!keep) {
// There is no USB devices connected (but usb host were listed). Send an intent to MainActivity.
Intent intent = new Intent(ACTION_NO_USB);
sendBroadcast(intent);
}
} else {
// There is no USB devices connected. Send an intent to MainActivity
Intent intent = new Intent(ACTION_NO_USB);
sendBroadcast(intent);
}
}
private void setFilter() {
IntentFilter filter = new IntentFilter();
filter.addAction(ACTION_USB_PERMISSION);
filter.addAction(ACTION_USB_DETACHED);
filter.addAction(ACTION_USB_ATTACHED);
registerReceiver(usbReceiver, filter);
}
/*
* Request user permission. The response will be received in the BroadcastReceiver
*/
private void requestUserPermission() {
PendingIntent mPendingIntent = PendingIntent.getBroadcast(this, 0, new Intent(ACTION_USB_PERMISSION), 0);
usbManager.requestPermission(device, mPendingIntent);
}
public class UsbBinder extends Binder {
public UsbService getService() {
return UsbService.this;
}
}
/*
* A simple thread to open a serial port.
* Although it should be a fast operation. moving usb operations away from UI thread is a good thing.
*/
private class ConnectionThread extends Thread {
@Override
public void run() {
serialPort = UsbSerialDevice.createUsbSerialDevice(device, connection);
if (serialPort != null) {
if (serialPort.open()) {
serialPortConnected = true;
if (BAUD_RATE>921600) setBaudRateLinux(BAUD_RATE); // ACH
else serialPort.setBaudRate(BAUD_RATE);
serialPort.setDataBits(UsbSerialInterface.DATA_BITS_8);
serialPort.setStopBits(UsbSerialInterface.STOP_BITS_1);
serialPort.setParity(UsbSerialInterface.PARITY_NONE);
/*
* Current flow control Options:
* UsbSerialInterface.FLOW_CONTROL_OFF
* UsbSerialInterface.FLOW_CONTROL_RTS_CTS only for CP2102 and FT232
* UsbSerialInterface.FLOW_CONTROL_DSR_DTR only for CP2102 and FT232
*/
serialPort.setFlowControl(UsbSerialInterface.FLOW_CONTROL_OFF);
serialPort.read(mCallback);
serialPort.getCTS(ctsCallback);
serialPort.getDSR(dsrCallback);
//
// Some Arduinos would need some sleep because firmware wait some time to know whether a new sketch is going
// to be uploaded or not
//Thread.sleep(2000); // sleep some. YMMV with different chips.
// Everything went as expected. Send an intent to MainActivity
Intent intent = new Intent(ACTION_USB_READY);
context.sendBroadcast(intent);
} else {
// Serial port could not be opened, maybe an I/O error or if CDC driver was chosen, it does not really fit
// Send an Intent to Main Activity
if (serialPort instanceof CDCSerialDevice) {
Intent intent = new Intent(ACTION_CDC_DRIVER_NOT_WORKING);
context.sendBroadcast(intent);
} else {
Intent intent = new Intent(ACTION_USB_DEVICE_NOT_WORKING);
context.sendBroadcast(intent);
}
}
} else {
// No driver for given device, even generic CDC driver could not be loaded
Intent intent = new Intent(ACTION_USB_NOT_SUPPORTED);
context.sendBroadcast(intent);
}
}
}
}
================================================
FILE: android/example/src/main/res/drawable/ic_launcher_background.xml
================================================
================================================
FILE: android/example/src/main/res/layout/activity_main.xml
================================================
================================================
FILE: android/example/src/main/res/layout-land/activity_main.xml
================================================
================================================
FILE: android/example/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
================================================
================================================
FILE: android/example/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
================================================
================================================
FILE: android/example/src/main/res/values/dimens.xml
================================================
16dp
16dp
================================================
FILE: android/example/src/main/res/values/strings.xml
================================================
Haasoscope
Hello world!
Settings
Serial Port
Send
command
button down
button_up
share
pause
-1
================================================
FILE: android/example/src/main/res/values/styles.xml
================================================
================================================
FILE: android/example/src/main/res/values-w820dp/dimens.xml
================================================
64dp
================================================
FILE: android/gradle/wrapper/gradle-wrapper.properties
================================================
#Tue Jun 05 04:37:02 EDT 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
================================================
FILE: android/gradle.properties
================================================
VERSION_NAME=1.0.4
VERSION_CODE=1
ANDROID_BUILD_MIN_SDK_VERSION=12
ANDROID_BUILD_TARGET_SDK_VERSION=27
ANDROID_BUILD_SDK_VERSION=27
================================================
FILE: android/settings.gradle
================================================
include ':example'
================================================
FILE: dockerfiles/README-Docker.md
================================================
# Run Haasoscope in a Container
Containers provide isolated environments, similar to VMs, but lighter weight, and with performance closer to the native machine they run on. Containers start quickly from an efficient layered image which provides an identical environment each time the container starts. This solves the "it worked on my machine" issues that often plague development due to differences between versions of the tools or libraries on different machines. Used properly, they are ideal for building software as part of a continuous integration environment, or deploying software as part of a continuous deployment system (CI/CD.) Today, Docker is the defacto container ecosystem, which means there are lots of resources for learning Docker, and lots of people familiar with it. The Dockerfile used to build a container image can be quite simple, and therefore it also provides a form of executable documentation on what is required to build and/or install a piece of software. A great place to start is the Docker website, which provides links to tutorials and documentation:
https://www.docker.com/why-docker
Containers allow you to run or test software without installing it. This allows you to test new versions or old versions without messing with the version you have installed natively on your machine. In fact, you can run the software without installing any version natively on your machine.
## Building a container image to run the HaasoscopeQt.py application
The following command will create a container locally named
"haasoscope" that can be used to run the HaasocopeQt.py graphical
tool:
```
docker build -t haasoscope -f haasoscope.docker
```
The [haasoscope.sh](./haasoscope.sh) script may be used to run
HaasoscopeQt.py once the above "haasoscope" container is built:
```
./haasoscope.sh
```
This script attempts to map the Haasoscope USB devices, X-Windows
display socket, and the `../software/` directory into the container
prior to running HaasoscopeQt.py. It may be necessary to copy and
modify this script to work on your machine. See the script for
details.
## Building a container image for the Intel Quartus FPGA software
The Quartus software is used to compile the FPGA firmware. It can
also be used to program that firmware into the Haasoscope hardware.
The following command will create a container locally named
"quartus" that can be used to run the Quartus tool:
```
docker build -t quartus -f quartus.docker
```
Important! Building this container involves a download of over 6GB and
the full installation requires around 25GB of disk space!
Once the container is built one can run the Quartus GUI in the
container. See the [quartus.sh](./quartus.sh) file for details. For
example:
```
./quartus.sh
```
It is also possible to run an FPGA simulation and compilation from the
command line:
```
./quartus_compile.sh
```
The firmware image can also be uploaded to the Haasoscope hardware
from the command line:
```
./quartus_flash.sh
```
The above scripts are examples - it may be necessary to copy and
modify these scripts for your machine.
================================================
FILE: dockerfiles/haasoscope.docker
================================================
# This is a dockerfile for building and running HaasoscopeQt.py
#
# Build the docker container with something like:
# docker build -t haasoscope -f haasoscope.docker
# See haasoscope.sh for information on running the container.
FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
dumb-init build-essential \
python3-pip \
gfortran \
libatlas-base-dev \
libblas3 \
liblapack3 \
liblapack-dev \
libblas-dev \
libhdf5-dev \
libgl1-mesa-glx \
libqt5x11extras5 \
libusb-1.0-0 && \
rm -rf /var/lib/apt/lists/*
# Create python virtual environment
RUN pip3 install pyserial==3.5 numpy==1.23.5 scipy==1.9.3 \
matplotlib==3.6.2 h5py==3.7.0 \
Qt.py==1.3.7 pyqtgraph==0.13.1 PySide2==5.15.2.1 pyftdi==0.54.0
# Use dumb-init as entry point (for proper Unix singal handling)
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
================================================
FILE: dockerfiles/haasoscope.sh
================================================
#!/bin/bash
# This is an example script for running HaasoscopeQt.py in a docker
# container. This is an example - you may need to copy this file and
# modify it so that it works in your environment.
#
# Prior to running this script, the docker image should have been
# created with something like:
# docker build -t haasoscope -f haasoscope.docker
# Map main USB port into container
U1="/dev/serial/by-id/usb-1a86_USB2.0-Serial-if00-port0"
DPARAM="--device=${U1}"
# Map ft232h USB port into container (if found)
U2=( /dev/serial/by-id/usb-FTDI_Haasoscope_USB2_*-if00-port0 )
if [ -e "${U2}" ]; then
DPARAM="${DPARAM} --device=${U2}"
fi
# Map x-windows socket into container
DPARAM="${DPARAM} -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=${DISPLAY}"
# If passing the x-windows socket doesn't work, then the following may
# work instead:
#xhost +localhost
#DPARAM="${DPARAM} --net=host -e DISPLAY=host.docker.internal:0"
# Obtain directory of the haasoscope software (based on the location
# of this script) and map the local "software/" directory to /haasoscope .
SRCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )"/.. && pwd )"
DPARAM="${DPARAM} -v ${SRCDIR}/software:/haasoscope -w /haasoscope"
# Run HaasoscopeQt.py in container
docker run -it --rm ${DPARAM} localhost/haasoscope python3 HaasoscopeQt.py "$@"
# If "xhost +localhost" was used above then reenable security here.
#xhost -localhost
================================================
FILE: dockerfiles/quartus.docker
================================================
# This is a dockerfile for installing and running the Intel Quartus
# fpga design tool (version 22.1).
#
# Build this docker container with something like:
# docker build -t quartus -f quartus.docker
#
# Important! The Quartus software is over 6GB to download and the
# installation size is ~25GB!
#
# See quartus.sh, quartus_compile.sh, and quartus_flash.sh for
# information on running the container.
FROM ubuntu:20.04
ARG QUARTUS_URL=https://downloads.intel.com/akdlm/software/acdsinst/22.1std/915/ib_tar/Quartus-lite-22.1std.0.915-linux.tar
# First, get wget so we can download Quartus
RUN apt-get update && apt-get install -y wget
# Make an install directory, download Quartus and extract Quartus into it.
RUN mkdir quartus_install \
&& wget ${QUARTUS_URL} -O quartus.tar \
&& tar -C quartus_install -xf quartus.tar \
&& rm quartus.tar
# Define items we don't need in the image. By default, we turn off
# help and update to keep the image small. The following are valid
# options: quartus quartus_help devinfo arria_lite cyclone cyclone10lp
# cyclonev max max10 quartus_update
ARG QUARTUS_DISABLED="quartus_help,quartus_update"
# Run the Quartus installer and cleanup the install directory when done
RUN quartus_install/setup.sh --mode unattended --accept_eula 1 --installdir /quartus --disable-components ${QUARTUS_DISABLED}\
&& rm -rf quartus_install
# Install packages necessary for Quartus to work
RUN apt-get update && apt-get install -y --no-install-recommends \
libglib2.0-0 \
libpng-dev \
libfreetype6 \
libsm6 \
libxrender1 \
libfontconfig1 \
libxext6 \
# for installing locales
locales \
# java needed for platform designer / qsys
default-jre \
# needed for normal init environment
dumb-init \
# Generate the en_US locale
&& echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \
&& locale-gen en_US.UTF-8 \
&& update-locale LANG=en_US.UTF-8 \
# cleanup apt-list
&& rm -rf /var/lib/apt/lists/*
# Set environment so Quartus is in the path
ENV PATH="${PATH}:/quartus/quartus/bin"
# Force en_US.UTF8
ENV LC_ALL="en_US.UTF-8"
# Use dumb-init as an entry point (for proper Unix signal handling)
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
================================================
FILE: dockerfiles/quartus.sh
================================================
#!/bin/bash
# This is an example script for running the "Quartus" graphical
# interface in a docker container. This is an example - you may need
# to copy this file and modify it so that it works in your
# environment.
#
# Prior to running this script, the docker image should have been
# created with something like:
# docker build -t quartus -f quartus.docker
# Map x-windows socket into container
DPARAM="-v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=${DISPLAY}"
# If passing the x-windows socket doesn't work, then the following may
# work instead:
#xhost +localhost
#DPARAM="${DPARAM} --net=host -e DISPLAY=host.docker.internal:0"
# Obtain directory of the haasoscope software (based on the location
# of this script) and map the local firmware directory to /project .
SRCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )"/.. && pwd )"
DPARAM="${DPARAM} -v ${SRCDIR}/max10_adc_firmware:/project -w /project"
# Run Quartus in container
docker run -it --rm ${DPARAM} localhost/quartus quartus serial1.qpf "$@"
# If "xhost +localhost" was used above then reenable security here.
#xhost -localhost
================================================
FILE: dockerfiles/quartus_compile.sh
================================================
#!/bin/bash
# This is an example script for compiling the firmware using the
# "Quartus" software in a docker container. This is an example - you
# may need to copy this file and modify it so that it works in your
# environment.
#
# Prior to running this script, the docker image should have been
# created with something like:
# docker build -t quartus -f quartus.docker
# Obtain directory of the haasoscope software (based on the location
# of this script) and map the local firmware directory to /project .
SRCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )"/.. && pwd )"
DPARAM="-v ${SRCDIR}/max10_adc_firmware:/project -w /project"
# Run Quartus compiler in container
docker run -it --rm ${DPARAM} localhost/quartus quartus_sh --flow compile serial1.qpf
================================================
FILE: dockerfiles/quartus_flash.sh
================================================
#!/bin/bash
# This is an example script for uploading new code to an fpga using
# the "Quartus" software in a docker container. This is an example -
# you may need to copy this file and modify it so that it works in
# your environment.
#
# Prior to running this script, the docker image should have been
# created with something like:
# docker build -t quartus -f quartus.docker
# Map "USB Blaster" into container
USBBLASTER_VIDPID="09fb:6001"
BD="`lsusb -d ${USBBLASTER_VIDPID}`" # "Bus 003 Device 043: ..."
BUS="${BD:4:3}"
DEV="${BD:15:3}"
DPARAM="--device=/dev/bus/usb/${BUS}/${DEV}"
# Obtain directory of the haasoscope software (based on the location
# of this script) and map the local firmware directory to /project .
SRCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )"/.. && pwd )"
DPARAM="${DPARAM} -v ${SRCDIR}/max10_adc_firmware:/project -w /project"
# Run Quartus in container
docker run -it --rm ${DPARAM} localhost/quartus bash -c 'quartus_pgm -l && quartus_pgm -m jtag -o "p;output_files/serial1.sof"'
================================================
FILE: eagle/Seeed_AllPCB_MacroFab_haas6mil.dru
================================================
description[en] = \n\n\n\n\n\n\n\nEAGLE Design Rules \n\nThe default Design Rules have been set to cover\na wide range of applications. Your particular design\nmay have different requirements, so please make the\nnecessary adjustments and save your customized\ndesign rules under a new name.\n
layerSetup = (1*2*15*16)
mtCopper = 0.035mm 0.0175mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.0175mm 0.035mm
mtIsolate = 0.2mm 0.3mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm
mdWireWire = 6mil
mdWirePad = 6mil
mdWireVia = 6mil
mdPadPad = 6mil
mdPadVia = 6mil
mdViaVia = 6mil
mdSmdPad = 0mil
mdSmdVia = 0mil
mdSmdSmd = 0mil
mdViaViaSameLayer = 8mil
mnLayersViaInSmd = 2
mdCopperDimension = 6mil
mdDrill = 6mil
mdSmdStop = 0mil
msWidth = 6mil
msDrill = 12mil
msMicroVia = 12mil
msBlindViaRatio = 0.500000
rvPadTop = 0.250000
rvPadInner = 0.250000
rvPadBottom = 0.250000
rvViaOuter = 0.250000
rvViaInner = 0.250000
rvMicroViaOuter = 0.250000
rvMicroViaInner = 0.250000
rlMinPadTop = 6mil
rlMaxPadTop = 20mil
rlMinPadInner = 6mil
rlMaxPadInner = 20mil
rlMinPadBottom = 6mil
rlMaxPadBottom = 20mil
rlMinViaOuter = 6mil
rlMaxViaOuter = 20mil
rlMinViaInner = 6mil
rlMaxViaInner = 20mil
rlMinMicroViaOuter = 6mil
rlMaxMicroViaOuter = 20mil
rlMinMicroViaInner = 6mil
rlMaxMicroViaInner = 20mil
psTop = -1
psBottom = -1
psFirst = -1
psElongationLong = 100
psElongationOffset = 100
mvStopFrame = 1.000000
mvCreamFrame = 0.000000
mlMinStopFrame = 6mil
mlMaxStopFrame = 6mil
mlMinCreamFrame = 0mil
mlMaxCreamFrame = 0mil
mlViaStopLimit = 25mil
srRoundness = 0.000000
srMinRoundness = 0mil
srMaxRoundness = 0mil
slThermalIsolate = 10mil
slThermalsForVias = 0
dpMaxLengthDifference = 10mm
dpGapFactor = 2.500000
checkAngle = 0
checkFont = 1
checkRestrict = 1
checkStop = 0
checkValues = 0
checkNames = 1
checkWireStubs = 1
checkPolygonWidth = 0
useDiameter = 13
maxErrors = 999999
================================================
FILE: eagle/Seeed_Gerber_Generater_4-layer.cam
================================================
[CAM Processor Job]
Description[de]="Erzeugt Extended-Gerber-Format (RS274X)
\nDieser CAM-Job besteht aus fnf Arbeitsschritten und erzeugt Fertigungsdaten fr eine zweilagige Platine.
\nDie fnf Gerberdateien enthalten Daten fr: \nBestckungsseite *.cmp \nLtseite *.sol \nBestckungsdruck oben *.plc \nLtstoplack Bestckungsseite *.stc \nLtstoplack Ltseite *.sts "
Description[en]="Seeed Studio 2-layer PCB Gerber Generator \nYou will get 10 RS274-x format gerber files:
\n\nTop Layer: pcbname.GTL \nSilk Top: pcbname.GTO \nSolderMask Top: pcbname.GTS \nSMD paste Top: pcbname.GTP
\n\nBottom Layer: pcbname.GBL \nSilk Bottom: pcbname.GBO \nSolderMask Bottom: pcbname.GBS \nSMD paste Bottom: pcbname.GBP
\n\nSolt Drills/Hole: pcbname.GML ---> the Milling Layer(layer46) \nNC Drill file:pcbname.TXT
\n\nIt works well with our Fusion PCB Service: \nhttp://www.seeedstudio.com/depot/index.php?main_page=advanced_search_result&search_in_description=1&keyword=Fusion\n\n\n"
Description[zh]="Seeed Studio Gerber Generater
\nThis CAM job consists of 10 sections that generate data for a two layer board.
\nYou will get 10 gerber files that contain data for: \nTop trace layer *.GTL \nTop slikscreen layer *.GTO \nTop pad paste layer *.GTP \nTop solder mask layer *.GTS \nBottom trace layer *.GBL \nBottom slikscreen layer *.GBO \nBottom pad paste layer *.GBP \nBottom solder mask layer *.GBS \nSlot data *.GML \nNC Drills *.TXT \n"
Section=Sec_1
Section=Sec_2
Section=Sec_3
Section=Sec_4
Section=Sec_5
Section=Sec_6
Section=Sec_7
Section=Sec_8
Section=Sec_9
Section=Sec_10
Section=Sec_11
Section=Sec_12
[Sec_1]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Drills&Holes"
Name[zh]="drill data"
Prompt[en]=""
Prompt[zh]=""
Device="EXCELLON"
Wheel=""
Rack=""
Scale=1
Output="%N.TXT"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 44 45"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_2]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Slot drills/holes"
Name[zh]="edge milling"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=""
Rack=""
Scale=1
Output="%N.GML"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 20 46"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_3]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Solder paste bottom"
Name[zh]="padmask bottom"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GBP"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 20 32"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_4]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Solder paste top"
Name[zh]="padmask top"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GTP"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 20 31"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_5]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Solder Mask bottom"
Name[zh]="solder mask bottom"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GBS"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 20 30"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_6]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Solder Mask top"
Name[zh]="solder mask top"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GTS"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 20 29"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_7]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Silk bottom"
Name[zh]="silk bottom"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GBO"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 20 22 26"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_8]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Silk top"
Name[zh]="silk top"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GTO"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 20 21 25"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_9]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Bottom layer"
Name[zh]="bottom copper"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GBL"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 16 17 18 20"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_10]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Top Layer"
Name[zh]="top copper"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GTL"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 1 17 18 20"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_11]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Layer 2"
Name[zh]="top copper"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GL2"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 2 17 18 20"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
[Sec_12]
Name[de]="Ltstopmaske Ltseite"
Name[en]="Layer 3"
Name[zh]="top copper"
Prompt[en]=""
Prompt[zh]=""
Device="GERBER_RS274X"
Wheel=".whl"
Rack=""
Scale=1
Output="%N.GL3"
Flags="0 0 0 1 0 1 1"
Emulate="0 0 0"
Offset="0.0mil 0.0mil"
Sheet=1
Tolerance="0 0 0 0 0 0"
Pen="0.0mil 0"
Page="12000.0mil 8000.0mil"
Layers=" 15 17 18 20"
Colors=" 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 6 6 4 8 8 8 8 8 8 8 8 8 8 8 8 8 4 4 1 1 1 1 3 3 1 2 6 8 8 5 8 8 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 4 2 4 3 6 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0"
================================================
FILE: eagle/auto 50ohm layer top.ctl
================================================
; EAGLE Autorouter Control File
[Default]
RoutingGrid = 25mil
; Trace Parameters:
tpViaShape = round
; Preferred Directions:
PrefDir.1 = *
PrefDir.2 = *
PrefDir.3 = 0
PrefDir.4 = 0
PrefDir.5 = 0
PrefDir.6 = 0
PrefDir.7 = 0
PrefDir.8 = 0
PrefDir.9 = 0
PrefDir.10 = 0
PrefDir.11 = 0
PrefDir.12 = 0
PrefDir.13 = 0
PrefDir.14 = 0
PrefDir.15 = *
PrefDir.16 = *
Active = 1
; Cost Factors:
cfVia = 89
cfNonPref = 5
cfChangeDir = 2
cfOrthStep = 2
cfDiagStep = 3
cfExtdStep = 0
cfBonusStep = 1
cfMalusStep = 1
cfPadImpact = 4
cfSmdImpact = 4
cfBusImpact = 0
cfHugging = 3
cfAvoid = 4
cfPolygon = 10
cfBase.1 = 0
cfBase.2 = 9
cfBase.3 = 1
cfBase.4 = 1
cfBase.5 = 1
cfBase.6 = 1
cfBase.7 = 1
cfBase.8 = 1
cfBase.9 = 1
cfBase.10 = 1
cfBase.11 = 1
cfBase.12 = 1
cfBase.13 = 1
cfBase.14 = 1
cfBase.15 = 9
cfBase.16 = 9
; Maximum Number of...:
mnVias = 20
mnSegments = 9999
mnExtdSteps = 9999
mnRipupLevel = 10
mnRipupSteps = 100
mnRipupTotal = 100
[Follow-me]
@Route
Active = 1
cfVia = 8
cfBase.2 = 1
cfBase.15 = 1
cfBase.16 = 0
[Busses]
@Route
Active = 1
cfNonPref = 4
cfBusImpact = 4
cfHugging = 0
mnVias = 0
[Route]
@Default
Active = 1
[Optimize1]
@Route
Active = 1
cfVia = 99
cfExtdStep = 10
cfHugging = 1
mnExtdSteps = 1
mnRipupLevel = 0
[Optimize2]
@Optimize1
Active = 1
cfNonPref = 0
cfChangeDir = 6
cfExtdStep = 0
cfBonusStep = 2
cfMalusStep = 2
cfPadImpact = 2
cfSmdImpact = 2
cfHugging = 0
[Optimize3]
@Optimize2
Active = 1
cfChangeDir = 8
cfPadImpact = 0
cfSmdImpact = 0
[Optimize4]
@Optimize3
Active = 1
cfChangeDir = 25
================================================
FILE: eagle/auto gnd gndlayer135.ctl
================================================
; EAGLE Autorouter Control File
[Default]
RoutingGrid = 0.1mm
; Trace Parameters:
tpViaShape = round
; Preferred Directions:
PrefDir.1 = *
PrefDir.2 = *
PrefDir.3 = *
PrefDir.4 = *
PrefDir.5 = 0
PrefDir.6 = 0
PrefDir.7 = 0
PrefDir.8 = 0
PrefDir.9 = 0
PrefDir.10 = 0
PrefDir.11 = 0
PrefDir.12 = 0
PrefDir.13 = 0
PrefDir.14 = 0
PrefDir.15 = *
PrefDir.16 = *
Active = 1
; Cost Factors:
cfVia = 1
cfNonPref = 5
cfChangeDir = 2
cfOrthStep = 2
cfDiagStep = 3
cfExtdStep = 0
cfBonusStep = 1
cfMalusStep = 1
cfPadImpact = 4
cfSmdImpact = 4
cfBusImpact = 0
cfHugging = 3
cfAvoid = 4
cfPolygon = 10
cfBase.1 = 1
cfBase.2 = 9
cfBase.3 = 1
cfBase.4 = 9
cfBase.5 = 1
cfBase.6 = 1
cfBase.7 = 1
cfBase.8 = 1
cfBase.9 = 1
cfBase.10 = 1
cfBase.11 = 1
cfBase.12 = 1
cfBase.13 = 1
cfBase.14 = 1
cfBase.15 = 1
cfBase.16 = 1
; Maximum Number of...:
mnVias = 999
mnSegments = 9999
mnExtdSteps = 9999
mnRipupLevel = 10
mnRipupSteps = 100
mnRipupTotal = 100
[Follow-me]
@Route
Active = 1
cfVia = 8
cfBase.1 = 0
cfBase.2 = 1
cfBase.4 = 1
cfBase.16 = 0
mnVias = 20
[Busses]
@Route
Active = 1
cfNonPref = 4
cfBusImpact = 4
cfHugging = 0
[Route]
@Default
Active = 1
[Optimize1]
@Route
Active = 0
cfVia = 99
cfExtdStep = 10
cfHugging = 1
cfBase.1 = 0
mnVias = 20
mnExtdSteps = 1
mnRipupLevel = 0
[Optimize2]
@Optimize1
Active = 0
cfNonPref = 0
cfChangeDir = 6
cfExtdStep = 0
cfBonusStep = 2
cfMalusStep = 2
cfPadImpact = 2
cfSmdImpact = 2
cfHugging = 0
cfBase.1 = 1
[Optimize3]
@Optimize2
Active = 0
cfChangeDir = 8
cfPadImpact = 0
cfSmdImpact = 0
[Optimize4]
@Optimize3
Active = 0
cfChangeDir = 25
================================================
FILE: eagle/auto gnd layer2.ctl
================================================
; EAGLE Autorouter Control File
[Default]
RoutingGrid = 0.1mm
; Trace Parameters:
tpViaShape = round
; Preferred Directions:
PrefDir.1 = *
PrefDir.2 = *
PrefDir.3 = 0
PrefDir.4 = 0
PrefDir.5 = 0
PrefDir.6 = 0
PrefDir.7 = 0
PrefDir.8 = 0
PrefDir.9 = 0
PrefDir.10 = 0
PrefDir.11 = 0
PrefDir.12 = 0
PrefDir.13 = 0
PrefDir.14 = 0
PrefDir.15 = *
PrefDir.16 = *
Active = 1
; Cost Factors:
cfVia = 1
cfNonPref = 5
cfChangeDir = 2
cfOrthStep = 2
cfDiagStep = 3
cfExtdStep = 0
cfBonusStep = 1
cfMalusStep = 1
cfPadImpact = 4
cfSmdImpact = 4
cfBusImpact = 0
cfHugging = 3
cfAvoid = 4
cfPolygon = 10
cfBase.1 = 1
cfBase.2 = 0
cfBase.3 = 1
cfBase.4 = 1
cfBase.5 = 1
cfBase.6 = 1
cfBase.7 = 1
cfBase.8 = 1
cfBase.9 = 1
cfBase.10 = 1
cfBase.11 = 1
cfBase.12 = 1
cfBase.13 = 1
cfBase.14 = 1
cfBase.15 = 1
cfBase.16 = 1
; Maximum Number of...:
mnVias = 999
mnSegments = 9999
mnExtdSteps = 9999
mnRipupLevel = 10
mnRipupSteps = 100
mnRipupTotal = 100
[Follow-me]
@Route
Active = 1
cfVia = 8
cfBase.1 = 0
cfBase.2 = 1
cfBase.16 = 0
mnVias = 20
[Busses]
@Route
Active = 1
cfNonPref = 4
cfBusImpact = 4
cfHugging = 0
[Route]
@Default
Active = 1
[Optimize1]
@Route
Active = 0
cfVia = 99
cfExtdStep = 10
cfHugging = 1
cfBase.1 = 0
cfBase.2 = 1
cfBase.16 = 0
mnVias = 20
mnExtdSteps = 1
mnRipupLevel = 0
[Optimize2]
@Optimize1
Active = 0
cfNonPref = 0
cfChangeDir = 6
cfExtdStep = 0
cfBonusStep = 2
cfMalusStep = 2
cfPadImpact = 2
cfSmdImpact = 2
cfHugging = 0
[Optimize3]
@Optimize2
Active = 0
cfChangeDir = 8
cfPadImpact = 0
cfSmdImpact = 0
[Optimize4]
@Optimize3
Active = 0
cfChangeDir = 25
================================================
FILE: eagle/auto gndlayer135.ctl
================================================
; EAGLE Autorouter Control File
[Default]
RoutingGrid = 0.1mm
; Trace Parameters:
tpViaShape = round
; Preferred Directions:
PrefDir.1 = *
PrefDir.2 = *
PrefDir.3 = *
PrefDir.4 = *
PrefDir.5 = 0
PrefDir.6 = 0
PrefDir.7 = 0
PrefDir.8 = 0
PrefDir.9 = 0
PrefDir.10 = 0
PrefDir.11 = 0
PrefDir.12 = 0
PrefDir.13 = 0
PrefDir.14 = 0
PrefDir.15 = *
PrefDir.16 = *
Active = 1
; Cost Factors:
cfVia = 8
cfNonPref = 5
cfChangeDir = 2
cfOrthStep = 2
cfDiagStep = 3
cfExtdStep = 0
cfBonusStep = 1
cfMalusStep = 1
cfPadImpact = 4
cfSmdImpact = 4
cfBusImpact = 0
cfHugging = 3
cfAvoid = 4
cfPolygon = 10
cfBase.1 = 1
cfBase.2 = 9
cfBase.3 = 1
cfBase.4 = 9
cfBase.5 = 1
cfBase.6 = 1
cfBase.7 = 1
cfBase.8 = 1
cfBase.9 = 1
cfBase.10 = 1
cfBase.11 = 1
cfBase.12 = 1
cfBase.13 = 1
cfBase.14 = 1
cfBase.15 = 1
cfBase.16 = 9
; Maximum Number of...:
mnVias = 20
mnSegments = 9999
mnExtdSteps = 9999
mnRipupLevel = 10
mnRipupSteps = 100
mnRipupTotal = 100
[Follow-me]
@Route
Active = 1
cfBase.1 = 0
cfBase.2 = 1
cfBase.4 = 1
cfBase.16 = 0
[Busses]
@Route
Active = 1
cfNonPref = 4
cfBusImpact = 4
cfHugging = 0
mnVias = 0
[Route]
@Default
Active = 1
[Optimize1]
@Route
Active = 1
cfVia = 99
cfExtdStep = 10
cfHugging = 1
mnExtdSteps = 1
mnRipupLevel = 0
[Optimize2]
@Optimize1
Active = 1
cfNonPref = 0
cfChangeDir = 6
cfExtdStep = 0
cfBonusStep = 2
cfMalusStep = 2
cfPadImpact = 2
cfSmdImpact = 2
cfHugging = 0
[Optimize3]
@Optimize2
Active = 1
cfChangeDir = 8
cfPadImpact = 0
cfSmdImpact = 0
[Optimize4]
@Optimize3
Active = 1
cfChangeDir = 25
================================================
FILE: eagle/auto rest after auto gnd vcc layer2.ctl
================================================
; EAGLE Autorouter Control File
[Default]
RoutingGrid = 0.1mm
; Trace Parameters:
tpViaShape = round
; Extended parameters:
AutoGrid = 0
Efforts = 1
TopRouterVariant = 0
; Preferred Directions:
PrefDir.1 = *
PrefDir.2 = *
PrefDir.3 = 0
PrefDir.4 = 0
PrefDir.5 = 0
PrefDir.6 = 0
PrefDir.7 = 0
PrefDir.8 = 0
PrefDir.9 = 0
PrefDir.10 = 0
PrefDir.11 = 0
PrefDir.12 = 0
PrefDir.13 = 0
PrefDir.14 = 0
PrefDir.15 = *
PrefDir.16 = *
Active = 1
; Cost Factors:
cfVia = 8
cfNonPref = 5
cfChangeDir = 2
cfOrthStep = 2
cfDiagStep = 3
cfExtdStep = 0
cfBonusStep = 1
cfMalusStep = 1
cfPadImpact = 4
cfSmdImpact = 4
cfBusImpact = 0
cfHugging = 3
cfAvoid = 4
cfPolygon = 10
cfBase.1 = 1
cfBase.2 = 9
cfBase.3 = 1
cfBase.4 = 1
cfBase.5 = 1
cfBase.6 = 1
cfBase.7 = 1
cfBase.8 = 1
cfBase.9 = 1
cfBase.10 = 1
cfBase.11 = 1
cfBase.12 = 1
cfBase.13 = 1
cfBase.14 = 1
cfBase.15 = 0
cfBase.16 = 0
; Maximum Number of...:
mnVias = 20
mnSegments = 9999
mnExtdSteps = 9999
mnRipupLevel = 10
mnRipupSteps = 100
mnRipupTotal = 100
[Follow-me]
@Route
Active = 1
cfBase.1 = 0
cfBase.2 = 1
cfBase.15 = 1
[Busses]
@Route
Active = 1
cfNonPref = 4
cfBusImpact = 4
cfHugging = 0
mnVias = 0
[Route]
@Default
Active = 1
[Optimize1]
@Route
Active = 1
cfVia = 99
cfExtdStep = 10
cfHugging = 1
mnExtdSteps = 1
mnRipupLevel = 0
[Optimize2]
@Optimize1
Active = 1
cfNonPref = 0
cfChangeDir = 6
cfExtdStep = 0
cfBonusStep = 2
cfMalusStep = 2
cfPadImpact = 2
cfSmdImpact = 2
cfHugging = 0
[Optimize3]
@Optimize2
Active = 1
cfChangeDir = 8
cfPadImpact = 0
cfSmdImpact = 0
[Optimize4]
@Optimize3
Active = 1
cfChangeDir = 25
================================================
FILE: eagle/auto vcc layer 2.ctl
================================================
; EAGLE Autorouter Control File
[Default]
RoutingGrid = 0.15mm
; Trace Parameters:
tpViaShape = round
; Preferred Directions:
PrefDir.1 = *
PrefDir.2 = *
PrefDir.3 = 0
PrefDir.4 = 0
PrefDir.5 = 0
PrefDir.6 = 0
PrefDir.7 = 0
PrefDir.8 = 0
PrefDir.9 = 0
PrefDir.10 = 0
PrefDir.11 = 0
PrefDir.12 = 0
PrefDir.13 = 0
PrefDir.14 = 0
PrefDir.15 = *
PrefDir.16 = *
Active = 1
; Cost Factors:
cfVia = 8
cfNonPref = 5
cfChangeDir = 2
cfOrthStep = 2
cfDiagStep = 3
cfExtdStep = 0
cfBonusStep = 1
cfMalusStep = 1
cfPadImpact = 4
cfSmdImpact = 4
cfBusImpact = 0
cfHugging = 3
cfAvoid = 4
cfPolygon = 10
cfBase.1 = 0
cfBase.2 = 9
cfBase.3 = 1
cfBase.4 = 1
cfBase.5 = 1
cfBase.6 = 1
cfBase.7 = 1
cfBase.8 = 1
cfBase.9 = 1
cfBase.10 = 1
cfBase.11 = 1
cfBase.12 = 1
cfBase.13 = 1
cfBase.14 = 1
cfBase.15 = 1
cfBase.16 = 1
; Maximum Number of...:
mnVias = 20
mnSegments = 9999
mnExtdSteps = 9999
mnRipupLevel = 10
mnRipupSteps = 100
mnRipupTotal = 100
[Follow-me]
@Route
Active = 1
cfBase.2 = 1
cfBase.16 = 0
[Busses]
@Route
Active = 1
cfNonPref = 4
cfBusImpact = 4
cfHugging = 0
mnVias = 0
[Route]
@Default
Active = 1
[Optimize1]
@Route
Active = 1
cfVia = 99
cfExtdStep = 10
cfHugging = 1
mnExtdSteps = 1
mnRipupLevel = 0
[Optimize2]
@Optimize1
Active = 1
cfNonPref = 0
cfChangeDir = 6
cfExtdStep = 0
cfBonusStep = 2
cfMalusStep = 2
cfPadImpact = 2
cfSmdImpact = 2
cfHugging = 0
[Optimize3]
@Optimize2
Active = 1
cfChangeDir = 8
cfPadImpact = 0
cfSmdImpact = 0
[Optimize4]
@Optimize3
Active = 1
cfChangeDir = 25
================================================
FILE: eagle/haasoscope_trigger_board_v1.1.brd
================================================
3V3
3V3
5V
5V
GND
GND
121
AIN
101
100
91
90
89
88
3V3
GND
Haasoscope Trig IO v1.1
by DrAndyHaas
>NAME
>VALUE
<b>Coax Connectors</b><p>
Radiall and M/A COM.<p>
<author>Created by librarian@cadsoft.de</author>
FEMALE <b>SMB CONNECTOR</b><p>
Radiall<p>
distributor RS 112-2993
>NAME
>VALUE
FEMALE SMB CONNECTOR
Radiall
distributor RS 112-2993
<b>Pin Header Connectors</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>PIN HEADER</b>
>NAME
>VALUE
PIN HEADER
<b>MacroFab, INC. EAGLE Design Rules</b>
<p>This DRC check is for 2-Layer Standard Capability boards to be manufactured through the MacroFab, INC. service.
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/haasoscope_trigger_board_v1.1.sch
================================================
<b>Coax Connectors</b><p>
Radiall and M/A COM.<p>
<author>Created by librarian@cadsoft.de</author>
FEMALE <b>SMB CONNECTOR</b><p>
Radiall<p>
distributor RS 112-2993
>NAME
>VALUE
FEMALE SMB CONNECTOR
Radiall
distributor RS 112-2993
>VALUE
>NAME
FEMALE <b>SMB CONNECTOR</b><p>
Radiall<p>
distributor RS 112-2993
>NAME
>VALUE
>name
>value
320020016
<b>Supply Symbols</b><p>
GND, VCC, 0V, +5V, -5V, etc.<p>
Please keep in mind, that these devices are necessary for the
automatic wiring of the supply signals.<p>
The pin name defined in the symbol is identical to the net which is to be wired automatically.<p>
In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p>
<author>Created by librarian@cadsoft.de</author>
>VALUE
<b>SUPPLY SYMBOL</b>
<b>Pin Header Connectors</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
PIN HEADER
PIN HEADER
>NAME
>VALUE
<b>PIN HEADER</b>
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/haasoscope_triggerout_board.brd
================================================
E101
E102
E103
E104
GND
SCL
SDA
3V3
O6
O7
O8
O10
O11
O12
O13
O14
Haasoscope Trig Output v1.0
>NAME
>VALUE
<b>Coax Connectors</b><p>
Radiall and M/A COM.<p>
<author>Created by librarian@cadsoft.de</author>
FEMALE <b>SMB CONNECTOR</b><p>
Radiall<p>
distributor RS 112-2993
>NAME
>VALUE
FEMALE SMB CONNECTOR
Radiall
distributor RS 112-2993
<b>Pin Header Connectors</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>PIN HEADER</b>
>NAME
>VALUE
PIN HEADER
<b>MacroFab, INC. EAGLE Design Rules</b>
<p>This DRC check is for 2-Layer Standard Capability boards to be manufactured through the MacroFab, INC. service.
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/haasoscope_triggerout_board.sch
================================================
<b>Coax Connectors</b><p>
Radiall and M/A COM.<p>
<author>Created by librarian@cadsoft.de</author>
FEMALE <b>SMB CONNECTOR</b><p>
Radiall<p>
distributor RS 112-2993
>NAME
>VALUE
FEMALE SMB CONNECTOR
Radiall
distributor RS 112-2993
>VALUE
>NAME
FEMALE <b>SMB CONNECTOR</b><p>
Radiall<p>
distributor RS 112-2993
>NAME
>VALUE
>name
>value
320020016
<b>Supply Symbols</b><p>
GND, VCC, 0V, +5V, -5V, etc.<p>
Please keep in mind, that these devices are necessary for the
automatic wiring of the supply signals.<p>
The pin name defined in the symbol is identical to the net which is to be wired automatically.<p>
In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p>
<author>Created by librarian@cadsoft.de</author>
>VALUE
<b>SUPPLY SYMBOL</b>
<b>Pin Header Connectors</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
PIN HEADER
PIN HEADER
>NAME
>VALUE
<b>PIN HEADER</b>
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/jlcpcb2layer.dru
================================================
description[en] = JLCPCB Design Rules - 2layer \n
\nPlease make sure your boards conform to these design rules.\n
layerSetup = (1*16)
mtCopper = 0.035559375mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.035559375mm
mtIsolate = 1.6mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm
mdWireWire = 5mil
mdWirePad = 5mil
mdWireVia = 5mil
mdPadPad = 5mil
mdPadVia = 5mil
mdViaVia = 5mil
mdSmdPad = 5mil
mdSmdVia = 5mil
mdSmdSmd = 5mil
mdViaViaSameLayer = 8mil
mnLayersViaInSmd = 2
mdCopperDimension = 8mil
mdDrill = 6mil
mdSmdStop = 0mil
msWidth = 5mil
msDrill = 12mil
msMicroVia = 12mil
msBlindViaRatio = 0.500000
rvPadTop = 0.250000
rvPadInner = 0.250000
rvPadBottom = 0.250000
rvViaOuter = 0.250000
rvViaInner = 0.250000
rvMicroViaOuter = 0.250000
rvMicroViaInner = 0.250000
rlMinPadTop = 5mil
rlMaxPadTop = 20mil
rlMinPadInner = 5mil
rlMaxPadInner = 20mil
rlMinPadBottom = 5mil
rlMaxPadBottom = 20mil
rlMinViaOuter = 3mil
rlMaxViaOuter = 20mil
rlMinViaInner = 3mil
rlMaxViaInner = 20mil
rlMinMicroViaOuter = 3mil
rlMaxMicroViaOuter = 20mil
rlMinMicroViaInner = 3mil
rlMaxMicroViaInner = 20mil
psTop = -1
psBottom = -1
psFirst = -1
psElongationLong = 100
psElongationOffset = 100
mvStopFrame = 1.000000
mvCreamFrame = 0.000000
mlMinStopFrame = 2.5mil
mlMaxStopFrame = 2.5mil
mlMinCreamFrame = 0mil
mlMaxCreamFrame = 0mil
mlViaStopLimit = 0mil
srRoundness = 0.000000
srMinRoundness = 0mil
srMaxRoundness = 0mil
slThermalIsolate = 10mil
slThermalsForVias = 0
dpMaxLengthDifference = 10mm
dpGapFactor = 2.500000
checkAngle = 0
checkFont = 1
checkRestrict = 1
checkStop = 0
checkValues = 0
checkNames = 1
checkWireStubs = 1
checkPolygonWidth = 0
useDiameter = 13
maxErrors = 50
================================================
FILE: eagle/jlcpcb4layer.dru
================================================
description[en] = JLCPCB Design Rules - 4layer \n\nPlease make sure your boards conform to these design rules.\n
layerSetup = (1+2*15+16)
mtCopper = 0.035559375mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.035559375mm
mtIsolate = 0.6mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.6mm
mdWireWire = 5mil
mdWirePad = 5mil
mdWireVia = 5mil
mdPadPad = 5mil
mdPadVia = 5mil
mdViaVia = 5mil
mdSmdPad = 5mil
mdSmdVia = 5mil
mdSmdSmd = 5mil
mdViaViaSameLayer = 8mil
mnLayersViaInSmd = 2
mdCopperDimension = 8mil
mdDrill = 6mil
mdSmdStop = 0mil
msWidth = 5mil
msDrill = 12mil
msMicroVia = 12mil
msBlindViaRatio = 0.500000
rvPadTop = 0.250000
rvPadInner = 0.250000
rvPadBottom = 0.250000
rvViaOuter = 0.250000
rvViaInner = 0.250000
rvMicroViaOuter = 0.250000
rvMicroViaInner = 0.250000
rlMinPadTop = 5mil
rlMaxPadTop = 20mil
rlMinPadInner = 5mil
rlMaxPadInner = 20mil
rlMinPadBottom = 5mil
rlMaxPadBottom = 20mil
rlMinViaOuter = 3mil
rlMaxViaOuter = 20mil
rlMinViaInner = 3mil
rlMaxViaInner = 20mil
rlMinMicroViaOuter = 3mil
rlMaxMicroViaOuter = 20mil
rlMinMicroViaInner = 3mil
rlMaxMicroViaInner = 20mil
psTop = -1
psBottom = -1
psFirst = -1
psElongationLong = 100
psElongationOffset = 100
mvStopFrame = 1.000000
mvCreamFrame = 0.000000
mlMinStopFrame = 2.5mil
mlMaxStopFrame = 2.5mil
mlMinCreamFrame = 0mil
mlMaxCreamFrame = 0mil
mlViaStopLimit = 0mil
srRoundness = 0.000000
srMinRoundness = 0mil
srMaxRoundness = 0mil
slThermalIsolate = 10mil
slThermalsForVias = 0
dpMaxLengthDifference = 10mm
dpGapFactor = 2.500000
checkAngle = 0
checkFont = 1
checkRestrict = 1
checkStop = 0
checkValues = 0
checkNames = 1
checkWireStubs = 1
checkPolygonWidth = 0
useDiameter = 13
maxErrors = 50
================================================
FILE: eagle/jlcpcb6layer.dru
================================================
description[en] = JLCPCB Design Rules - 6layer \n\nPlease make sure your boards conform to these design rules.\n
layerSetup = (1+2*3+4*15+16)
mtCopper = 0.035559375mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.0356mm 0.035559375mm
mtIsolate = 0.6mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.2007mm 0.1499mm 0.6mm
mdWireWire = 5mil
mdWirePad = 5mil
mdWireVia = 5mil
mdPadPad = 5mil
mdPadVia = 5mil
mdViaVia = 5mil
mdSmdPad = 5mil
mdSmdVia = 5mil
mdSmdSmd = 5mil
mdViaViaSameLayer = 8mil
mnLayersViaInSmd = 2
mdCopperDimension = 8mil
mdDrill = 6mil
mdSmdStop = 0mil
msWidth = 5mil
msDrill = 12mil
msMicroVia = 12mil
msBlindViaRatio = 0.500000
rvPadTop = 0.250000
rvPadInner = 0.250000
rvPadBottom = 0.250000
rvViaOuter = 0.250000
rvViaInner = 0.250000
rvMicroViaOuter = 0.250000
rvMicroViaInner = 0.250000
rlMinPadTop = 5mil
rlMaxPadTop = 20mil
rlMinPadInner = 5mil
rlMaxPadInner = 20mil
rlMinPadBottom = 5mil
rlMaxPadBottom = 20mil
rlMinViaOuter = 3mil
rlMaxViaOuter = 20mil
rlMinViaInner = 3mil
rlMaxViaInner = 20mil
rlMinMicroViaOuter = 3mil
rlMaxMicroViaOuter = 20mil
rlMinMicroViaInner = 3mil
rlMaxMicroViaInner = 20mil
psTop = -1
psBottom = -1
psFirst = -1
psElongationLong = 100
psElongationOffset = 100
mvStopFrame = 1.000000
mvCreamFrame = 0.000000
mlMinStopFrame = 2.5mil
mlMaxStopFrame = 2.5mil
mlMinCreamFrame = 0mil
mlMaxCreamFrame = 0mil
mlViaStopLimit = 0mil
srRoundness = 0.000000
srMinRoundness = 0mil
srMaxRoundness = 0mil
slThermalIsolate = 10mil
slThermalsForVias = 0
dpMaxLengthDifference = 10mm
dpGapFactor = 2.500000
checkAngle = 0
checkFont = 1
checkRestrict = 1
checkStop = 0
checkValues = 0
checkNames = 1
checkWireStubs = 1
checkPolygonWidth = 0
useDiameter = 13
maxErrors = 50
================================================
FILE: eagle/jlcpcb_2_layer_v9.cam
================================================
{
"author": {
"email": "support@jlcpcb.com",
"name": "JLCPCB"
},
"description": {
"EN": "JLCPCB 2-Layer CAM job \n\nFor Eagle 8.6.0 to 9.6.2
\n\nTop Copper: pcbname.GTL \nTop Solder Mask: pcbname.GTS \nTop Silkscreen: pcbname.GTO \nTop Paste: pcbname.GTP
\n\nBottom Copper: pcbname.GBL \nBottom Solder Mask: pcbname.GBS \nBottom Silkscreen: pcbname.GBO \nBottom Paste: pcbname.GBP
\n\nProfile: pcbname.GKO (Dimension (20) and Milling (46) layers are used)
\nDrill Layer: pcbname.XLN (Both plated and non-plated holes are merged in this file)
\n\nPlease refer to How to Generate Gerber and Drill Files from Eagle for more information.
\n\nEmail: support@jlcpcb.com
\nLast updated: 2020/11/18"
},
"output_type": "zip",
"outputs": [
{
"filename_prefix": "GerberJob",
"format_specifier": {
"decimal": 4,
"integer": 3
},
"generate_job_file": true,
"output_type": "gerber",
"outputs": [
{
"board_outline": true,
"config": {
"file_function": "Profile",
"plating": "non-plated"
},
"filename_format": "%N.GKO",
"layers": [
46,
20
],
"milling": true,
"name": "Board Outline",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 1,
"layer_details": "mixed",
"layer_type": "top"
},
"filename_format": "%N.GTL",
"layers": [
1,
18,
17
],
"name": "Top Copper",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 2,
"layer_details": "mixed",
"layer_type": "bottom"
},
"filename_format": "%N.GBL",
"layers": [
16,
17,
18
],
"name": "Bottom Copper",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Soldermask",
"index": 1,
"layer_type": "top"
},
"filename_format": "%N.GTS",
"layers": [
29
],
"name": "Soldermask Top",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Soldermask",
"index": 1,
"layer_type": "bottom"
},
"filename_format": "%N.GBS",
"layers": [
30
],
"name": "Soldermask Bottom",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Paste",
"layer_type": "top"
},
"filename_format": "%N.GTP",
"layers": [
31
],
"milling": false,
"name": "Solderpaste Top",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Paste",
"layer_type": "bottom"
},
"filename_format": "%N.GBP",
"layers": [
32
],
"milling": false,
"name": "Solderpaste Bottom",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Legend",
"index": 1,
"layer_type": "top"
},
"filename_format": "%N.GTO",
"layers": [
21,
25
],
"milling": false,
"name": "Silkscreen Top",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Legend",
"index": 1,
"layer_type": "bottom"
},
"filename_format": "%N.GBO",
"layers": [
22,
26
],
"milling": false,
"name": "Silkscreen Bottom",
"polarity": "positive",
"type": "gerber_layer"
}
],
"version": "RS274X"
},
{
"filename_prefix": "",
"format_specifier": {
"decimal": 3,
"integer": 3
},
"output_type": "drill",
"outputs": [
{
"drills": {
"NPTH": true,
"PTH": true,
"VIA": true
},
"filename_format": "%N.XLN",
"layers": {
"from": 1,
"to": 16
},
"name": "Excellon",
"type": "excellon"
}
]
},
{
"filename_prefix": "CAMOutputs/Assembly",
"output_type": "assembly",
"outputs": [
]
},
{
"filename_prefix": "CAMOutputs/DrawingFiles",
"output_type": "drawing",
"outputs": [
]
}
],
"timestamp": "2020-11-12T14:32:05",
"type": "EAGLE CAM job",
"units": "metric",
"version": "9.2.0"
}
================================================
FILE: eagle/jlcpcb_4_layer_v9.cam
================================================
{
"author": {
"email": "support@jlcpcb.com",
"name": "JLCPCB"
},
"description": {
"EN": "JLCPCB 4-Layer CAM job
\n\nFor Eagle 8.6.0 to 9.6.2
\n\nTop Copper: pcbname_copper_l1.GTL \nInner Copper Layer 1: pcbname_copper_l2.G1 \nInner Copper Layer 2: pcbname_copper_l3.G2 \nBottom Copper: pcbname_copper_l4.GBL
\n\nDrill File: pcbname_drill.XLN (Both plated and non-plated holes are merged into this file)
\n\nSilkscreen Bottom: pcbname_Legend_Bot.GBO \nSilkscreen Top: pcbname_Legend_Top.GTO \nPaste Bottom: pcbname_Paste_Bot.GBP \nPaste Top: pcbname_Paste_Top.GTP
\n\nBoard Outline: pcbname_Profile_NP.GKO (Includes Dimension (20) and Milling (46) layers)
\n\nSoldermask Bottom: pcbname_Soldermask_Bot.GBS \nSoldermask Top: pcbname_Soldermask_Top.GTS
\n\nPlease refer to How to Generate Gerber and Drill Files from Eagle for more information.
\n\nEmail: support@jlcpcb.com
\nLast updated: 2020/11/18"
},
"output_type": "zip",
"outputs": [
{
"filename_prefix": "GerberJob",
"format_specifier": {
"decimal": 4,
"integer": 3
},
"generate_job_file": true,
"output_type": "gerber",
"outputs": [
{
"board_outline": true,
"config": {
"file_function": "Profile",
"plating": "non-plated"
},
"filename_format": "%N_%FF.GKO",
"layers": [
46,
20
],
"milling": true,
"name": "Board Outline",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 1,
"layer_details": "mixed",
"layer_type": "top"
},
"filename_format": "%N_%FF.GTL",
"layers": [
1,
18,
17
],
"name": "Top Copper",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 2,
"layer_details": "mixed",
"layer_type": "Inner"
},
"filename_format": "%N_%FF.G1",
"layers": [
2,
17,
18
],
"milling": false,
"name": "Inner Copper Layer 1",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 3,
"layer_details": "mixed",
"layer_type": "Inner"
},
"filename_format": "%N_%FF.G2",
"layers": [
15,
17,
18
],
"milling": false,
"name": "Inner Copper Layer 2",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 4,
"layer_details": "mixed",
"layer_type": "bottom"
},
"filename_format": "%N_%FF.GBL",
"layers": [
16,
17,
18
],
"name": "Bottom Copper",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Soldermask",
"index": 1,
"layer_type": "top"
},
"filename_format": "%N_%FF.GTS",
"layers": [
29
],
"name": "Soldermask Top",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Soldermask",
"index": 1,
"layer_type": "bottom"
},
"filename_format": "%N_%FF.GBS",
"layers": [
30
],
"name": "Soldermask Bottom",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Paste",
"layer_type": "top"
},
"filename_format": "%N_%FF.GTP",
"layers": [
31
],
"milling": false,
"name": "Solderpaste Top",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Paste",
"layer_type": "bottom"
},
"filename_format": "%N_%FF.GBP",
"layers": [
32
],
"milling": false,
"name": "Solderpaste Bottom",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Legend",
"index": 1,
"layer_type": "top"
},
"filename_format": "%N_%FF.GTO",
"layers": [
21,
25
],
"milling": false,
"name": "Silkscreen Top",
"polarity": "positive",
"type": "gerber_layer"
},
{
"board_outline": false,
"config": {
"file_function": "Legend",
"index": 1,
"layer_type": "bottom"
},
"filename_format": "%N_%FF.GBO",
"layers": [
22,
26
],
"milling": false,
"name": "Silkscreen Bottom",
"polarity": "positive",
"type": "gerber_layer"
}
],
"version": "RS274X"
},
{
"filename_prefix": "",
"format_specifier": {
"decimal": 3,
"integer": 3
},
"output_type": "drill",
"outputs": [
{
"drills": {
"NPTH": true,
"PTH": true,
"VIA": true
},
"filename_format": "%N_drill.XLN",
"layers": {
"from": 1,
"to": 16
},
"name": "Drill File",
"type": "excellon"
}
]
},
{
"filename_prefix": "CAMOutputs/Assembly",
"output_type": "assembly",
"outputs": [
]
},
{
"filename_prefix": "CAMOutputs/DrawingFiles",
"output_type": "drawing",
"outputs": [
]
}
],
"timestamp": "2020-11-18T10:32:27",
"type": "EAGLE CAM job",
"units": "metric",
"version": "9.2.0"
}
================================================
FILE: eagle/jlcpcb_6_layer_v9.cam
================================================
{
"author": {
"email": "support@jlcpcb.com",
"name": "JLCPCB"
},
"description": {
"EN": "JLCPCB 6-Layer CAM job
\n\nFor Eagle 8.6.0 to 9.6.2
\n\nTop Copper: pcbname_copper_l1.GTL \nInner Copper Layer 1: pcbname_copper_l2.G1 \nInner Copper Layer 2: pcbname_copper_l3.G2 \nInner Copper Layer 3: pcbname_copper_l4.G3 \nInner Copper Layer 4: pcbname_copper_l5.G4 \nBottom Copper: pcbname_copper_l6.GBL
\n\nDrill File: pcbname_drill.XLN (Both plated and non-plated holes are merged into this file)
\n\nSilkscreen Bottom: pcbname_Legend_Bot.GBO \nSilkscreen Top: pcbname_Legend_Top.GTO \nPaste Bottom: pcbname_Paste_Bot.GBP \nPaste Top: pcbname_Paste_Top.GTP
\n\nBoard Outline: pcbname_Profile_NP.GKO (Includes Dimension (20) and Milling (46) layers)
\n\nSoldermask Bottom: pcbname_Soldermask_Bot.GBS \nSoldermask Top: pcbname_Soldermask_Top.GTS
\n\nPlease refer to How to Generate Gerber and Drill Files from Eagle for more information.
\n\nEmail: support@jlcpcb.com
\nLast updated: 2020/11/18"
},
"output_type": "zip",
"outputs": [
{
"filename_prefix": "GerberJob",
"format_specifier": {
"decimal": 4,
"integer": 3
},
"generate_job_file": true,
"output_type": "gerber",
"outputs": [
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": true,
"config": {
"file_function": "Profile",
"plating": "non-plated"
},
"filename_format": "%N_%FF.GKO",
"layers": [
20,
46
],
"milling": true,
"name": "Board Outline",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 1,
"layer_details": "mixed",
"layer_type": "top"
},
"filename_format": "%N_%FF.GTL",
"layers": [
1,
17,
18
],
"name": "Top Copper",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 2,
"layer_details": "mixed",
"layer_type": "Inner"
},
"filename_format": "%N_%FF.G1",
"layers": [
2,
17,
18
],
"name": "Inner Copper Layer 1",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 3,
"layer_details": "mixed",
"layer_type": "Inner"
},
"filename_format": "%N_%FF.G2",
"layers": [
3,
17,
18
],
"name": "Inner Copper Layer 2",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 4,
"layer_details": "mixed",
"layer_type": "Inner"
},
"filename_format": "%N_%FF.G3",
"layers": [
14,
17,
18
],
"name": "Inner Copper Layer 3",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 5,
"layer_details": "mixed",
"layer_type": "Inner"
},
"filename_format": "%N_%FF.G4",
"layers": [
15,
17,
18
],
"name": "Inner Copper Layer 4",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Copper",
"layer": 6,
"layer_details": "mixed",
"layer_type": "bottom"
},
"filename_format": "%N_%FF.GBL",
"layers": [
16,
17,
18
],
"name": "Bottom Copper",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Soldermask",
"index": 1,
"layer_type": "top"
},
"filename_format": "%N_%FF.GTS",
"layers": [
29
],
"name": "Soldermask Top",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Soldermask",
"index": 1,
"layer_type": "bottom"
},
"filename_format": "%N_%FF.GBS",
"layers": [
30
],
"name": "Soldermask Bottom",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Paste",
"layer_type": "top"
},
"filename_format": "%N_%FF.GTP",
"layers": [
31
],
"milling": false,
"name": "Solderpaste Top",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Paste",
"layer_type": "bottom"
},
"filename_format": "%N_%FF.GBP",
"layers": [
32
],
"milling": false,
"name": "Solderpaste Bottom",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Legend",
"index": 1,
"layer_type": "top"
},
"filename_format": "%N_%FF.GTO",
"layers": [
21,
25
],
"milling": false,
"name": "Silkscreen Top",
"polarity": "positive",
"type": "gerber_layer"
},
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"board_outline": false,
"config": {
"file_function": "Legend",
"index": 1,
"layer_type": "bottom"
},
"filename_format": "%N_%FF.GBO",
"layers": [
22,
26
],
"milling": false,
"name": "Silkscreen Bottom",
"polarity": "positive",
"type": "gerber_layer"
}
],
"version": "RS274X"
},
{
"filename_prefix": "",
"format_specifier": {
"decimal": 3,
"integer": 3
},
"output_type": "drill",
"outputs": [
{
"advanced_options": {
"mirror": false,
"offset_x": 0,
"offset_y": 0,
"rotate": false,
"upside_down": false
},
"filename_format": "%N_drill.XLN",
"name": "Drill File",
"type": "autodrills"
}
]
},
{
"filename_prefix": "CAMOutputs/Assembly",
"output_type": "assembly",
"outputs": [
]
},
{
"filename_prefix": "CAMOutputs/DrawingFiles",
"output_type": "drawing",
"outputs": [
]
}
],
"timestamp": "2020-11-18T10:22:44",
"type": "EAGLE CAM job",
"units": "metric",
"version": "9.2.0"
}
================================================
FILE: eagle/lbr/HaasMaxADC.lbr
================================================
Haas library for Maxim ADC IC's
48 TQFN-EP Package IPC7351
>NAME
>VALUE
PINOUT for the Max19506
>NAME
>VALUE
The MAX19506 dual-channel, analog-to-digital converter
(ADC) provides 8-bit resolution and a maximum sample
rate of 100Msps.
================================================
FILE: eagle/lbr/LMH6724.lbr
================================================
*
*
>Name
*
*
>Name
*
*
>Name
>Name
>Value
================================================
FILE: eagle/lbr/SparkFun-Electromechanical.lbr
================================================
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find anything that moves- switches, relays, buttons, potentiometers. Also, anything that goes on a board but isn't electrical in nature- screws, standoffs, etc.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<b>DPDT Slide Switch SMD</b>
www.SparkFun.com SKU : Comp-SMDS
>Name
>Value
+
-
<B>BATTERY</B><p>
22 mm
>NAME
>VALUE
+
-
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
+
-
>NAME
>VALUE
>NAME
>VALUE
(layout parts on top layer)
>NAME
>VALUE
>NAME
>VALUE
<h3>BATTERY-AA-KIT</h3>
<b>Warning:</b> This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
>Name
>Value
C3
C4
C1
C2
C3
C4
C1
C2
D3
D4
D1
D2
<h3>BUTTONPAD-2X2SINGLE-KIT</h3>
<b>Warning:</b> This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
D3
D4
D1
D2
B8
B9
B12
B13
B10
B11
B14
B15
B0
B1
B4
B5
B2
B3
B6
B7
Col0
Col1
Col2
Col3
Row0
Row1
Row2
Row3
B8
B9
B12
B13
B10
B11
B14
B15
B0
B1
B4
B5
B2
B3
B6
B7
Col0
Col1
Col2
Col3
Row0
Row1
Row2
Row3
<b>BUZZER</b>
>NAME
>VALUE
>NAME
>VALUE
+
<h3>BUZZER-12MM-NS-KIT</h3>
Through-hole buzzer<br>
<br>
<b>Warning:</b> This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
>NAME
>VALUE
+
<h3>BUZZER-CCV-KIT</h3>
SMD Buzzer<br>
<br>
<b>Warning:</b> This is the KIT version of this package. This package has longer pads to aid in hand soldering.
<h3>2-color Illuminated Rotary Encoder</h3>
>NAME
+
-
>Name
>Value
>Name
>Value
UP
UP
LiPo 1100mAh
LiPo 2000mAh
>Name
>Value
-
+
>NAME
>VALUE
>NAME
>VALUE
Package for Alpha RV16AF-20 potentiometer
>Value
>Name
>NAME
>VALUE
G5Q SPDT Relay (SparkFun SKU: COM-00100). Footprint should also work with SPST-NO relay.
>Name
>Value
>Name
>Value
>NAME
>NAME
Big relay. 220V/30A. SparkFun SKU: COM-00101
>Name
>Value
>Name
>Value
>Name
>Value
<b>Stand Off</b><p>
This is the mechanical footprint for a #4 phillips button head screw. Use the keepout ring to avoid running the screw head into surrounding components. SKU : PRT-00447
<b>Stand Off</b><p>
This is the mechanical footprint for a #4 phillips button head screw. Use the keepout ring to avoid running the screw head into surrounding components. SKU : PRT-00447
MSS22 DPDT Switch
>NAME
>VALUE
Series S Slide Switch
Right Angle Slide Switch. Works with part#ES21MABE
>NAME
>VALUE
>NAME
Switch with part number: GPI-152-3013
<b>OMRON SWITCH</b>
>NAME
>NAME
>Value
SparkFun SKU# COM-08229
>NAME
>VALUE
>Name
>Value
>NAME
>VALUE
>Name
>Value
>NAME
>VALUE
<h3>SWITCH-SPDT_KIT</h3>
Through-hole SPDT Switch<br>
<br>
<b>Warning:</b> This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
>NAME
>VALUE
>Name
>Value
EG2578
-
O
>NAME
>VALUE
<b>DIP SWITCH</b>
1
ON
2
>VALUE
>NAME
<b>DIP SWITCH</b>
<p>Standard size through-hole DIP switch, 2.54 mm / 0.1" pitch</p>
Spark Fun Electronics SKU : COM-08034
1
ON
2
3
4
5
6
7
8
>VALUE
>NAME
>NAME
>VALUE
>Name
>Value
<h3>TSR-3386U Trimpot</h3>
Trimpot with a knob<br>
For COM-09806 in the SparkFun catalog<br>
>Value
>Name
>Value
>Name
>NAME
>VALUE
0.08" Drill, 0.13" tDoc
>VALUE
>NAME
Simple rotary encoder, no LED, push center<br>
COM-09117
>VALUE
>NAME
16mm top width
>NAME
>VALUE
Mounting Surface
*3mm diameter x 2mm tab at 6 o'clock (from front)
topup part# 16M1SHB-B3-20KM-A2K-16Y
mounting surface
>NAME
>VALUE
*2.8mm diameter x 2mm tab at 9 o'clock (from front)
3mm x 3mm QFN 16 pin
>NAME
>VALUE
micro USB AB connector for OTG support. 5-pins: USBVCC, GND, D+, D-, USBID. Can act as host or device
PCB Front
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
>NAME
>VALUE
1
2
3
4
+
-
>NAME
>VALUE
>NAME
>VALUE
+
>NAME
>VALUE
Stomp switch
COM-11151
Footprint unproven
>NAME
>VALUE
1
2
3
4
+
-
+
>NAME
>VALUE
Panasonic Dual PCB mount pot.
Fits EVJY-00, EVJY-80, EVJY-81, EVJY-10, etc
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>VALUE
>NAME
<b>DIP SWITCH</b>
<p>Half-size SMT DIP switch, 1.27 mm / 0.05" pitch. For example the following:</p>
<ul>
<li>Omron A6H series; <a href="http://www.omron.com/ecb/products/pdf/en-a6h.pdf">Datasheet</a></li>
</ul>
1
ON
2
3
4
5
6
7
8
>VALUE
>NAME
<b>DIP SWITCH</b>
<p>Half-size SMT DIP switch, 1.27 mm / 0.05" pitch. For example the following:</p>
<ul>
<li>A6H-2101 or A6H-2102 in Omron A6H series; <a href="http://www.omron.com/ecb/products/pdf/en-a6h.pdf">Datasheet</a></li>
<li>Digikey <a href="http://www.digikey.com/product-detail/en/A6H-2101/A6H-2101-ND/1811590">A6H-2101-ND</a></li>
</ul>
1
ON
2
>VALUE
>NAME
>NAME
>Value
Taiwan Alpha 1 pole, 10 pos rotary switch
Alpha PN SR2512F-0110-16f2b-c9-s-k
Arrows in tDocu denote pointer positions for 45-degree shaft, assuming a knob with a pointer that's opposite the set screw.
1
10
1
10
>NAME
>VALUE
>NAME
Works with 18650 clips PRT-13113.
+
-
>Name
>Value
2 bits, J-hook
>NAME
>VALUE
O
N
1
2
>NAME
>VALUE
ON
>NAME
>VALUE
>NAME
>VALUE
<h3>4.6 x 2.8mm Tactile Switch</h3>
<p><a href="http://www.digikey.com/product-detail/en/KMR231NG%20LFS/CKN10246CT-ND/2176497">Example</a></p>
>Name
>Value
>Name
>Value
<h3>Cherry MX Switch - Electromechanical Swith w/ LED</h3>
<p>Cherry MX Keyswitches are top-of-the-line mechanical keyboard switches. They’re satisfyingly “clicky”, reliable up to tens-of-millions of key presses, and a standard in gaming and programming keyboards across the globe. This ‘blue’ version Cherry MX Switch is favored by most due to its secondary internal actuator making it less likely to “double-tap.” If you are looking for a noticeably audible and high-quality key switch, this is the perfect option for you!</p>
<p><a href="https://www.sparkfun.com/products/13834">SparkFun Product Link</a></p>
+
-
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>VALUE
>Name
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
R
G
B
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
>Name
>Value
JOYSTICK
Joystick-PSP
>Value
>Name
Lipo
MAGNET
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>Value
>NAME
>VALUE
>Name
>Value
>Name
>Value
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
1
2
ON
>NAME
>VALUE
ON
1
2
3
4
5
6
7
8
>NAME
>VALUE
TRACKBALL
>NAME
>VALUE
>NAME
>VALUE
6400BG
HEAT
SINK
>NAME
>VALUE
>NAME
>VALUE
Simple rotary encode<br>
Center push button<br>
Gray code output<br>
No illumination
>NAME
>VALUE
>NAME
>VALUE
USB AB, 5-pins: USBVCC, GND, D+, D-, USBID.
USBAB
>VALUE
>NAME
>VALUE
W
R
B
>NAME
>VALUE
>NAME
>NAME
>VALUE
1
2
3
4
>NAME
1 pole, 10 position rotary switch
>NAME
>VALUE
1 2
ON
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<b>SPDT Slide Switch</b>
Simple SMD single-pull double-throw slide switch. Good for less than 350mA power switch, switching UARTs between devices, etc. Spark Fun Electronics SKU : COM-00597
<b>Battery Holders</b><br>
Various common sizes : AA, AAA, 18650 (PRT-12895), 20mm coin cell and 12mm coin cell.<br>
20MM_4LEGS, BATT-10373
Used with rubber key pads. This one was designed and proven to work with the PolyCase Key FOB enclosures.
Magnetic metal snaps. 18mm is DEV-08682.
Proven layout and schematic for 2x2 button pad. Panelize this device/fp to a 4x4 pad if needed. Spark Fun Electronics SKU : COM-07835. Compatible common cathode tri-color LED SKU : COM-00105
Proto layout and schematic for 2x2 button pad with single color LEDs (used on Simon board). Panelize this device/fp to a 4x4 pad if needed. Any single-color 5mm LED should be compatible. Spark Fun Electronics SKU : COM-07835.
Proto layout and schematic for 4x4 button pad. Spark Fun Electronics SKU : COM-07835. Compatible common cathode tri-color LED SKU : COM-00105
<b>Buzzer 12mm</b>
Spark Fun Electronics SKU : Comp-Buzzer
Generic copper pad for a capacitive touch sensor.
<h3>Fabrick.it Coin Cell Holder</h3>
Coin cell holder for 24.5mm rechargable coin cell
<h3>fabrick.it Conductive Ribbon Connector</h3>
Snap connector for Fabrick.it products
Omron NO solid state relay
<b>Thumb Joystick</b>
Joystick commonly found in PS2 controllers. Two pots and a select switch. Footprint proven. Spark Fun Electronics SKU : COM-09032
This is a footprint for the PSP-1000 Joystick. 4-pins: X, Y, Vcc and GND
Small 5-way tactile joystick, COM-10063<p>
4UCON SF303GJ26
Outlines for common LiPo batteries sold by SparkFun.<br>
For fit only- no pads or connectors!
Ceramic disc magnet, COM-08890
<b>Vibration Motor- ROB-08449</b>
Physical dimension and wire connections for this powerful vibration motor. Motor has a self adhesive backing.
Hall-effect based I2C analog mini-joystick with button
<b>Navigation Switch</b>
Three way navigation switch. Commonly used as up/down/select on MP3 players. Schematic element and footprint production proven. Spark Fun Electronics SKU : COM-08184
SPDT relay (COM-00100)
SPDT relay (COM-00101)
SPST SS relay
Slide-type potentiometers.
Small and meduim footprints untested.
<b>#4 Stand Off</b><p>
This is the mechanical footprint for a #4 phillips button head screw. Use the keepout ring to avoid running the screw head into surrounding components. SKU : PRT-00447
For use with a push-button switch made by CnK components.
DPDT Version of the COM-00597
Various NO switches- pushbuttons, reed, etc
<b>SPDT Switch</b><br>
Simple slide switch, Spark Fun Electronics SKU : COM-00102<br>
DPDT SMT slide switch, AYZ0202, SWCH-08179
SWCH-10651
Side-actuated SPDT slide switch, as used on the Arduino Pro
<b>DIP SWITCH</b>
<b>DIP Switch 8 Position</b>
Mechanical footprint for trackball
Turret FP for Keystone Electronics Part#1520
Multiwatt heatsink, PRT-09576
General speakers.
quadrature encoder from Top-Up, part#EC16PHBF-B-20F-24-24C-16Y
Potentiometer w/ switch.
Various small potentiometers for "set-and-forget" applications
Simple no LED rotary encoder<br>
Example: COM-09117
<H3>Illuminated Rotary Encoder w/ 2 LEDs</h3>
<h3>Illuminated Rotary Encoder w/ RGB LED and select switch</h3>
EC12PLRGBSDVBF-D: http://top-up.so-buy.com/front/bin/ptdetail.phtml?Part=EC12PLRGBSDVBF-D
<b>Small servo motor</b><br>
This is the small servo used in the SIK.<br>
SKU: ROB-09065
EZ is for Kits. There is no tStop (covering up the top side of the pads with mask). This helps the beginner see which side they should be soldering too.
A standoff intended to be an electrically connected point.<br>
Pad size and stop size allow for a #4 Phillips pan screw head to make a solid connection to the board.
Closed Switch for tutorial schematics. Not intended for PCB design.
Maps to 12mm tact switch, only because eagle won't place a part with no package defined.
The ordinary SWITCH-MOMENTARY-2 is likely to be more useful for regular schematics.
4 Position DIP Switch<br>
CTS series 219
SWCH-12120
SMD dip switch 2 positions
Aavid/Thermaloy Surface-Mount Heat Sinks<p>
<a href="http://media.digikey.com/pdf/Data%20Sheets/Aavid%20Thermal%20Technologies%20PDFs/Surface%20Mount%20Heat%20Sinks.pdf">Datasheet</a>
Three-pole, double-throw stomp switch.
<br><br>
Drawn as three separate gates for schematic clarity.
<h3>Cherry MX Switch - Electromechanical Swith w/ LED</h3>
<p>Cherry MX Keyswitches are top-of-the-line mechanical keyboard switches. They’re satisfyingly “clicky”, reliable up to tens-of-millions of key presses, and a standard in gaming and programming keyboards across the globe. This ‘blue’ version Cherry MX Switch is favored by most due to its secondary internal actuator making it less likely to “double-tap.” If you are looking for a noticeably audible and high-quality key switch, this is the perfect option for you!</p>
<p><a href="https://www.sparkfun.com/products/13834">SparkFun Product Link</a></p>
================================================
FILE: eagle/lbr/SparkFun-Passives.lbr
================================================
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
>Name
>Value
>Name
>Value
This is the "EZ" version of the .1" spaced ceramic thru-hole cap.<br>
It has reduced top mask to make it harder to put the component on the wrong side of the board.
>Name
>Value
>NAME
>VALUE
>Name
>Value
>NAME
>VALUE
>NAME
>VALUE
<b>CAPACITOR</b><p>
chip
>NAME
>VALUE
>Name
>Value
>Name
>Value
>NAME
>VALUE
>NAME
>VALUE
Land pattern for variable capacitor - Murata Electronics TZY2 - by Haas
>NAME
>VALUE
<h3>CAP-PTH-SMALL-KIT</h3>
Commonly used for small ceramic capacitors. Like our 0.1uF (http://www.sparkfun.com/products/8375) or 22pF caps (http://www.sparkfun.com/products/8571).<br>
<br>
<b>Warning:</b> This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
>NAME
>VALUE
>NAME
>VALUE
>Value
>Name
>Name
>Value
>Name
>Value
<b>Panasonic Aluminium Electrolytic Capacitor VS-Serie Package G</b>
>NAME
>VALUE
<b>Panasonic Aluminium Electrolytic Capacitor VS-Serie Package E</b>
>NAME
>VALUE
<b>Panasonic Aluminium Electrolytic Capacitor VS-Serie Package E</b>
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>Value
>Name
>Value
>Name
>NAME
>VALUE
>NAME
>VALUE
Type J2 package for SMD supercap PRT-10317 (p# EEC-EN0F204J2)
>NAME
>VALUE
<h3>EIA3528-KIT</h3>
<b>Warning:</b> This is the KIT version of this package. This package has longer pads to make hand soldering easier.<br>
>NAME
>VALUE
<h3>EIA3216-KIT</h3>
<b>Warning:</b> This is the KIT version of this package. This package has longer pads to make hand soldering easier.<br>
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
From: http://www.niccomp.com/catalog/npis_ls.pdf
>Name
>Value
>Name
>Value
<b>CAPACITOR</b><p>
chip
>NAME
>VALUE
1007 (2518 metric) package
>NAME
>VALUE
>Name
>Value
>NAME
>VALUE
1.3x1.3mm 1.7mm between. Fits Sumida CDRH2D09, CDRH2D18 inductor
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
>Name
>Value
>NAME
>VALUE
Small solder jumper with big paste layer so it will short during reflow.
>NAME
>VALUE
>NAME
>VALUE
Small solder jumper with no paste layer so it will open after reflow.
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>VALUE
PASTE
>NAME
>VALUE
>VALUE
PASTE
>Name
>Value
This is the "EZ" version of the standard .3" spaced resistor package.<br>
It has a reduced top mask to make it harder to install upside-down.
>Name
>Value
<b>RESISTOR</b><p>
chip
>NAME
>VALUE
>NAME
>VALUE
<b>CAPACITOR</b><p>
chip
>NAME
>VALUE
1/6W Thru-hole Resistor - *UNPROVEN*
>NAME
>VALUE
>NAME
>VALUE
1/4W Resistor, 0.4" wide<p>
Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a>
>Name
>Value
1/2W Resistor, 0.5" wide<p>
Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a>
>Name
>Value
1W Resistor, 0.6" wide<p>
Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a>
>Name
>Value
2W Resistor, 0.8" wide<p>
Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a>
>Name
>Value
<h3>AXIAL-0.3-KIT</h3>
Commonly used for 1/4W through-hole resistors. 0.3" pitch between holes.<br>
<br>
<b>Warning:</b> This is the KIT version of the AXIAL-0.3 package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
>Name
>Value
<b>Chip Resistor Array</b> size 4 × 0603<p>
convex termination - Phycomp Components<br>
Source: RS Components
>NAME
>VALUE
>NAME
>VALUE
Solder jumper, small, shorted with trace. No paste layer. Trace is cuttable.
>NAME
>VALUE
>NAME
>VALUE
<b>Solder jumper</b>
>NAME
>VALUE
<b>Solder jumper</b>
>NAME
>VALUE
>NAME
>VALUE
For Coiltronics/Cooper DR1030 series inductors
>NAME
>VALUE
>Value
>Name
>NAME
>VALUE
Footprint for Bourns SDR0403 family inductors
>VALUE
>NAME
>NAME
>VALUE
PASTE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>VALUE
PASTE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
>Name
>Value
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
V1
V2
>NAME
>VALUE
<b>Capacitor</b>
Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.
Variable, non-polarized capacitor
<b>Capacitor Polarized</b>
These are standard SMD and PTH capacitors. Normally 10uF, 47uF, and 100uF in electrolytic and tantalum varieties. Always verify the external diameter of the through hole cap, it varies with capacity, voltage, and manufacturer. The EIA devices should be standard.
<b>Inductors</b><p>
Basic Inductor/Choke - 0603 and 1206. Footprints are not proven and vary greatly between part numbers.<br>
INDUCTOR POWER 3.3UH 4.0A SMD<br>
0.197" L x 0.197" W x 0.177" H (5.00mm x 5.00mm x 4.50mm)
<b>Resistor</b>
Basic schematic elements and footprints for 0603, 1206, and PTH resistors.
<b>Array Chip Resistor</b><p>
Source: RS Component / Phycomp
BOURNS 4600X series thick-film SIP resistor packs<br>
<br>
Five resistors bussed to a single pin (denoted by dot).<br>
0.2W / resistor<br>
<a href="http://dlnmh9ip6v2uc.cloudfront.net/datasheets/Components/General/4600x.pdf">datasheet</a><br>
<br>
SFE parts COM-10855 (330), COM-10856 (10K)<br>
Bare copper test points for troubleshooting or ICT
Use to make a connection of multiple grounds in only one place.
Package for connecting two ground nets in one place.
================================================
FILE: eagle/lbr/oshw.lbr
================================================
<p><strong>Open Source Hardware PCB Logos</strong>
<p>A simple polygon based version of the OSHWA logos for use on Eagle PCB's
<p>For use please refer to the OSHWA definition at <a href="http://www.oshwa.org/definition/">http://www.oshwa.org/definition/</a>
<p>Based on the NBitWonder version (<a href="http://nbitwonder.com">http://nbitwonder.com</a>)
<p><strong>Andrew Cooper</strong><br>28Nov2016<br><a href="http://www.darkerview.com">www.DarkerView.com</a>
open source
hardware
open source
hardware
open source
hardware
OSHW Logo
<p>The OSHW logo for PCB layout
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
================================================
FILE: eagle/lbr/pinhead+.lbr
================================================
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
CON-M-1X5-200
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>UNSH HEADER</b> 2.0mm VERTICAL TMT<p>
Source: https://portal.fciconnect.com/res/en/pdffiles/doc_search/57102.pdf
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER 100 pol.</b> Grid 2.54mm<p>
>NAME
>VALUE
<b>PIN HEADER 70 pol.</b> Grid 2.54mm<p>
>NAME
>VALUE
<b>PIN HEADER 40 pol.</b> Grid 2.54mm<p>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>2mm Center - .020 inch Square Pin - Single Row Straight Header</b><p>
Source: http://www.commcon.com/main
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
PIN HEADER
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER 100 pol.</b> Grid 2.54mm<p>
<b>PIN HEADER 70 pol.</b> Grid 2.54mm<p>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
<b>PIN HEADER</b>
================================================
FILE: eagle/lbr/switch-ck.lbr
================================================
<b>C&K Swtiches</b> - v1.00<p>
THIS LIBRARY IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED.
USE AT YOUR OWN RISK!
<p>Copyright (C) 2011, Bob Starr<br>
http://www.bobstarr.net
<b>TOGGLE SWITCH</b>
>NAME
>VALUE
>LABEL
<b>PUSHBUTTON SWITCH</b>
>NAME
>VALUE
<b>PUSHBUTTON SWITCH</b>
>NAME
>VALUE
SLIDE SWITCH
>NAME
>VALUE
>LABEL
DPDT SLIDE SWITCH
>NAME
>VALUE
<b>DIP/CODE SWITCH</b><p>
10mm DIP Coded Rotary Switches
>NAME
>VALUE
Tactile Switch<p>6MM
>NAME
>VALUE
>LABEL
TACT SWITCH
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>PART
>VALUE
>VALUE
>PART
>VALUE
>PART
>NAME
>VALUE
>VALUE
>NAME
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
TOGGLE SWITCH
PUSH BUTTON SWITCH
PUSH BUTTON SWITCH
SLIDE SWITCH
DPDT SLIDE SWITCH
<b>HEX CODE SWITCH</b>
TACT SWITCH
TACT SWITCH<p>
Ultra Low Profile SMT Top Actuated
================================================
FILE: eagle/lbr/usb-serial.lbr
================================================
<b>SMALL OUTLINE INTEGRATED CIRCUIT</b><p>
16-Pin (150-Mil) SOIC<br>
Source: http://www.cypress.com .. 38-12025_0P_V.pdf
CH340G
CH340G
================================================
FILE: eagle/max10adc_v8.brd
================================================
Right
USB
5V selector
Haasoscope v8.81
pin1
pin1
by Dr. Andy Haas
1
50.0
Reset
50
1M
1M
50
1M
200
200
200
200
0.1uF
0.1uF
0.1uF
0.1uF
22pF
560 Ohm
10k
10nF
1nF+56pF
1nF+56pF
1nF+56pF
1nF+56pF
10k
10pF
10pF
Normal
gain
Normal
gain
560
3.3V power
Negative
10pF
10pF
low gain
high gain
high gain
low gain
3.3V
5V
GND
121
ExtTrig
AIN1
10nF
AIN6
AIN14
B0 E24
E24 B7
101
GND
3.3V
100
91
90
89
88
GND
5V
5V
GND
110
111
113
114
118
119
29
122
140
135
134
131
132
130
127
124
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012
>NAME
>VALUE
<b>LEDs</b><p>
<author>Created by librarian@cadsoft.de</author><br>
Extended by Federico Battaglin <author><federico.rd@fdpinternational.com></author> with DUOLED
<b>SML0805-2CW-TR (0805 PROFILE)</b> COOL WHITE<p>
Source: http://www.ledtronics.com/ds/smd-0603/Dstr0093.pdf
>NAME
>VALUE
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>EQFP144</b><p>
Source: http://www.altera.com/literature/ds/144-EQFP.pdf
>NAME
>VALUE
<b>Crystals and Crystal Resonators</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>3.3Vdc CMOS SMD CRYSTAL CLOCK OSCILLATOR</b> ASE Series<p>
Source: www.abracon.com
>NAME
>VALUE
<b>SMALL OUTLINE TRANSISTOR</b>
>NAME
>VALUE
<b>LAB11</b> - Connectors for various cable types.
>NAME
48 TQFN-EP Package IPC7351
>NAME
>VALUE
>value
>name
>name
>value
>name
>name
>value
>name
>NAME
>NAME
<b>Description:</b> Standard 4.2MM Tact Switch Package.Based off C&K PTS 810 Series Tact Switch.<br/>
>NAME
*
*
>Name
<b>Single and Dual Gates Family, US symbols</b><p>
Little logic devices from Texas Instruments<br>
TinyLogic(R) from FAIRCHILD Semiconductor TM
<p>
<author>Created by evgeni@eniks.com</author><br>
<author>Extended by librarian@cadsoft.de</author>
<b>DBV (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SOT-23) - DBV<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>Single and Dual Gates Family, US symbols</b><p>
Little logic devices from Texas Instruments<br>
TinyLogic(R) from FAIRCHILD Semiconductor TM
<p>
<author>Created by evgeni@eniks.com</author><br>
<author>Extended by librarian@cadsoft.de</author>
<b>DBV (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SOT-23) - DBV<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>Microchip PIC Microcontrollers and other Devices</b><p>
Based on the following sources :
<ul>
<li>Microchip Data Book, 1993
<li>THE EMERGING WORLD STANDARD, 1995/1996
<li>Microchip, Technical Library CD-ROM, June 1998
<li>www.microchip.com
</ul>
<author>Created by librarian@cadsoft.de</author>
<b>Shrink Small Outline Package</b><p>
package type SS
>NAME
>VALUE
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>SMALL OUTLINE INTEGRATED CIRCUIT</b><p>
16-Pin (150-Mil) SOIC<br>
Source: http://www.cypress.com .. 38-12025_0P_V.pdf
CH340G
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find crystals and oscillators and other things that go "tick".<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<B>CRYSTAL</B>
>VALUE
>NAME
<b>10-Lead Mini Small Outline Package [MSOP]</b> (RM-10)<p>
Source: http://www.analog.com/UploadedFiles/Data_Sheets/35641221898805SSM2167_b.pdf<br>
COMPLIANT TO JEDEC STANDARDS MO-187BA
>NAME
>VALUE
>value
>name
>name
<b>Relays</b><p>
<ul>
<li>Eichhoff
<li>Finder
<li>Fujitsu
<li>HAMLIN
<li>OMRON
<li>Matsushita
<li>NAiS
<li>Siemens
<li>Schrack
</ul>
<author>Created by librarian@cadsoft.de</author>
<b>SOP 04 - 4.3x4.4mm RM 2.54mm</b> AQY21, AQY22, AQY61 Series NAiS<p>Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
SOP 04 - 4.3x4.4mm RM 2.54mm AQY21, AQY22, AQY61 Series NAiSSource: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
>NAME
>VALUE
Land pattern for variable capacitor - Murata Electronics TZY2 - by Haas
>NAME
>VALUE
<p><strong>Open Source Hardware PCB Logos</strong>
<p>A simple polygon based version of the OSHWA logos for use on Eagle PCB's
<p>For use please refer to the OSHWA definition at <a href="http://www.oshwa.org/definition/">http://www.oshwa.org/definition/</a>
<p>Based on the NBitWonder version (<a href="http://nbitwonder.com">http://nbitwonder.com</a>)
<p><strong>Andrew Cooper</strong><br>28Nov2016<br><a href="http://www.darkerview.com">www.DarkerView.com</a>
open source
hardware
<b>EAGLE Design Rules</b>
<p>
The default Design Rules have been set to cover
a wide range of applications. Your particular design
may have different requirements, so please make the
necessary adjustments and save your customized
design rules under a new name.
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/max10adc_v8.sch
================================================
<b>Supply Symbols</b><p>
GND, VCC, 0V, +5V, -5V, etc.<p>
Please keep in mind, that these devices are necessary for the
automatic wiring of the supply signals.<p>
The pin name defined in the symbol is identical to the net which is to be wired automatically.<p>
In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p>
<author>Created by librarian@cadsoft.de</author>
>VALUE
>VALUE
>VALUE
<b>SUPPLY SYMBOL</b>
<b>SUPPLY SYMBOL</b>
<b>SUPPLY SYMBOL</b>
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 3 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 4 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 6 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm + 5 mm, outline 2.4 x 7 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
Horizontal, grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 3.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 4.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 5.2 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 4.3 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 5.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 6.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 5.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 6.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 7.2 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 8.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 9.1 x 18.2 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 6.2 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 7.4 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 8.7 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 10.8 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 11.3 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 9.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 11.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 13.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 20.5 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 13.7 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 16.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 18.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 19.2 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 20.3 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 15.5 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 6.3 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 15.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 17.3 x 31.6 mm
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0204 reflow solder</b><p>
Metric Code Size 1005
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0603 reflow solder</b><p>
Metric Code Size 1608
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1206 reflow solder</b><p>
Metric Code Size 3216
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1210 reflow solder</b><p>
Metric Code Size 3225
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1812 reflow solder</b><p>
Metric Code Size 4532
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1825 reflow solder</b><p>
Metric Code Size 4564
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2220 reflow solder</b><p>Metric Code Size 5650
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2225 reflow solder</b><p>Metric Code Size 5664
>NAME
>VALUE
<b> </b><p>
Source: http://www.vishay.com/docs/10129/hpc0201a.pdf
>NAME
>VALUE
Source: http://www.avxcorp.com/docs/catalogs/cx5r.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
>NAME
>VALUE
<B>CAPACITOR</B>, European symbol
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b><p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 10 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 12 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 15mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 10mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 3.81 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 17.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0817, grid 22.5 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type 0817, grid 6.35 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type V234, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V235, grid 17.78 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V526-0, grid 2.5 mm
>NAME
>VALUE
<b>CECC Size RC2211</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC2211</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 7.5 mm
>NAME
>VALUE
0922
<b>RESISTOR</b><p>
type RDH, grid 15 mm
>NAME
>VALUE
RDH
<b>Mini MELF 0102 Axial</b>
>NAME
>VALUE
<b>RESISTOR</b> chip<p>
Source: http://www.vishay.com/docs/20008/dcrcw.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR52<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR53<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR54<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR56<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC60<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Package 4527</b><p>
Source: http://www.vishay.com/docs/31059/wsrhigh.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>CRCW1218 Thick Film, Rectangular Chip Resistors</b><p>
Source: http://www.vishay.com .. dcrcw.pdf
>NAME
>VALUE
<b>Chip Monolithic Ceramic Capacitors</b> Medium Voltage High Capacitance for General Use<p>
Source: http://www.murata.com .. GRM43DR72E224KW01.pdf
>NAME
>VALUE
<b>PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)</b><p>
Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<B>RESISTOR</B>, European symbol
<b>EQFP144</b><p>
Source: http://www.altera.com/literature/ds/144-EQFP.pdf
>NAME
>VALUE
>NAME
>VALUE
<b>Crystals and Crystal Resonators</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>3.3Vdc CMOS SMD CRYSTAL CLOCK OSCILLATOR</b> ASE Series<p>
Source: www.abracon.com
>NAME
>VALUE
>NAME
>VALUE
VDD
GND
OUT
TRI
<b>3.3Vdc CMOS SMD CRYSTAL CLOCK OSCILLATOR</b><p>
SOurce: www.abracon.com
<b>LEDs</b><p>
<author>Created by librarian@cadsoft.de</author><br>
Extended by Federico Battaglin <author><federico.rd@fdpinternational.com></author> with DUOLED
<b>CHICAGO MINIATURE LAMP, INC.</b><p>
7022X Series SMT LEDs 1206 Package Size
>NAME
>VALUE
<B>LED</B><p>
5 mm, square, Siemens
>NAME
>VALUE
<B>LED</B><p>
2 x 5 mm, rectangle
>NAME
>VALUE
<B>LED</B><p>
3 mm, round
>NAME
>VALUE
<B>LED</B><p>
5 mm, round
>NAME
>VALUE
<B>LED</B><p>
1 mm, round, Siemens
>NAME
>VALUE
<B>LED BLOCK</B><p>
1 LED, Siemens
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
A+
K-
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
>NAME
>VALUE
+
-
<B>IR LED</B><p>
infrared emitting diode, Infineon
TO-18, lead spacing 2.54 mm, cathode marking<p>
Inifineon
>NAME
>VALUE
<B>IR LED</B><p>
infrared emitting diode, Infineon
TO-18, lead spacing 2.54 mm, cathode marking<p>
Inifineon
>NAME
>VALUE
<B>LED</B><p>
rectangle, 5.7 x 3.2 mm
>NAME
>VALUE
<B>IR LED</B><p>
IR transmitter Siemens
>NAME
>VALUE
<b>TOPLED® High-optical Power LED (HOP)</b><p>
Source: http://www.osram.convergy.de/ ... ls_t675.pdf
>NAME
>VALUE
A
C
<b>BLUE LINETM Hyper Mini TOPLED® Hyper-Bright LED</b><p>
Source: http://www.osram.convergy.de/ ... LB M676.pdf
A
C
>NAME
>VALUE
<b>Super SIDELED® High-Current LED</b><p>
LG A672, LP A672 <br>
Source: http://www.osram.convergy.de/ ... LG_LP_A672.pdf (2004.05.13)
C
A
>NAME
>VALUE
<b>SmartLEDTM Hyper-Bright LED</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY L896.pdf
>NAME
>VALUE
<b>Hyper TOPLED® RG Hyper-Bright LED</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY T776.pdf
>NAME
>VALUE
A
C
<b>Hyper Micro SIDELED®</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY Y876.pdf
>NAME
>VALUE
<b>Power TOPLED®</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LA_LY E67B.pdf
>NAME
>VALUE
C
A
C
C
<b>Hyper CHIPLED Hyper-Bright LED</b><p>
LB Q993<br>
Source: http://www.osram.convergy.de/ ... Lb_q993.pdf
>NAME
>VALUE
<b>Hyper CHIPLED Hyper-Bright LED</b><p>
LB R99A<br>
Source: http://www.osram.convergy.de/ ... lb_r99a.pdf
>NAME
>VALUE
<b>Mini TOPLED Santana®</b><p>
Source: http://www.osram.convergy.de/ ... LG M470.pdf
>NAME
>VALUE
<b>CHIPLED</b><p>
Source: http://www.osram.convergy.de/ ... LG_R971.pdf
>NAME
>VALUE
<b>CHIPLED</b><p>
Source: http://www.osram.convergy.de/ ... LG_LY N971.pdf
>NAME
>VALUE
<b>CHIPLED</b><p>
Source: http://www.osram.convergy.de/ ... LG_LY Q971.pdf
>NAME
>VALUE
<b>CHIPLED-0603</b><p>
Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603<br>
Package able to withstand TTW-soldering heat<br>
Package suitable for TTW-soldering<br>
Source: http://www.osram.convergy.de/ ... LO_LS_LY L89K.pdf
>NAME
>VALUE
<b>SmartLED TTW</b><p>
Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603<br>
Package able to withstand TTW-soldering heat<br>
Package suitable for TTW-soldering<br>
Source: http://www.osram.convergy.de/ ... LO_LS_LY L89K.pdf
>NAME
>VALUE
<b>Lumileds Lighting. LUXEON®</b> with cool pad<p>
Source: K2.pdf
>NAME
>VALUE
<b>Lumileds Lighting. LUXEON®</b> without cool pad<p>
Source: K2.pdf
>NAME
>VALUE
<B>LED</B><p>
10 mm, round
>NAME
>VALUE
<b>SURFACE MOUNT LED LAMP</b> 3.5x2.8mm<p>
Source: http://www.kingbright.com/manager/upload/pdf/KA-3528ASYC(Ver1189474662.1)
>NAME
>VALUE
<b>SML0805-2CW-TR (0805 PROFILE)</b> COOL WHITE<p>
Source: http://www.ledtronics.com/ds/smd-0603/Dstr0093.pdf
>NAME
>VALUE
<b>SML10XXKH-TR (HIGH INTENSITY) LED</b><p>
<table>
<tr><td>SML10R3KH-TR</td><td>ULTRA RED</td></tr>
<tr><td>SML10E3KH-TR</td><td>SUPER REDSUPER BLUE</td></tr>
<tr><td>SML10O3KH-TR</td><td>SUPER ORANGE</td></tr>
<tr><td>SML10PY3KH-TR</td><td>PURE YELLOW</td></tr>
<tr><td>SML10OY3KH-TR</td><td>ULTRA YELLOW</td></tr>
<tr><td>SML10AG3KH-TR</td><td>AQUA GREEN</td></tr>
<tr><td>SML10BG3KH-TR</td><td>BLUE GREEN</td></tr>
<tr><td>SML10PB1KH-TR</td><td>SUPER BLUE</td></tr>
<tr><td>SML10CW1KH-TR</td><td>WHITE</td></tr>
</table>
Source: http://www.ledtronics.com/ds/smd-1206/dstr0094.PDF
>NAME
>VALUE
<b>SML0603-XXX (HIGH INTENSITY) LED</b><p>
<table>
<tr><td>AG3K</td><td>AQUA GREEN</td></tr>
<tr><td>B1K</td><td>SUPER BLUE</td></tr>
<tr><td>R1K</td><td>SUPER RED</td></tr>
<tr><td>R3K</td><td>ULTRA RED</td></tr>
<tr><td>O3K</td><td>SUPER ORANGE</td></tr>
<tr><td>O3KH</td><td>SOFT ORANGE</td></tr>
<tr><td>Y3KH</td><td>SUPER YELLOW</td></tr>
<tr><td>Y3K</td><td>SUPER YELLOW</td></tr>
<tr><td>2CW</td><td>WHITE</td></tr>
</table>
Source: http://www.ledtronics.com/ds/smd-0603/Dstr0092.pdf
>NAME
>VALUE
>NAME
>VALUE
<b>LED</b><p>
<u>OSRAM</u>:<br>
- <u>CHIPLED</u><br>
LG R971, LG N971, LY N971, LG Q971, LY Q971, LO R971, LY R971
LH N974, LH R974<br>
LS Q976, LO Q976, LY Q976<br>
LO Q996<br>
- <u>Hyper CHIPLED</u><br>
LW Q18S<br>
LB Q993, LB Q99A, LB R99A<br>
- <u>SideLED</u><br>
LS A670, LO A670, LY A670, LG A670, LP A670<br>
LB A673, LV A673, LT A673, LW A673<br>
LH A674<br>
LY A675<br>
LS A676, LA A676, LO A676, LY A676, LW A676<br>
LS A679, LY A679, LG A679<br>
- <u>Hyper Micro SIDELED®</u><br>
LS Y876, LA Y876, LO Y876, LY Y876<br>
LT Y87S<br>
- <u>SmartLED</u><br>
LW L88C, LW L88S<br>
LB L89C, LB L89S, LG L890<br>
LS L89K, LO L89K, LY L89K<br>
LS L896, LA L896, LO L896, LY L896<br>
- <u>TOPLED</u><br>
LS T670, LO T670, LY T670, LG T670, LP T670<br>
LSG T670, LSP T670, LSY T670, LOP T670, LYG T670<br>
LG T671, LOG T671, LSG T671<br>
LB T673, LV T673, LT T673, LW T673<br>
LH T674<br>
LS T676, LA T676, LO T676, LY T676, LB T676, LH T676, LSB T676, LW T676<br>
LB T67C, LV T67C, LT T67C, LS T67K, LO T67K, LY T67K, LW E67C<br>
LS E67B, LA E67B, LO E67B, LY E67B, LB E67C, LV E67C, LT E67C<br>
LW T67C<br>
LS T679, LY T679, LG T679<br>
LS T770, LO T770, LY T770, LG T770, LP T770<br>
LB T773, LV T773, LT T773, LW T773<br>
LH T774<br>
LS E675, LA E675, LY E675, LS T675<br>
LS T776, LA T776, LO T776, LY T776, LB T776<br>
LHGB T686<br>
LT T68C, LB T68C<br>
- <u>Hyper Mini TOPLED®</u><br>
LB M676<br>
- <u>Mini TOPLED Santana®</u><br>
LG M470<br>
LS M47K, LO M47K, LY M47K
<p>
Source: http://www.osram.convergy.de<p>
<u>LUXEON:</u><br>
- <u>LUMILED®</u><br>
LXK2-PW12-R00, LXK2-PW12-S00, LXK2-PW14-U00, LXK2-PW14-V00<br>
LXK2-PM12-R00, LXK2-PM12-S00, LXK2-PM14-U00<br>
LXK2-PE12-Q00, LXK2-PE12-R00, LXK2-PE12-S00, LXK2-PE14-T00, LXK2-PE14-U00<br>
LXK2-PB12-K00, LXK2-PB12-L00, LXK2-PB12-M00, LXK2-PB14-N00, LXK2-PB14-P00, LXK2-PB14-Q00<br>
LXK2-PR12-L00, LXK2-PR12-M00, LXK2-PR14-Q00, LXK2-PR14-R00<br>
LXK2-PD12-Q00, LXK2-PD12-R00, LXK2-PD12-S00<br>
LXK2-PH12-R00, LXK2-PH12-S00<br>
LXK2-PL12-P00, LXK2-PL12-Q00, LXK2-PL12-R00
<p>
Source: www.luxeon.com<p>
<u>KINGBRIGHT:</U><p>
KA-3528ASYC<br>
Source: www.kingbright.com
<b>SMALL OUTLINE TRANSISTOR</b>
>NAME
>VALUE
>NAME
>VALUE
310030097
<b>LAB11</b> - Connectors for various cable types.
>NAME
>NAME
>VALUE
CONN BNC JACK R/A 50 OHM PCB
48 TQFN-EP Package IPC7351
>NAME
>VALUE
PINOUT for the Max19506
>NAME
>VALUE
The MAX19506 dual-channel, analog-to-digital converter
(ADC) provides 8-bit resolution and a maximum sample
rate of 100Msps.
>value
>name
>name
>value
>name
>name
>value
>name
>name
>value
>name
>value
320020122
320020026
320030076
>NAME
>NAME
>NAME
>VALUE
>NAME
>NAME
>NAME
USB PORT
>NAME
>VALUE
5V
D-
D+
ID
GND
SHIELD
<b>Description:</b> Standard 6MM Tact Switch Package.<br/>
>NAME
<b>Description:</b> Standard 4.2MM Tact Switch Package.Based off C&K PTS 810 Series Tact Switch.<br/>
>NAME
<b>Description:</b> Tact Switch Symbol.<br/>
>NAME
>VALUE
<b>Library:</b> MF_Switches<br/>
<b>Description:</b> Device for Tact Switches. Manufacture part number (MFG#) can be added via Attributes.<br/>
*
*
>Name
*
*
>Name
*
*
>Name
>Name
>Value
<b>Single and Dual Gates Family, US symbols</b><p>
Little logic devices from Texas Instruments<br>
TinyLogic(R) from FAIRCHILD Semiconductor TM
<p>
<author>Created by evgeni@eniks.com</author><br>
<author>Extended by librarian@cadsoft.de</author>
<b>YZP (R-XBGA-N6)</b> DIE-SIZE BALL GRID ARRAY<p>
NanoFree TM - WCSP (DSBGA) 0.23-mm Large Bump - YZP (Pb-free)<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157
>NAME
>VALUE
<b>DBV (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SOT-23) - DBV<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>DCK (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SC-70) - DCK<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>DRL (R-PDSO-N6)</b> PLASTIC SMALL OUTLINE<p>
SOT (SOT-553) - DRL<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.pdf
>NAME
>VALUE
<b>YEP (R-XBGA-N6)</b> DIE-SIZE BALL GRID ARRAY<p>
NanoStar TM - WCSP (DSBG A)0.23-mm Large Bump - YEP<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157
>NAME
>VALUE
>NAME
>VALUE
>NAME
GND
VCC
<b>Single-Pole, Double-Throw Analog Switch</b><p>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.pdf
<b>Microchip PIC Microcontrollers and other Devices</b><p>
Based on the following sources :
<ul>
<li>Microchip Data Book, 1993
<li>THE EMERGING WORLD STANDARD, 1995/1996
<li>Microchip, Technical Library CD-ROM, June 1998
<li>www.microchip.com
</ul>
<author>Created by librarian@cadsoft.de</author>
<B>Dual In Line</B><p>
package type P
>NAME
>VALUE
<B>28-Lead Plastic Small Outline (SO) </B> Wide, 300 mil Body (SOIC)</B><p>
Source: http://ww1.microchip.com/downloads/en/devicedoc/39632c.pdf
>NAME
>VALUE
<b>Shrink Small Outline Package</b><p>
package type SS
>NAME
>VALUE
<b>QFN28-ML_6X6MM</b><p>
Source: http://www.microchip.com .. 39637a.pdf
>NAME
>VALUE
>NAME
>VALUE
<b>http://ww1.microchip.com/downloads/en/DeviceDoc/21952a.pdf</b><p>
Source: http://ww1.microchip.com/downloads/en/DeviceDoc/21952a.pdf
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 3 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 4 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 6 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm + 5 mm, outline 2.4 x 7 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
Horizontal, grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 3.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 4.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 5.2 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 4.3 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 5.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 6.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 5.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 6.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 7.2 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 8.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 9.1 x 18.2 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 6.2 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 7.4 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 8.7 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 10.8 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 11.3 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 9.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 11.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 13.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 20.5 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 13.7 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 16.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 18.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 19.2 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 20.3 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 15.5 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 6.3 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 15.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 17.3 x 31.6 mm
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0204 reflow solder</b><p>
Metric Code Size 1005
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0603 reflow solder</b><p>
Metric Code Size 1608
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1206 reflow solder</b><p>
Metric Code Size 3216
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1210 reflow solder</b><p>
Metric Code Size 3225
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1812 reflow solder</b><p>
Metric Code Size 4532
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1825 reflow solder</b><p>
Metric Code Size 4564
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2220 reflow solder</b><p>Metric Code Size 5650
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2225 reflow solder</b><p>Metric Code Size 5664
>NAME
>VALUE
Source: http://www.avxcorp.com/docs/catalogs/cx5r.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b><p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 10 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 12 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 15mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 10mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 3.81 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 17.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0817, grid 22.5 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type 0817, grid 6.35 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type V234, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V235, grid 17.78 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V526-0, grid 2.5 mm
>NAME
>VALUE
<b>Mini MELF 0102 Axial</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 7.5 mm
>NAME
>VALUE
0922
<b>CECC Size RC2211</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC2211</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>RESISTOR</b><p>
type RDH, grid 15 mm
>NAME
>VALUE
RDH
<b>RESISTOR</b><p>
type 0204, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b> chip<p>
Source: http://www.vishay.com/docs/20008/dcrcw.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC60<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR52<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR53<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR54<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR56<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Package 4527</b><p>
Source: http://www.vishay.com/docs/31059/wsrhigh.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>CRCW1218 Thick Film, Rectangular Chip Resistors</b><p>
Source: http://www.vishay.com .. dcrcw.pdf
>NAME
>VALUE
<b>Chip Monolithic Ceramic Capacitors</b> Medium Voltage High Capacitance for General Use<p>
Source: http://www.murata.com .. GRM43DR72E224KW01.pdf
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<B>CAPACITOR</B>, American symbol
<B>RESISTOR</B>, American symbol
<b>SMALL OUTLINE INTEGRATED CIRCUIT</b><p>
16-Pin (150-Mil) SOIC<br>
Source: http://www.cypress.com .. 38-12025_0P_V.pdf
CH340G
CH340G
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find crystals and oscillators and other things that go "tick".<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<b>CRYSTAL</b>
>NAME
>VALUE
<b>CRYSTAL</b>
>NAME
>VALUE
<b>CRYSTAL</b>
>NAME
>VALUE
<b>CRYSTAL</b>
>NAME
>VALUE
<B>CRYSTAL</B>
>VALUE
>NAME
>Name
>Value
>NAME
>VALUE
32kHz crystal package<br>
This is the "EZ" version, which has limited top masking for improved ease of assembly.
>NAME
>VALUE
>NAME
>VALUE
<h3>3.2 x 1.5mm Crystal Package</h3>
<p>e.g: <a href="http://www.sii.co.jp/en/quartz/files/2013/03/file_PRODUCT_MASTER_50812_GRAPHIC03.pdf">SX-32S</a></p>
>Name
>Value
>NAME
>VALUE
1
2
Various standard crystals. Proven footprints.
<b>10-Lead Mini Small Outline Package [MSOP]</b> (RM-10)<p>
Source: http://www.analog.com/UploadedFiles/Data_Sheets/35641221898805SSM2167_b.pdf<br>
COMPLIANT TO JEDEC STANDARDS MO-187BA
>NAME
>VALUE
>value
>name
>name
>name
>value
320030059
<b>Relays</b><p>
<ul>
<li>Eichhoff
<li>Finder
<li>Fujitsu
<li>HAMLIN
<li>OMRON
<li>Matsushita
<li>NAiS
<li>Siemens
<li>Schrack
</ul>
<author>Created by librarian@cadsoft.de</author>
<b>SOP 04 - 4.3x4.4mm RM 2.54mm</b> AQY21, AQY22, AQY61 Series NAiS<p>Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<b>SMD 04 9.4x8.8mm RM 5.08mm</b> NAiS<p>
Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<b>DIL 04</b> NAiS<p>
Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
SOP 04 - 4.3x4.4mm RM 2.54mm AQY21, AQY22, AQY61 Series NAiSSource: http://www.mew-europe.com/.. pti_en.pdf
SMD 04 9.4x8.8mm RM 5.08mm NAiS
Source: http://www.mew-europe.com/.. pti_en.pdf
DIL 04 NAiS
Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<b>PhotoMOS Relay</b> NAiS<p>
Source: http://www.panasonic-electric-works.com/catalogues/downloads/photomos/ds_x615_en_aqz10_20.pdf
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
>Name
>Value
>NAME
>VALUE
From: http://www.niccomp.com/catalog/npis_ls.pdf
>Name
>Value
>Name
>Value
<b>CAPACITOR</b><p>
chip
>NAME
>VALUE
>NAME
>VALUE
1007 (2518 metric) package
>NAME
>VALUE
>Name
>Value
>NAME
>VALUE
>NAME
>VALUE
1.3x1.3mm 1.7mm between. Fits Sumida CDRH2D09, CDRH2D18 inductor
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
>Name
>Value
For Coiltronics/Cooper DR1030 series inductors
>NAME
>VALUE
1W Resistor, 0.6" wide<p>
Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a>
>Name
>Value
>Value
>Name
>NAME
>VALUE
Footprint for Bourns SDR0403 family inductors
>VALUE
>NAME
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
Land pattern for variable capacitor - Murata Electronics TZY2 - by Haas
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<b>Inductors</b><p>
Basic Inductor/Choke - 0603 and 1206. Footprints are not proven and vary greatly between part numbers.<br>
INDUCTOR POWER 3.3UH 4.0A SMD<br>
0.197" L x 0.197" W x 0.177" H (5.00mm x 5.00mm x 4.50mm)
Variable, non-polarized capacitor
<h3>SparkFun Power Symbols</h3>
This library contains power, ground, and voltage-supply symbols.
<br>
<br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application.
<br>
<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>.
<br>
<br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br>
<br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<h3>VCC Analog Voltage Supply</h3>
>VALUE
<h3>Analog VCC Voltage Supply</h3>
<p>Generic analog supply symbol.</p>
<p><strong>Open Source Hardware PCB Logos</strong>
<p>A simple polygon based version of the OSHWA logos for use on Eagle PCB's
<p>For use please refer to the OSHWA definition at <a href="http://www.oshwa.org/definition/">http://www.oshwa.org/definition/</a>
<p>Based on the NBitWonder version (<a href="http://nbitwonder.com">http://nbitwonder.com</a>)
<p><strong>Andrew Cooper</strong><br>28Nov2016<br><a href="http://www.darkerview.com">www.DarkerView.com</a>
open source
hardware
open source
hardware
open source
hardware
OSHW Logo
<p>The OSHW logo for PCB layout
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/max10adc_v9.0.brd
================================================
Right
USB
5V selector
Haasoscope v9.01
pin1
pin1
by Dr. Andy Haas
1
50MHz
Reset
50
50
1M
200
200
200
200
22pF
560 Ohm
10nF
Super gain
3.3V
power
low gain
high gain
high gain
low gain
3.3V
5V
GND
121
ExtTrig
AIN1
10nF
AIN6
AIN14
101
GND
3.3V
100
91
90
89
88
GND
5V
5V
GND
110
111
113
114
118
119
105
122
140
135
134
131
132
130
127
124
GND
RX L
TRIG
OUT
TX L
TRIG
IN
5V
SPR L
CLK
OUT
GND
RX
TX
TRG
IN
TRG
OUT
5V
SPR
CLK
IN
1.6mm
Super gain
50
50
Super gain
50
EIO1
EIO2
EIO3
EIO4
141_SCL
21_SDA
3.3V
GND
JTAG
CH 0
CH 1
CH 2
CH 3
10k
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012
>NAME
>VALUE
<b>LEDs</b><p>
<author>Created by librarian@cadsoft.de</author><br>
Extended by Federico Battaglin <author><federico.rd@fdpinternational.com></author> with DUOLED
<b>SML0805-2CW-TR (0805 PROFILE)</b> COOL WHITE<p>
Source: http://www.ledtronics.com/ds/smd-0603/Dstr0093.pdf
>NAME
>VALUE
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>EQFP144</b><p>
Source: http://www.altera.com/literature/ds/144-EQFP.pdf
>NAME
>VALUE
<b>Crystals and Crystal Resonators</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>3.3Vdc CMOS SMD CRYSTAL CLOCK OSCILLATOR</b> ASE Series<p>
Source: www.abracon.com
>NAME
>VALUE
<b>SMALL OUTLINE TRANSISTOR</b>
>NAME
>VALUE
<b>LAB11</b> - Connectors for various cable types.
>NAME
48 TQFN-EP Package IPC7351
>NAME
>VALUE
>value
>name
>name
>value
>name
>name
>value
>name
>NAME
<b>Description:</b> Standard 4.2MM Tact Switch Package.Based off C&K PTS 810 Series Tact Switch.<br/>
>NAME
*
*
>Name
<b>Single and Dual Gates Family, US symbols</b><p>
Little logic devices from Texas Instruments<br>
TinyLogic(R) from FAIRCHILD Semiconductor TM
<p>
<author>Created by evgeni@eniks.com</author><br>
<author>Extended by librarian@cadsoft.de</author>
<b>DBV (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SOT-23) - DBV<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>Single and Dual Gates Family, US symbols</b><p>
Little logic devices from Texas Instruments<br>
TinyLogic(R) from FAIRCHILD Semiconductor TM
<p>
<author>Created by evgeni@eniks.com</author><br>
<author>Extended by librarian@cadsoft.de</author>
<b>DBV (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SOT-23) - DBV<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>Microchip PIC Microcontrollers and other Devices</b><p>
Based on the following sources :
<ul>
<li>Microchip Data Book, 1993
<li>THE EMERGING WORLD STANDARD, 1995/1996
<li>Microchip, Technical Library CD-ROM, June 1998
<li>www.microchip.com
</ul>
<author>Created by librarian@cadsoft.de</author>
<b>Shrink Small Outline Package</b><p>
package type SS
>NAME
>VALUE
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>SMALL OUTLINE INTEGRATED CIRCUIT</b><p>
16-Pin (150-Mil) SOIC<br>
Source: http://www.cypress.com .. 38-12025_0P_V.pdf
CH340G
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find crystals and oscillators and other things that go "tick".<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<B>CRYSTAL</B>
>VALUE
>NAME
<b>10-Lead Mini Small Outline Package [MSOP]</b> (RM-10)<p>
Source: http://www.analog.com/UploadedFiles/Data_Sheets/35641221898805SSM2167_b.pdf<br>
COMPLIANT TO JEDEC STANDARDS MO-187BA
>NAME
>VALUE
>value
>name
>name
<b>Relays</b><p>
<ul>
<li>Eichhoff
<li>Finder
<li>Fujitsu
<li>HAMLIN
<li>OMRON
<li>Matsushita
<li>NAiS
<li>Siemens
<li>Schrack
</ul>
<author>Created by librarian@cadsoft.de</author>
<b>SOP 04 - 4.3x4.4mm RM 2.54mm</b> AQY21, AQY22, AQY61 Series NAiS<p>Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
SOP 04 - 4.3x4.4mm RM 2.54mm AQY21, AQY22, AQY61 Series NAiSSource: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
>NAME
>VALUE
Land pattern for variable capacitor - Murata Electronics TZY2 - by Haas
>NAME
>VALUE
<p><strong>Open Source Hardware PCB Logos</strong>
<p>A simple polygon based version of the OSHWA logos for use on Eagle PCB's
<p>For use please refer to the OSHWA definition at <a href="http://www.oshwa.org/definition/">http://www.oshwa.org/definition/</a>
<p>Based on the NBitWonder version (<a href="http://nbitwonder.com">http://nbitwonder.com</a>)
<p><strong>Andrew Cooper</strong><br>28Nov2016<br><a href="http://www.darkerview.com">www.DarkerView.com</a>
open source
hardware
<b>C&K Swtiches</b> - v1.00<p>
THIS LIBRARY IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED.
USE AT YOUR OWN RISK!
<p>Copyright (C) 2011, Bob Starr<br>
http://www.bobstarr.net
DPDT SLIDE SWITCH
>NAME
>VALUE
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b><p>
>NAME
>VALUE
RESISTOR
<b>EAGLE Design Rules</b>
<p>
The default Design Rules have been set to cover
a wide range of applications. Your particular design
may have different requirements, so please make the
necessary adjustments and save your customized
design rules under a new name.
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/max10adc_v9.0.sch
================================================
<b>Supply Symbols</b><p>
GND, VCC, 0V, +5V, -5V, etc.<p>
Please keep in mind, that these devices are necessary for the
automatic wiring of the supply signals.<p>
The pin name defined in the symbol is identical to the net which is to be wired automatically.<p>
In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p>
<author>Created by librarian@cadsoft.de</author>
>VALUE
>VALUE
>VALUE
<b>SUPPLY SYMBOL</b>
<b>SUPPLY SYMBOL</b>
<b>SUPPLY SYMBOL</b>
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 3 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 4 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 6 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm + 5 mm, outline 2.4 x 7 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
Horizontal, grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 3.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 4.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 5.2 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 4.3 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 5.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 6.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 5.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 6.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 7.2 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 8.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 9.1 x 18.2 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 6.2 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 7.4 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 8.7 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 10.8 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 11.3 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 9.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 11.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 13.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 20.5 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 13.7 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 16.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 18.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 19.2 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 20.3 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 15.5 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 6.3 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 15.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 17.3 x 31.6 mm
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0204 reflow solder</b><p>
Metric Code Size 1005
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0603 reflow solder</b><p>
Metric Code Size 1608
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1206 reflow solder</b><p>
Metric Code Size 3216
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1210 reflow solder</b><p>
Metric Code Size 3225
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1812 reflow solder</b><p>
Metric Code Size 4532
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1825 reflow solder</b><p>
Metric Code Size 4564
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2220 reflow solder</b><p>Metric Code Size 5650
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2225 reflow solder</b><p>Metric Code Size 5664
>NAME
>VALUE
<b> </b><p>
Source: http://www.vishay.com/docs/10129/hpc0201a.pdf
>NAME
>VALUE
Source: http://www.avxcorp.com/docs/catalogs/cx5r.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
>NAME
>VALUE
<B>CAPACITOR</B>, European symbol
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b><p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 10 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 12 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 15mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 10mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 3.81 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 17.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0817, grid 22.5 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type 0817, grid 6.35 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type V234, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V235, grid 17.78 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V526-0, grid 2.5 mm
>NAME
>VALUE
<b>CECC Size RC2211</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC2211</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 7.5 mm
>NAME
>VALUE
0922
<b>RESISTOR</b><p>
type RDH, grid 15 mm
>NAME
>VALUE
RDH
<b>Mini MELF 0102 Axial</b>
>NAME
>VALUE
<b>RESISTOR</b> chip<p>
Source: http://www.vishay.com/docs/20008/dcrcw.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR52<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR53<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR54<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR56<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC60<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Package 4527</b><p>
Source: http://www.vishay.com/docs/31059/wsrhigh.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>CRCW1218 Thick Film, Rectangular Chip Resistors</b><p>
Source: http://www.vishay.com .. dcrcw.pdf
>NAME
>VALUE
<b>Chip Monolithic Ceramic Capacitors</b> Medium Voltage High Capacitance for General Use<p>
Source: http://www.murata.com .. GRM43DR72E224KW01.pdf
>NAME
>VALUE
<b>PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)</b><p>
Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<B>RESISTOR</B>, European symbol
<b>EQFP144</b><p>
Source: http://www.altera.com/literature/ds/144-EQFP.pdf
>NAME
>VALUE
>NAME
>VALUE
<b>Crystals and Crystal Resonators</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>3.3Vdc CMOS SMD CRYSTAL CLOCK OSCILLATOR</b> ASE Series<p>
Source: www.abracon.com
>NAME
>VALUE
>NAME
>VALUE
VDD
GND
OUT
TRI
<b>3.3Vdc CMOS SMD CRYSTAL CLOCK OSCILLATOR</b><p>
SOurce: www.abracon.com
<b>LEDs</b><p>
<author>Created by librarian@cadsoft.de</author><br>
Extended by Federico Battaglin <author><federico.rd@fdpinternational.com></author> with DUOLED
<b>CHICAGO MINIATURE LAMP, INC.</b><p>
7022X Series SMT LEDs 1206 Package Size
>NAME
>VALUE
<B>LED</B><p>
5 mm, square, Siemens
>NAME
>VALUE
<B>LED</B><p>
2 x 5 mm, rectangle
>NAME
>VALUE
<B>LED</B><p>
3 mm, round
>NAME
>VALUE
<B>LED</B><p>
5 mm, round
>NAME
>VALUE
<B>LED</B><p>
1 mm, round, Siemens
>NAME
>VALUE
<B>LED BLOCK</B><p>
1 LED, Siemens
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
A+
K-
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
>NAME
>VALUE
+
-
<B>IR LED</B><p>
infrared emitting diode, Infineon
TO-18, lead spacing 2.54 mm, cathode marking<p>
Inifineon
>NAME
>VALUE
<B>IR LED</B><p>
infrared emitting diode, Infineon
TO-18, lead spacing 2.54 mm, cathode marking<p>
Inifineon
>NAME
>VALUE
<B>LED</B><p>
rectangle, 5.7 x 3.2 mm
>NAME
>VALUE
<B>IR LED</B><p>
IR transmitter Siemens
>NAME
>VALUE
<b>TOPLED® High-optical Power LED (HOP)</b><p>
Source: http://www.osram.convergy.de/ ... ls_t675.pdf
>NAME
>VALUE
A
C
<b>BLUE LINETM Hyper Mini TOPLED® Hyper-Bright LED</b><p>
Source: http://www.osram.convergy.de/ ... LB M676.pdf
A
C
>NAME
>VALUE
<b>Super SIDELED® High-Current LED</b><p>
LG A672, LP A672 <br>
Source: http://www.osram.convergy.de/ ... LG_LP_A672.pdf (2004.05.13)
C
A
>NAME
>VALUE
<b>SmartLEDTM Hyper-Bright LED</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY L896.pdf
>NAME
>VALUE
<b>Hyper TOPLED® RG Hyper-Bright LED</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY T776.pdf
>NAME
>VALUE
A
C
<b>Hyper Micro SIDELED®</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY Y876.pdf
>NAME
>VALUE
<b>Power TOPLED®</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LA_LY E67B.pdf
>NAME
>VALUE
C
A
C
C
<b>Hyper CHIPLED Hyper-Bright LED</b><p>
LB Q993<br>
Source: http://www.osram.convergy.de/ ... Lb_q993.pdf
>NAME
>VALUE
<b>Hyper CHIPLED Hyper-Bright LED</b><p>
LB R99A<br>
Source: http://www.osram.convergy.de/ ... lb_r99a.pdf
>NAME
>VALUE
<b>Mini TOPLED Santana®</b><p>
Source: http://www.osram.convergy.de/ ... LG M470.pdf
>NAME
>VALUE
<b>CHIPLED</b><p>
Source: http://www.osram.convergy.de/ ... LG_R971.pdf
>NAME
>VALUE
<b>CHIPLED</b><p>
Source: http://www.osram.convergy.de/ ... LG_LY N971.pdf
>NAME
>VALUE
<b>CHIPLED</b><p>
Source: http://www.osram.convergy.de/ ... LG_LY Q971.pdf
>NAME
>VALUE
<b>CHIPLED-0603</b><p>
Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603<br>
Package able to withstand TTW-soldering heat<br>
Package suitable for TTW-soldering<br>
Source: http://www.osram.convergy.de/ ... LO_LS_LY L89K.pdf
>NAME
>VALUE
<b>SmartLED TTW</b><p>
Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603<br>
Package able to withstand TTW-soldering heat<br>
Package suitable for TTW-soldering<br>
Source: http://www.osram.convergy.de/ ... LO_LS_LY L89K.pdf
>NAME
>VALUE
<b>Lumileds Lighting. LUXEON®</b> with cool pad<p>
Source: K2.pdf
>NAME
>VALUE
<b>Lumileds Lighting. LUXEON®</b> without cool pad<p>
Source: K2.pdf
>NAME
>VALUE
<B>LED</B><p>
10 mm, round
>NAME
>VALUE
<b>SURFACE MOUNT LED LAMP</b> 3.5x2.8mm<p>
Source: http://www.kingbright.com/manager/upload/pdf/KA-3528ASYC(Ver1189474662.1)
>NAME
>VALUE
<b>SML0805-2CW-TR (0805 PROFILE)</b> COOL WHITE<p>
Source: http://www.ledtronics.com/ds/smd-0603/Dstr0093.pdf
>NAME
>VALUE
<b>SML10XXKH-TR (HIGH INTENSITY) LED</b><p>
<table>
<tr><td>SML10R3KH-TR</td><td>ULTRA RED</td></tr>
<tr><td>SML10E3KH-TR</td><td>SUPER REDSUPER BLUE</td></tr>
<tr><td>SML10O3KH-TR</td><td>SUPER ORANGE</td></tr>
<tr><td>SML10PY3KH-TR</td><td>PURE YELLOW</td></tr>
<tr><td>SML10OY3KH-TR</td><td>ULTRA YELLOW</td></tr>
<tr><td>SML10AG3KH-TR</td><td>AQUA GREEN</td></tr>
<tr><td>SML10BG3KH-TR</td><td>BLUE GREEN</td></tr>
<tr><td>SML10PB1KH-TR</td><td>SUPER BLUE</td></tr>
<tr><td>SML10CW1KH-TR</td><td>WHITE</td></tr>
</table>
Source: http://www.ledtronics.com/ds/smd-1206/dstr0094.PDF
>NAME
>VALUE
<b>SML0603-XXX (HIGH INTENSITY) LED</b><p>
<table>
<tr><td>AG3K</td><td>AQUA GREEN</td></tr>
<tr><td>B1K</td><td>SUPER BLUE</td></tr>
<tr><td>R1K</td><td>SUPER RED</td></tr>
<tr><td>R3K</td><td>ULTRA RED</td></tr>
<tr><td>O3K</td><td>SUPER ORANGE</td></tr>
<tr><td>O3KH</td><td>SOFT ORANGE</td></tr>
<tr><td>Y3KH</td><td>SUPER YELLOW</td></tr>
<tr><td>Y3K</td><td>SUPER YELLOW</td></tr>
<tr><td>2CW</td><td>WHITE</td></tr>
</table>
Source: http://www.ledtronics.com/ds/smd-0603/Dstr0092.pdf
>NAME
>VALUE
>NAME
>VALUE
<b>LED</b><p>
<u>OSRAM</u>:<br>
- <u>CHIPLED</u><br>
LG R971, LG N971, LY N971, LG Q971, LY Q971, LO R971, LY R971
LH N974, LH R974<br>
LS Q976, LO Q976, LY Q976<br>
LO Q996<br>
- <u>Hyper CHIPLED</u><br>
LW Q18S<br>
LB Q993, LB Q99A, LB R99A<br>
- <u>SideLED</u><br>
LS A670, LO A670, LY A670, LG A670, LP A670<br>
LB A673, LV A673, LT A673, LW A673<br>
LH A674<br>
LY A675<br>
LS A676, LA A676, LO A676, LY A676, LW A676<br>
LS A679, LY A679, LG A679<br>
- <u>Hyper Micro SIDELED®</u><br>
LS Y876, LA Y876, LO Y876, LY Y876<br>
LT Y87S<br>
- <u>SmartLED</u><br>
LW L88C, LW L88S<br>
LB L89C, LB L89S, LG L890<br>
LS L89K, LO L89K, LY L89K<br>
LS L896, LA L896, LO L896, LY L896<br>
- <u>TOPLED</u><br>
LS T670, LO T670, LY T670, LG T670, LP T670<br>
LSG T670, LSP T670, LSY T670, LOP T670, LYG T670<br>
LG T671, LOG T671, LSG T671<br>
LB T673, LV T673, LT T673, LW T673<br>
LH T674<br>
LS T676, LA T676, LO T676, LY T676, LB T676, LH T676, LSB T676, LW T676<br>
LB T67C, LV T67C, LT T67C, LS T67K, LO T67K, LY T67K, LW E67C<br>
LS E67B, LA E67B, LO E67B, LY E67B, LB E67C, LV E67C, LT E67C<br>
LW T67C<br>
LS T679, LY T679, LG T679<br>
LS T770, LO T770, LY T770, LG T770, LP T770<br>
LB T773, LV T773, LT T773, LW T773<br>
LH T774<br>
LS E675, LA E675, LY E675, LS T675<br>
LS T776, LA T776, LO T776, LY T776, LB T776<br>
LHGB T686<br>
LT T68C, LB T68C<br>
- <u>Hyper Mini TOPLED®</u><br>
LB M676<br>
- <u>Mini TOPLED Santana®</u><br>
LG M470<br>
LS M47K, LO M47K, LY M47K
<p>
Source: http://www.osram.convergy.de<p>
<u>LUXEON:</u><br>
- <u>LUMILED®</u><br>
LXK2-PW12-R00, LXK2-PW12-S00, LXK2-PW14-U00, LXK2-PW14-V00<br>
LXK2-PM12-R00, LXK2-PM12-S00, LXK2-PM14-U00<br>
LXK2-PE12-Q00, LXK2-PE12-R00, LXK2-PE12-S00, LXK2-PE14-T00, LXK2-PE14-U00<br>
LXK2-PB12-K00, LXK2-PB12-L00, LXK2-PB12-M00, LXK2-PB14-N00, LXK2-PB14-P00, LXK2-PB14-Q00<br>
LXK2-PR12-L00, LXK2-PR12-M00, LXK2-PR14-Q00, LXK2-PR14-R00<br>
LXK2-PD12-Q00, LXK2-PD12-R00, LXK2-PD12-S00<br>
LXK2-PH12-R00, LXK2-PH12-S00<br>
LXK2-PL12-P00, LXK2-PL12-Q00, LXK2-PL12-R00
<p>
Source: www.luxeon.com<p>
<u>KINGBRIGHT:</U><p>
KA-3528ASYC<br>
Source: www.kingbright.com
<b>SMALL OUTLINE TRANSISTOR</b>
>NAME
>VALUE
>NAME
>VALUE
310030097
<b>LAB11</b> - Connectors for various cable types.
>NAME
>NAME
>VALUE
CONN BNC JACK R/A 50 OHM PCB
48 TQFN-EP Package IPC7351
>NAME
>VALUE
PINOUT for the Max19506
>NAME
>VALUE
The MAX19506 dual-channel, analog-to-digital converter
(ADC) provides 8-bit resolution and a maximum sample
rate of 100Msps.
>value
>name
>name
>value
>name
>name
>value
>name
>name
>value
>name
>value
320020122
320020026
320030076
>NAME
>NAME
>NAME
USB PORT
>NAME
>VALUE
5V
D-
D+
ID
GND
SHIELD
<b>Description:</b> Standard 6MM Tact Switch Package.<br/>
>NAME
<b>Description:</b> Standard 4.2MM Tact Switch Package.Based off C&K PTS 810 Series Tact Switch.<br/>
>NAME
<b>Description:</b> Tact Switch Symbol.<br/>
>NAME
>VALUE
<b>Library:</b> MF_Switches<br/>
<b>Description:</b> Device for Tact Switches. Manufacture part number (MFG#) can be added via Attributes.<br/>
*
*
>Name
*
*
>Name
*
*
>Name
>Name
>Value
<b>Single and Dual Gates Family, US symbols</b><p>
Little logic devices from Texas Instruments<br>
TinyLogic(R) from FAIRCHILD Semiconductor TM
<p>
<author>Created by evgeni@eniks.com</author><br>
<author>Extended by librarian@cadsoft.de</author>
<b>YZP (R-XBGA-N6)</b> DIE-SIZE BALL GRID ARRAY<p>
NanoFree TM - WCSP (DSBGA) 0.23-mm Large Bump - YZP (Pb-free)<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157
>NAME
>VALUE
<b>DBV (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SOT-23) - DBV<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>DCK (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SC-70) - DCK<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>DRL (R-PDSO-N6)</b> PLASTIC SMALL OUTLINE<p>
SOT (SOT-553) - DRL<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.pdf
>NAME
>VALUE
<b>YEP (R-XBGA-N6)</b> DIE-SIZE BALL GRID ARRAY<p>
NanoStar TM - WCSP (DSBG A)0.23-mm Large Bump - YEP<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157
>NAME
>VALUE
>NAME
>VALUE
>NAME
GND
VCC
<b>Single-Pole, Double-Throw Analog Switch</b><p>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.pdf
<b>Microchip PIC Microcontrollers and other Devices</b><p>
Based on the following sources :
<ul>
<li>Microchip Data Book, 1993
<li>THE EMERGING WORLD STANDARD, 1995/1996
<li>Microchip, Technical Library CD-ROM, June 1998
<li>www.microchip.com
</ul>
<author>Created by librarian@cadsoft.de</author>
<B>Dual In Line</B><p>
package type P
>NAME
>VALUE
<B>28-Lead Plastic Small Outline (SO) </B> Wide, 300 mil Body (SOIC)</B><p>
Source: http://ww1.microchip.com/downloads/en/devicedoc/39632c.pdf
>NAME
>VALUE
<b>Shrink Small Outline Package</b><p>
package type SS
>NAME
>VALUE
<b>QFN28-ML_6X6MM</b><p>
Source: http://www.microchip.com .. 39637a.pdf
>NAME
>VALUE
>NAME
>VALUE
<b>http://ww1.microchip.com/downloads/en/DeviceDoc/21952a.pdf</b><p>
Source: http://ww1.microchip.com/downloads/en/DeviceDoc/21952a.pdf
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 3 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 4 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 6 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm + 5 mm, outline 2.4 x 7 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
Horizontal, grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 3.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 4.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 5.2 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 4.3 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 5.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 6.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 5.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 6.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 7.2 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 8.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 9.1 x 18.2 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 6.2 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 7.4 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 8.7 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 10.8 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 11.3 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 9.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 11.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 13.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 20.5 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 13.7 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 16.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 18.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 19.2 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 20.3 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 15.5 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 6.3 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 15.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 17.3 x 31.6 mm
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0204 reflow solder</b><p>
Metric Code Size 1005
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0603 reflow solder</b><p>
Metric Code Size 1608
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1206 reflow solder</b><p>
Metric Code Size 3216
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1210 reflow solder</b><p>
Metric Code Size 3225
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1812 reflow solder</b><p>
Metric Code Size 4532
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1825 reflow solder</b><p>
Metric Code Size 4564
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2220 reflow solder</b><p>Metric Code Size 5650
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2225 reflow solder</b><p>Metric Code Size 5664
>NAME
>VALUE
Source: http://www.avxcorp.com/docs/catalogs/cx5r.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
>NAME
>VALUE
<B>CAPACITOR</B>, American symbol
<b>SMALL OUTLINE INTEGRATED CIRCUIT</b><p>
16-Pin (150-Mil) SOIC<br>
Source: http://www.cypress.com .. 38-12025_0P_V.pdf
CH340G
CH340G
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find crystals and oscillators and other things that go "tick".<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<b>CRYSTAL</b>
>NAME
>VALUE
<b>CRYSTAL</b>
>NAME
>VALUE
<b>CRYSTAL</b>
>NAME
>VALUE
<b>CRYSTAL</b>
>NAME
>VALUE
<B>CRYSTAL</B>
>VALUE
>NAME
>Name
>Value
>NAME
>VALUE
32kHz crystal package<br>
This is the "EZ" version, which has limited top masking for improved ease of assembly.
>NAME
>VALUE
>NAME
>VALUE
<h3>3.2 x 1.5mm Crystal Package</h3>
<p>e.g: <a href="http://www.sii.co.jp/en/quartz/files/2013/03/file_PRODUCT_MASTER_50812_GRAPHIC03.pdf">SX-32S</a></p>
>Name
>Value
>NAME
>VALUE
1
2
Various standard crystals. Proven footprints.
<b>10-Lead Mini Small Outline Package [MSOP]</b> (RM-10)<p>
Source: http://www.analog.com/UploadedFiles/Data_Sheets/35641221898805SSM2167_b.pdf<br>
COMPLIANT TO JEDEC STANDARDS MO-187BA
>NAME
>VALUE
>value
>name
>name
>name
>value
320030059
<b>Relays</b><p>
<ul>
<li>Eichhoff
<li>Finder
<li>Fujitsu
<li>HAMLIN
<li>OMRON
<li>Matsushita
<li>NAiS
<li>Siemens
<li>Schrack
</ul>
<author>Created by librarian@cadsoft.de</author>
<b>SOP 04 - 4.3x4.4mm RM 2.54mm</b> AQY21, AQY22, AQY61 Series NAiS<p>Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<b>SMD 04 9.4x8.8mm RM 5.08mm</b> NAiS<p>
Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<b>DIL 04</b> NAiS<p>
Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
SOP 04 - 4.3x4.4mm RM 2.54mm AQY21, AQY22, AQY61 Series NAiSSource: http://www.mew-europe.com/.. pti_en.pdf
SMD 04 9.4x8.8mm RM 5.08mm NAiS
Source: http://www.mew-europe.com/.. pti_en.pdf
DIL 04 NAiS
Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<b>PhotoMOS Relay</b> NAiS<p>
Source: http://www.panasonic-electric-works.com/catalogues/downloads/photomos/ds_x615_en_aqz10_20.pdf
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<b>PIN HEADER</b>
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
>Name
>Value
>NAME
>VALUE
From: http://www.niccomp.com/catalog/npis_ls.pdf
>Name
>Value
>Name
>Value
<b>CAPACITOR</b><p>
chip
>NAME
>VALUE
>NAME
>VALUE
1007 (2518 metric) package
>NAME
>VALUE
>Name
>Value
>NAME
>VALUE
>NAME
>VALUE
1.3x1.3mm 1.7mm between. Fits Sumida CDRH2D09, CDRH2D18 inductor
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
>Name
>Value
For Coiltronics/Cooper DR1030 series inductors
>NAME
>VALUE
1W Resistor, 0.6" wide<p>
Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a>
>Name
>Value
>Value
>Name
>NAME
>VALUE
Footprint for Bourns SDR0403 family inductors
>VALUE
>NAME
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
Land pattern for variable capacitor - Murata Electronics TZY2 - by Haas
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<b>Inductors</b><p>
Basic Inductor/Choke - 0603 and 1206. Footprints are not proven and vary greatly between part numbers.<br>
INDUCTOR POWER 3.3UH 4.0A SMD<br>
0.197" L x 0.197" W x 0.177" H (5.00mm x 5.00mm x 4.50mm)
Variable, non-polarized capacitor
<h3>SparkFun Power Symbols</h3>
This library contains power, ground, and voltage-supply symbols.
<br>
<br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application.
<br>
<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>.
<br>
<br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br>
<br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<h3>VCC Analog Voltage Supply</h3>
>VALUE
<h3>Analog VCC Voltage Supply</h3>
<p>Generic analog supply symbol.</p>
<p><strong>Open Source Hardware PCB Logos</strong>
<p>A simple polygon based version of the OSHWA logos for use on Eagle PCB's
<p>For use please refer to the OSHWA definition at <a href="http://www.oshwa.org/definition/">http://www.oshwa.org/definition/</a>
<p>Based on the NBitWonder version (<a href="http://nbitwonder.com">http://nbitwonder.com</a>)
<p><strong>Andrew Cooper</strong><br>28Nov2016<br><a href="http://www.darkerview.com">www.DarkerView.com</a>
open source
hardware
open source
hardware
open source
hardware
OSHW Logo
<p>The OSHW logo for PCB layout
<b>Frames for Sheet and Layout</b>
>DRAWING_NAME
>LAST_DATE_TIME
>SHEET
Sheet:
<b>FRAME</b><p>
DIN A3, landscape with location and doc. field
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b><p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 10 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 12 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 15mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 10mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 3.81 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 17.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0817, grid 22.5 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type 0817, grid 6.35 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type V234, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V235, grid 17.78 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V526-0, grid 2.5 mm
>NAME
>VALUE
<b>CECC Size RC2211</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC2211</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 7.5 mm
>NAME
>VALUE
0922
<b>RESISTOR</b><p>
type RDH, grid 15 mm
>NAME
>VALUE
RDH
<b>Mini MELF 0102 Axial</b>
>NAME
>VALUE
<b>RESISTOR</b> chip<p>
Source: http://www.vishay.com/docs/20008/dcrcw.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR52<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR53<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR54<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR56<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC60<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Package 4527</b><p>
Source: http://www.vishay.com/docs/31059/wsrhigh.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>CRCW1218 Thick Film, Rectangular Chip Resistors</b><p>
Source: http://www.vishay.com .. dcrcw.pdf
>NAME
>VALUE
<b>Chip Monolithic Ceramic Capacitors</b> Medium Voltage High Capacitance for General Use<p>
Source: http://www.murata.com .. GRM43DR72E224KW01.pdf
>NAME
>VALUE
<b>PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)</b><p>
Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf
>NAME
>VALUE
>NAME
>VALUE
RESISTOR
RESISTOR
RESISTOR
RESISTOR wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
RESISTOR wave soldering
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
RESISTOR
MELF 0.10 W
RESISTOR
MELF 0.25 W
RESISTOR
MELF 0.12 W
RESISTOR
MELF 0.10 W
RESISTOR
MELF 0.25 W
RESISTOR
MELF 0.25 W
RESISTOR
MELF 0.12 W
RESISTOR
MELF 0.25 W
RESISTOR
type 0204, grid 5 mm
RESISTOR
type 0204, grid 7.5 mm
RESISTOR
type 0204, grid 2.5 mm
RESISTOR
type 0207, grid 10 mm
RESISTOR
type 0207, grid 12 mm
RESISTOR
type 0207, grid 15mm
RESISTOR
type 0207, grid 2.5 mm
RESISTOR
type 0207, grid 5 mm
RESISTOR
type 0207, grid 7.5 mm
RESISTOR
type 0309, grid 10mm
RESISTOR
type 0309, grid 12.5 mm
RESISTOR
type 0309, grid 2.5 mm
RESISTOR
type 0411, grid 12.5 mm
RESISTOR
type 0411, grid 15 mm
RESISTOR
type 0411, grid 3.81 mm
RESISTOR
type 0414, grid 15 mm
RESISTOR
type 0414, grid 5 mm
RESISTOR
type 0617, grid 17.5 mm
RESISTOR
type 0617, grid 22.5 mm
RESISTOR
type 0617, grid 5 mm
RESISTOR
type 0922, grid 22.5 mm
RESISTOR
type 0613, grid 5 mm
RESISTOR
type 0613, grid 15 mm
RESISTOR
type 0817, grid 22.5 mm
RESISTOR
type 0817, grid 6.35 mm
RESISTOR
type V234, grid 12.5 mm
RESISTOR
type V235, grid 17.78 mm
RESISTOR
type V526-0, grid 2.5 mm
CECC Size RC2211 Reflow Soldering
source Beyschlag
CECC Size RC2211 Wave Soldering
source Beyschlag
CECC Size RC3715 Reflow Soldering
source Beyschlag
CECC Size RC3715 Wave Soldering
source Beyschlag
CECC Size RC6123 Reflow Soldering
source Beyschlag
CECC Size RC6123 Wave Soldering
source Beyschlag
RESISTOR
type 0922, grid 7.5 mm
RESISTOR
type RDH, grid 15 mm
Mini MELF 0102 Axial
RESISTOR chip
Source: http://www.vishay.com/docs/20008/dcrcw.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR52
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR53
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR54
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR55
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR56
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RNC55
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RNC60
Source: VISHAY .. vta56.pdf
Package 4527
Source: http://www.vishay.com/docs/31059/wsrhigh.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
CRCW1218 Thick Film, Rectangular Chip Resistors
Source: http://www.vishay.com .. dcrcw.pdf
Chip Monolithic Ceramic Capacitors Medium Voltage High Capacitance for General Use
Source: http://www.murata.com .. GRM43DR72E224KW01.pdf
PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)
Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf
>NAME
>VALUE
<B>RESISTOR</B>, European symbol
<b>C&K Swtiches</b> - v1.00<p>
THIS LIBRARY IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED.
USE AT YOUR OWN RISK!
<p>Copyright (C) 2011, Bob Starr<br>
http://www.bobstarr.net
DPDT SLIDE SWITCH
>NAME
>VALUE
>NAME
>VALUE
DPDT SLIDE SWITCH
Front-End
Front-Ends
Channel 3
Channel 1
Channel 2
Channel 4
Front-End gain and offset
Channel 1+2
Channel 3+4
Offset DAC
4 200 Ohm resistors in parallel
for 50 Ohm termination
10M Ohm resistor needed for AC coupling mode
to bring the DC offset to 0.
The time constant for the AC couping is
RC=0.01uF*10M=0.1 sec.
These resistors, in parallel with 10M (or 50) Ohm termination,
sets the input impedance.
For the 1.1M case, and high impedance, it is e.g.
1/(1/1.1M+1/10M)=0.99M (so close to 1M).
The caps are for freq compensation.
Switch for AC/DC coupling
Switch for 1M / 50 Ohm
input impedance
Analog switch that sends either
Ch 0 or Ch2 to the first input of ADC2, for oversampling
Analog switch that sends either
Ch 1 or Ch3 to the second input of ADC2, for oversampling
Dual channel high-bandwidth op-amps
x1 or x10 gain switch
These caps reduce
noise on the offsets
Gain for negative feedback op-amp is R2/R1,
i.e. (1M+1M)/1.1M = ~2 or ~0.2 for
low or high gain.
Compensation must match the inverse,
e.g. 5pF/10pF=~1/2 or
50pF/10pF=~5 for low or high gain.
Variable caps are added so it can be
adjusted in situ.
Digital
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
FPGA
Right side pinouts
Left side pinouts
Oscillator
Top pinouts
IO expanders
Serial to USB interface
LEDs
JTAG interface
Can take 5V from either the
right side connector
or the USB connector
Chip that talks UART
over USB
ADCs & Power
ADCs
Power regulation and decoupling
3V3
VCCA
Channel 1+2
Channel 3+4
Misc.
Note that the two ADCs have separate
clocks (32 and 33), which can be
50% out of phase, for oversampling.
SHDN is used to turn
off the ADCs when
inactive, to save power
SDIN/SCLK,CS
is the SPI interface
Dual 8-bit
ADC outputs
Inputs to this ADC
are from the
oversampling switches
For reducing noise on the power.
The inductor helps reduce low-freq
noise on the USB 5V power input.
Separate 3.3V power rail for the
analog components, so noise from
FPGA etc. doesn't get into ADCs.
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/max10adc_v9.0_rack.brd
================================================
Right
USB
5V selector
Haasoscope v9.10_rack_6layer
pin1
pin1
by Dr. Andy Haas
1
50MHz
Reset
50
50
1M
200
200
200
200
22pF
560 Ohm
10nF
Super gain
3.3V
power
low gain
high gain
high gain
low gain
GND
121
ExtTrig
AIN1
10nF
AIN6
AIN14
101
GND
3.3V
100
91
90
89
88
GND
5V
5V
GND
110
111
113
114
118
119
105
122
140
135
134
131
132
130
127
124
GND
RX L
TRIG
OUT
TX L
TRIG
IN
5V
SPR R L
CLK
OUT
GND
RX
TX
TRG
IN
TRG
OUT
5V
CLK
IN
1.6mm
Super gain
50
50
Super gain
50
EIO1
EIO2
EIO3
EIO4
141_SCL
21_SDA
3.3V
GND
JTAG
CH 0
CH 1
CH 2
CH 3
10k
GND
GND
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012
>NAME
>VALUE
<b>LEDs</b><p>
<author>Created by librarian@cadsoft.de</author><br>
Extended by Federico Battaglin <author><federico.rd@fdpinternational.com></author> with DUOLED
<b>SML0805-2CW-TR (0805 PROFILE)</b> COOL WHITE<p>
Source: http://www.ledtronics.com/ds/smd-0603/Dstr0093.pdf
>NAME
>VALUE
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>EQFP144</b><p>
Source: http://www.altera.com/literature/ds/144-EQFP.pdf
>NAME
>VALUE
<b>Crystals and Crystal Resonators</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>3.3Vdc CMOS SMD CRYSTAL CLOCK OSCILLATOR</b> ASE Series<p>
Source: www.abracon.com
>NAME
>VALUE
<b>SMALL OUTLINE TRANSISTOR</b>
>NAME
>VALUE
<b>LAB11</b> - Connectors for various cable types.
>NAME
48 TQFN-EP Package IPC7351
>NAME
>VALUE
>value
>name
>NAME
<b>Description:</b> Standard 4.2MM Tact Switch Package.Based off C&K PTS 810 Series Tact Switch.<br/>
>NAME
<b>Single and Dual Gates Family, US symbols</b><p>
Little logic devices from Texas Instruments<br>
TinyLogic(R) from FAIRCHILD Semiconductor TM
<p>
<author>Created by evgeni@eniks.com</author><br>
<author>Extended by librarian@cadsoft.de</author>
<b>DBV (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SOT-23) - DBV<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>Single and Dual Gates Family, US symbols</b><p>
Little logic devices from Texas Instruments<br>
TinyLogic(R) from FAIRCHILD Semiconductor TM
<p>
<author>Created by evgeni@eniks.com</author><br>
<author>Extended by librarian@cadsoft.de</author>
<b>DBV (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SOT-23) - DBV<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>Microchip PIC Microcontrollers and other Devices</b><p>
Based on the following sources :
<ul>
<li>Microchip Data Book, 1993
<li>THE EMERGING WORLD STANDARD, 1995/1996
<li>Microchip, Technical Library CD-ROM, June 1998
<li>www.microchip.com
</ul>
<author>Created by librarian@cadsoft.de</author>
<b>Shrink Small Outline Package</b><p>
package type SS
>NAME
>VALUE
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>SMALL OUTLINE INTEGRATED CIRCUIT</b><p>
16-Pin (150-Mil) SOIC<br>
Source: http://www.cypress.com .. 38-12025_0P_V.pdf
CH340G
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find crystals and oscillators and other things that go "tick".<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<B>CRYSTAL</B>
>VALUE
>NAME
<b>10-Lead Mini Small Outline Package [MSOP]</b> (RM-10)<p>
Source: http://www.analog.com/UploadedFiles/Data_Sheets/35641221898805SSM2167_b.pdf<br>
COMPLIANT TO JEDEC STANDARDS MO-187BA
>NAME
>VALUE
>value
>name
>name
<b>Relays</b><p>
<ul>
<li>Eichhoff
<li>Finder
<li>Fujitsu
<li>HAMLIN
<li>OMRON
<li>Matsushita
<li>NAiS
<li>Siemens
<li>Schrack
</ul>
<author>Created by librarian@cadsoft.de</author>
<b>SOP 04 - 4.3x4.4mm RM 2.54mm</b> AQY21, AQY22, AQY61 Series NAiS<p>Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
SOP 04 - 4.3x4.4mm RM 2.54mm AQY21, AQY22, AQY61 Series NAiSSource: http://www.mew-europe.com/.. pti_en.pdf
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
>NAME
>VALUE
Land pattern for variable capacitor - Murata Electronics TZY2 - by Haas
>NAME
>VALUE
<p><strong>Open Source Hardware PCB Logos</strong>
<p>A simple polygon based version of the OSHWA logos for use on Eagle PCB's
<p>For use please refer to the OSHWA definition at <a href="http://www.oshwa.org/definition/">http://www.oshwa.org/definition/</a>
<p>Based on the NBitWonder version (<a href="http://nbitwonder.com">http://nbitwonder.com</a>)
<p><strong>Andrew Cooper</strong><br>28Nov2016<br><a href="http://www.darkerview.com">www.DarkerView.com</a>
open source
hardware
<b>C&K Swtiches</b> - v1.00<p>
THIS LIBRARY IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED.
USE AT YOUR OWN RISK!
<p>Copyright (C) 2011, Bob Starr<br>
http://www.bobstarr.net
DPDT SLIDE SWITCH
>NAME
>VALUE
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b><p>
>NAME
>VALUE
RESISTOR
<b>Pin Header Connectors</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>PIN HEADER</b>
>NAME
>VALUE
PIN HEADER
<b>https://componentsearchengine.com</b><p>
<author>Created by SamacSys</author>
<b>21-0036 8Pin uMax_1</b><br>
>NAME
>VALUE
<b>JLCPCB Design Rules - 6layer</b>
<p>
Please make sure your boards conform to these design rules.
</p>
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/max10adc_v9.0_rack.sch
================================================
<b>Supply Symbols</b><p>
GND, VCC, 0V, +5V, -5V, etc.<p>
Please keep in mind, that these devices are necessary for the
automatic wiring of the supply signals.<p>
The pin name defined in the symbol is identical to the net which is to be wired automatically.<p>
In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p>
<author>Created by librarian@cadsoft.de</author>
>VALUE
>VALUE
>VALUE
<b>SUPPLY SYMBOL</b>
<b>SUPPLY SYMBOL</b>
<b>SUPPLY SYMBOL</b>
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 3 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 4 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 6 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm + 5 mm, outline 2.4 x 7 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
Horizontal, grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 3.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 4.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 5.2 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 4.3 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 5.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 6.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 5.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 6.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 7.2 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 8.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 9.1 x 18.2 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 6.2 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 7.4 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 8.7 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 10.8 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 11.3 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 9.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 11.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 13.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 20.5 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 13.7 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 16.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 18.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 19.2 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 20.3 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 15.5 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 6.3 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 15.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 17.3 x 31.6 mm
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0204 reflow solder</b><p>
Metric Code Size 1005
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0603 reflow solder</b><p>
Metric Code Size 1608
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1206 reflow solder</b><p>
Metric Code Size 3216
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1210 reflow solder</b><p>
Metric Code Size 3225
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1812 reflow solder</b><p>
Metric Code Size 4532
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1825 reflow solder</b><p>
Metric Code Size 4564
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2220 reflow solder</b><p>Metric Code Size 5650
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2225 reflow solder</b><p>Metric Code Size 5664
>NAME
>VALUE
<b> </b><p>
Source: http://www.vishay.com/docs/10129/hpc0201a.pdf
>NAME
>VALUE
Source: http://www.avxcorp.com/docs/catalogs/cx5r.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
>NAME
>VALUE
<B>CAPACITOR</B>, European symbol
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b><p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 10 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 12 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 15mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 10mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 3.81 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 17.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0817, grid 22.5 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type 0817, grid 6.35 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type V234, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V235, grid 17.78 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V526-0, grid 2.5 mm
>NAME
>VALUE
<b>CECC Size RC2211</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC2211</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 7.5 mm
>NAME
>VALUE
0922
<b>RESISTOR</b><p>
type RDH, grid 15 mm
>NAME
>VALUE
RDH
<b>Mini MELF 0102 Axial</b>
>NAME
>VALUE
<b>RESISTOR</b> chip<p>
Source: http://www.vishay.com/docs/20008/dcrcw.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR52<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR53<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR54<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR56<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC60<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Package 4527</b><p>
Source: http://www.vishay.com/docs/31059/wsrhigh.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>CRCW1218 Thick Film, Rectangular Chip Resistors</b><p>
Source: http://www.vishay.com .. dcrcw.pdf
>NAME
>VALUE
<b>Chip Monolithic Ceramic Capacitors</b> Medium Voltage High Capacitance for General Use<p>
Source: http://www.murata.com .. GRM43DR72E224KW01.pdf
>NAME
>VALUE
<b>PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)</b><p>
Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<B>RESISTOR</B>, European symbol
<b>EQFP144</b><p>
Source: http://www.altera.com/literature/ds/144-EQFP.pdf
>NAME
>VALUE
>NAME
>VALUE
<b>Crystals and Crystal Resonators</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>3.3Vdc CMOS SMD CRYSTAL CLOCK OSCILLATOR</b> ASE Series<p>
Source: www.abracon.com
>NAME
>VALUE
>NAME
>VALUE
VDD
GND
OUT
TRI
<b>3.3Vdc CMOS SMD CRYSTAL CLOCK OSCILLATOR</b><p>
SOurce: www.abracon.com
<b>LEDs</b><p>
<author>Created by librarian@cadsoft.de</author><br>
Extended by Federico Battaglin <author><federico.rd@fdpinternational.com></author> with DUOLED
<b>CHICAGO MINIATURE LAMP, INC.</b><p>
7022X Series SMT LEDs 1206 Package Size
>NAME
>VALUE
<B>LED</B><p>
5 mm, square, Siemens
>NAME
>VALUE
<B>LED</B><p>
2 x 5 mm, rectangle
>NAME
>VALUE
<B>LED</B><p>
3 mm, round
>NAME
>VALUE
<B>LED</B><p>
5 mm, round
>NAME
>VALUE
<B>LED</B><p>
1 mm, round, Siemens
>NAME
>VALUE
<B>LED BLOCK</B><p>
1 LED, Siemens
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
A+
K-
>NAME
>VALUE
<b>LED HOLDER</b><p>
Siemens
>NAME
>VALUE
+
-
<B>IR LED</B><p>
infrared emitting diode, Infineon
TO-18, lead spacing 2.54 mm, cathode marking<p>
Inifineon
>NAME
>VALUE
<B>IR LED</B><p>
infrared emitting diode, Infineon
TO-18, lead spacing 2.54 mm, cathode marking<p>
Inifineon
>NAME
>VALUE
<B>LED</B><p>
rectangle, 5.7 x 3.2 mm
>NAME
>VALUE
<B>IR LED</B><p>
IR transmitter Siemens
>NAME
>VALUE
<b>TOPLED® High-optical Power LED (HOP)</b><p>
Source: http://www.osram.convergy.de/ ... ls_t675.pdf
>NAME
>VALUE
A
C
<b>BLUE LINETM Hyper Mini TOPLED® Hyper-Bright LED</b><p>
Source: http://www.osram.convergy.de/ ... LB M676.pdf
A
C
>NAME
>VALUE
<b>Super SIDELED® High-Current LED</b><p>
LG A672, LP A672 <br>
Source: http://www.osram.convergy.de/ ... LG_LP_A672.pdf (2004.05.13)
C
A
>NAME
>VALUE
<b>SmartLEDTM Hyper-Bright LED</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY L896.pdf
>NAME
>VALUE
<b>Hyper TOPLED® RG Hyper-Bright LED</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY T776.pdf
>NAME
>VALUE
A
C
<b>Hyper Micro SIDELED®</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LS_LY Y876.pdf
>NAME
>VALUE
<b>Power TOPLED®</b><p>
Source: http://www.osram.convergy.de/ ... LA_LO_LA_LY E67B.pdf
>NAME
>VALUE
C
A
C
C
<b>Hyper CHIPLED Hyper-Bright LED</b><p>
LB Q993<br>
Source: http://www.osram.convergy.de/ ... Lb_q993.pdf
>NAME
>VALUE
<b>Hyper CHIPLED Hyper-Bright LED</b><p>
LB R99A<br>
Source: http://www.osram.convergy.de/ ... lb_r99a.pdf
>NAME
>VALUE
<b>Mini TOPLED Santana®</b><p>
Source: http://www.osram.convergy.de/ ... LG M470.pdf
>NAME
>VALUE
<b>CHIPLED</b><p>
Source: http://www.osram.convergy.de/ ... LG_R971.pdf
>NAME
>VALUE
<b>CHIPLED</b><p>
Source: http://www.osram.convergy.de/ ... LG_LY N971.pdf
>NAME
>VALUE
<b>CHIPLED</b><p>
Source: http://www.osram.convergy.de/ ... LG_LY Q971.pdf
>NAME
>VALUE
<b>CHIPLED-0603</b><p>
Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603<br>
Package able to withstand TTW-soldering heat<br>
Package suitable for TTW-soldering<br>
Source: http://www.osram.convergy.de/ ... LO_LS_LY L89K.pdf
>NAME
>VALUE
<b>SmartLED TTW</b><p>
Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603<br>
Package able to withstand TTW-soldering heat<br>
Package suitable for TTW-soldering<br>
Source: http://www.osram.convergy.de/ ... LO_LS_LY L89K.pdf
>NAME
>VALUE
<b>Lumileds Lighting. LUXEON®</b> with cool pad<p>
Source: K2.pdf
>NAME
>VALUE
<b>Lumileds Lighting. LUXEON®</b> without cool pad<p>
Source: K2.pdf
>NAME
>VALUE
<B>LED</B><p>
10 mm, round
>NAME
>VALUE
<b>SURFACE MOUNT LED LAMP</b> 3.5x2.8mm<p>
Source: http://www.kingbright.com/manager/upload/pdf/KA-3528ASYC(Ver1189474662.1)
>NAME
>VALUE
<b>SML0805-2CW-TR (0805 PROFILE)</b> COOL WHITE<p>
Source: http://www.ledtronics.com/ds/smd-0603/Dstr0093.pdf
>NAME
>VALUE
<b>SML10XXKH-TR (HIGH INTENSITY) LED</b><p>
<table>
<tr><td>SML10R3KH-TR</td><td>ULTRA RED</td></tr>
<tr><td>SML10E3KH-TR</td><td>SUPER REDSUPER BLUE</td></tr>
<tr><td>SML10O3KH-TR</td><td>SUPER ORANGE</td></tr>
<tr><td>SML10PY3KH-TR</td><td>PURE YELLOW</td></tr>
<tr><td>SML10OY3KH-TR</td><td>ULTRA YELLOW</td></tr>
<tr><td>SML10AG3KH-TR</td><td>AQUA GREEN</td></tr>
<tr><td>SML10BG3KH-TR</td><td>BLUE GREEN</td></tr>
<tr><td>SML10PB1KH-TR</td><td>SUPER BLUE</td></tr>
<tr><td>SML10CW1KH-TR</td><td>WHITE</td></tr>
</table>
Source: http://www.ledtronics.com/ds/smd-1206/dstr0094.PDF
>NAME
>VALUE
<b>SML0603-XXX (HIGH INTENSITY) LED</b><p>
<table>
<tr><td>AG3K</td><td>AQUA GREEN</td></tr>
<tr><td>B1K</td><td>SUPER BLUE</td></tr>
<tr><td>R1K</td><td>SUPER RED</td></tr>
<tr><td>R3K</td><td>ULTRA RED</td></tr>
<tr><td>O3K</td><td>SUPER ORANGE</td></tr>
<tr><td>O3KH</td><td>SOFT ORANGE</td></tr>
<tr><td>Y3KH</td><td>SUPER YELLOW</td></tr>
<tr><td>Y3K</td><td>SUPER YELLOW</td></tr>
<tr><td>2CW</td><td>WHITE</td></tr>
</table>
Source: http://www.ledtronics.com/ds/smd-0603/Dstr0092.pdf
>NAME
>VALUE
>NAME
>VALUE
<b>LED</b><p>
<u>OSRAM</u>:<br>
- <u>CHIPLED</u><br>
LG R971, LG N971, LY N971, LG Q971, LY Q971, LO R971, LY R971
LH N974, LH R974<br>
LS Q976, LO Q976, LY Q976<br>
LO Q996<br>
- <u>Hyper CHIPLED</u><br>
LW Q18S<br>
LB Q993, LB Q99A, LB R99A<br>
- <u>SideLED</u><br>
LS A670, LO A670, LY A670, LG A670, LP A670<br>
LB A673, LV A673, LT A673, LW A673<br>
LH A674<br>
LY A675<br>
LS A676, LA A676, LO A676, LY A676, LW A676<br>
LS A679, LY A679, LG A679<br>
- <u>Hyper Micro SIDELED®</u><br>
LS Y876, LA Y876, LO Y876, LY Y876<br>
LT Y87S<br>
- <u>SmartLED</u><br>
LW L88C, LW L88S<br>
LB L89C, LB L89S, LG L890<br>
LS L89K, LO L89K, LY L89K<br>
LS L896, LA L896, LO L896, LY L896<br>
- <u>TOPLED</u><br>
LS T670, LO T670, LY T670, LG T670, LP T670<br>
LSG T670, LSP T670, LSY T670, LOP T670, LYG T670<br>
LG T671, LOG T671, LSG T671<br>
LB T673, LV T673, LT T673, LW T673<br>
LH T674<br>
LS T676, LA T676, LO T676, LY T676, LB T676, LH T676, LSB T676, LW T676<br>
LB T67C, LV T67C, LT T67C, LS T67K, LO T67K, LY T67K, LW E67C<br>
LS E67B, LA E67B, LO E67B, LY E67B, LB E67C, LV E67C, LT E67C<br>
LW T67C<br>
LS T679, LY T679, LG T679<br>
LS T770, LO T770, LY T770, LG T770, LP T770<br>
LB T773, LV T773, LT T773, LW T773<br>
LH T774<br>
LS E675, LA E675, LY E675, LS T675<br>
LS T776, LA T776, LO T776, LY T776, LB T776<br>
LHGB T686<br>
LT T68C, LB T68C<br>
- <u>Hyper Mini TOPLED®</u><br>
LB M676<br>
- <u>Mini TOPLED Santana®</u><br>
LG M470<br>
LS M47K, LO M47K, LY M47K
<p>
Source: http://www.osram.convergy.de<p>
<u>LUXEON:</u><br>
- <u>LUMILED®</u><br>
LXK2-PW12-R00, LXK2-PW12-S00, LXK2-PW14-U00, LXK2-PW14-V00<br>
LXK2-PM12-R00, LXK2-PM12-S00, LXK2-PM14-U00<br>
LXK2-PE12-Q00, LXK2-PE12-R00, LXK2-PE12-S00, LXK2-PE14-T00, LXK2-PE14-U00<br>
LXK2-PB12-K00, LXK2-PB12-L00, LXK2-PB12-M00, LXK2-PB14-N00, LXK2-PB14-P00, LXK2-PB14-Q00<br>
LXK2-PR12-L00, LXK2-PR12-M00, LXK2-PR14-Q00, LXK2-PR14-R00<br>
LXK2-PD12-Q00, LXK2-PD12-R00, LXK2-PD12-S00<br>
LXK2-PH12-R00, LXK2-PH12-S00<br>
LXK2-PL12-P00, LXK2-PL12-Q00, LXK2-PL12-R00
<p>
Source: www.luxeon.com<p>
<u>KINGBRIGHT:</U><p>
KA-3528ASYC<br>
Source: www.kingbright.com
<b>SMALL OUTLINE TRANSISTOR</b>
>NAME
>VALUE
>NAME
>VALUE
310030097
<b>LAB11</b> - Connectors for various cable types.
>NAME
>NAME
>VALUE
CONN BNC JACK R/A 50 OHM PCB
48 TQFN-EP Package IPC7351
>NAME
>VALUE
PINOUT for the Max19506
>NAME
>VALUE
The MAX19506 dual-channel, analog-to-digital converter
(ADC) provides 8-bit resolution and a maximum sample
rate of 100Msps.
>value
>name
>name
>value
320020122
>NAME
>NAME
>NAME
USB PORT
>NAME
>VALUE
5V
D-
D+
ID
GND
SHIELD
<b>Description:</b> Standard 6MM Tact Switch Package.<br/>
>NAME
<b>Description:</b> Standard 4.2MM Tact Switch Package.Based off C&K PTS 810 Series Tact Switch.<br/>
>NAME
<b>Description:</b> Tact Switch Symbol.<br/>
>NAME
>VALUE
<b>Library:</b> MF_Switches<br/>
<b>Description:</b> Device for Tact Switches. Manufacture part number (MFG#) can be added via Attributes.<br/>
<b>Single and Dual Gates Family, US symbols</b><p>
Little logic devices from Texas Instruments<br>
TinyLogic(R) from FAIRCHILD Semiconductor TM
<p>
<author>Created by evgeni@eniks.com</author><br>
<author>Extended by librarian@cadsoft.de</author>
<b>YZP (R-XBGA-N6)</b> DIE-SIZE BALL GRID ARRAY<p>
NanoFree TM - WCSP (DSBGA) 0.23-mm Large Bump - YZP (Pb-free)<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157
>NAME
>VALUE
<b>DBV (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SOT-23) - DBV<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>DCK (R-PDSO-G6)</b> PLASTIC SMALL-OUTLINE PACKAGE<p>
SOT (SC-70) - DCK<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.
>NAME
>VALUE
<b>DRL (R-PDSO-N6)</b> PLASTIC SMALL OUTLINE<p>
SOT (SOT-553) - DRL<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.pdf
>NAME
>VALUE
<b>YEP (R-XBGA-N6)</b> DIE-SIZE BALL GRID ARRAY<p>
NanoStar TM - WCSP (DSBG A)0.23-mm Large Bump - YEP<br>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157
>NAME
>VALUE
>NAME
>VALUE
>NAME
GND
VCC
<b>Single-Pole, Double-Throw Analog Switch</b><p>
Source: http://focus.ti.com/lit/ds/symlink/sn74lvc1g3157.pdf
<b>Microchip PIC Microcontrollers and other Devices</b><p>
Based on the following sources :
<ul>
<li>Microchip Data Book, 1993
<li>THE EMERGING WORLD STANDARD, 1995/1996
<li>Microchip, Technical Library CD-ROM, June 1998
<li>www.microchip.com
</ul>
<author>Created by librarian@cadsoft.de</author>
<B>Dual In Line</B><p>
package type P
>NAME
>VALUE
<B>28-Lead Plastic Small Outline (SO) </B> Wide, 300 mil Body (SOIC)</B><p>
Source: http://ww1.microchip.com/downloads/en/devicedoc/39632c.pdf
>NAME
>VALUE
<b>Shrink Small Outline Package</b><p>
package type SS
>NAME
>VALUE
<b>QFN28-ML_6X6MM</b><p>
Source: http://www.microchip.com .. 39637a.pdf
>NAME
>VALUE
>NAME
>VALUE
<b>http://ww1.microchip.com/downloads/en/DeviceDoc/21952a.pdf</b><p>
Source: http://ww1.microchip.com/downloads/en/DeviceDoc/21952a.pdf
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 3 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 4 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 5 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm, outline 6 x 5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 mm + 5 mm, outline 2.4 x 7 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.4 x 4.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 2.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 4.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 5.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
Horizontal, grid 5 mm, outline 7.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 3.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 4.2 x 10.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 5.2 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 4.3 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 5.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm, outline 6.4 x 13.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 5.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 6.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 7.2 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 8.4 x 18.3 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 15 mm, outline 9.1 x 18.2 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 6.2 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 7.4 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 8.7 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 10.8 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 22.5 mm, outline 11.3 x 26.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 9.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 11.3 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 13.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 20.5 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 13.7 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 16.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 32.5 mm, outline 18.2 x 37.4 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 19.2 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 20.3 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 5 mm, outline 3.5 x 7.5 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 37.5 mm, outline 15.5 x 41.8 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 7.5 mm, outline 6.3 x 10.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 15.4 x 31.6 mm
>NAME
>VALUE
<b>CAPACITOR</b><p>
grid 27.5 mm, outline 17.3 x 31.6 mm
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0204 reflow solder</b><p>
Metric Code Size 1005
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0603 reflow solder</b><p>
Metric Code Size 1608
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1206 reflow solder</b><p>
Metric Code Size 3216
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1210 reflow solder</b><p>
Metric Code Size 3225
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1812 reflow solder</b><p>
Metric Code Size 4532
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 1825 reflow solder</b><p>
Metric Code Size 4564
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2220 reflow solder</b><p>Metric Code Size 5650
>NAME
>VALUE
<b>Ceramic Chip Capacitor KEMET 2225 reflow solder</b><p>Metric Code Size 5664
>NAME
>VALUE
Source: http://www.avxcorp.com/docs/catalogs/cx5r.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf
>NAME
>VALUE
<b>CAPACITOR</b>
>NAME
>VALUE
>NAME
>VALUE
<B>CAPACITOR</B>, American symbol
<b>SMALL OUTLINE INTEGRATED CIRCUIT</b><p>
16-Pin (150-Mil) SOIC<br>
Source: http://www.cypress.com .. 38-12025_0P_V.pdf
CH340G
CH340G
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find crystals and oscillators and other things that go "tick".<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<b>CRYSTAL</b>
>NAME
>VALUE
<b>CRYSTAL</b>
>NAME
>VALUE
<b>CRYSTAL</b>
>NAME
>VALUE
<b>CRYSTAL</b>
>NAME
>VALUE
<B>CRYSTAL</B>
>VALUE
>NAME
>Name
>Value
>NAME
>VALUE
32kHz crystal package<br>
This is the "EZ" version, which has limited top masking for improved ease of assembly.
>NAME
>VALUE
>NAME
>VALUE
<h3>3.2 x 1.5mm Crystal Package</h3>
<p>e.g: <a href="http://www.sii.co.jp/en/quartz/files/2013/03/file_PRODUCT_MASTER_50812_GRAPHIC03.pdf">SX-32S</a></p>
>Name
>Value
>NAME
>VALUE
1
2
Various standard crystals. Proven footprints.
<b>10-Lead Mini Small Outline Package [MSOP]</b> (RM-10)<p>
Source: http://www.analog.com/UploadedFiles/Data_Sheets/35641221898805SSM2167_b.pdf<br>
COMPLIANT TO JEDEC STANDARDS MO-187BA
>NAME
>VALUE
>value
>name
>name
>name
>value
320030059
<b>Relays</b><p>
<ul>
<li>Eichhoff
<li>Finder
<li>Fujitsu
<li>HAMLIN
<li>OMRON
<li>Matsushita
<li>NAiS
<li>Siemens
<li>Schrack
</ul>
<author>Created by librarian@cadsoft.de</author>
<b>SOP 04 - 4.3x4.4mm RM 2.54mm</b> AQY21, AQY22, AQY61 Series NAiS<p>Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<b>SMD 04 9.4x8.8mm RM 5.08mm</b> NAiS<p>
Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<b>DIL 04</b> NAiS<p>
Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
SOP 04 - 4.3x4.4mm RM 2.54mm AQY21, AQY22, AQY61 Series NAiSSource: http://www.mew-europe.com/.. pti_en.pdf
SMD 04 9.4x8.8mm RM 5.08mm NAiS
Source: http://www.mew-europe.com/.. pti_en.pdf
DIL 04 NAiS
Source: http://www.mew-europe.com/.. pti_en.pdf
>NAME
>VALUE
<b>PhotoMOS Relay</b> NAiS<p>
Source: http://www.panasonic-electric-works.com/catalogues/downloads/photomos/ds_x615_en_aqz10_20.pdf
<h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
>Name
>Value
>NAME
>VALUE
From: http://www.niccomp.com/catalog/npis_ls.pdf
>Name
>Value
>Name
>Value
<b>CAPACITOR</b><p>
chip
>NAME
>VALUE
>NAME
>VALUE
1007 (2518 metric) package
>NAME
>VALUE
>Name
>Value
>NAME
>VALUE
>NAME
>VALUE
1.3x1.3mm 1.7mm between. Fits Sumida CDRH2D09, CDRH2D18 inductor
>NAME
>VALUE
>NAME
>VALUE
>Name
>Value
>Name
>Value
For Coiltronics/Cooper DR1030 series inductors
>NAME
>VALUE
1W Resistor, 0.6" wide<p>
Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a>
>Name
>Value
>Value
>Name
>NAME
>VALUE
Footprint for Bourns SDR0403 family inductors
>VALUE
>NAME
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
Land pattern for variable capacitor - Murata Electronics TZY2 - by Haas
>NAME
>VALUE
>NAME
>VALUE
>NAME
>VALUE
<b>Inductors</b><p>
Basic Inductor/Choke - 0603 and 1206. Footprints are not proven and vary greatly between part numbers.<br>
INDUCTOR POWER 3.3UH 4.0A SMD<br>
0.197" L x 0.197" W x 0.177" H (5.00mm x 5.00mm x 4.50mm)
Variable, non-polarized capacitor
<h3>SparkFun Power Symbols</h3>
This library contains power, ground, and voltage-supply symbols.
<br>
<br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application.
<br>
<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>.
<br>
<br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
<br>
<br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.
<h3>VCC Analog Voltage Supply</h3>
>VALUE
<h3>Analog VCC Voltage Supply</h3>
<p>Generic analog supply symbol.</p>
<p><strong>Open Source Hardware PCB Logos</strong>
<p>A simple polygon based version of the OSHWA logos for use on Eagle PCB's
<p>For use please refer to the OSHWA definition at <a href="http://www.oshwa.org/definition/">http://www.oshwa.org/definition/</a>
<p>Based on the NBitWonder version (<a href="http://nbitwonder.com">http://nbitwonder.com</a>)
<p><strong>Andrew Cooper</strong><br>28Nov2016<br><a href="http://www.darkerview.com">www.DarkerView.com</a>
open source
hardware
open source
hardware
open source
hardware
OSHW Logo
<p>The OSHW logo for PCB layout
<b>Frames for Sheet and Layout</b>
>DRAWING_NAME
>LAST_DATE_TIME
>SHEET
Sheet:
<b>FRAME</b><p>
DIN A3, landscape with location and doc. field
<b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<map name="nav_main">
<area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
<area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
<area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
<area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
<area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
<area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
<area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
<area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
<area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
<area shape="default" nohref>
</map>
<html>
<title></title>
<LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
<tr valign="top">
</td>
<! <td width="10"> </td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD> </TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L ALT<BR>
56P ALT<BR>
78P ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ ALT<BR>
8012EKR ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66X ALT<BR>
-<BR>
64W ALT<BR>
-<BR>
64P ALT<BR>
64W ALT<BR>
64X ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X ALT<BR>
66P ALT<BR>
66W ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y ALT<BR>
67Z ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P> <P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT = ALTERNATE</B></FONT>
<P>
<P>
</td>
</tr>
</table>
</BODY></HTML>
<b>RESISTOR</b><p>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b>
>NAME
>VALUE
<b>RESISTOR</b><p>
wave soldering
>NAME
>VALUE
<b>RESISTOR</b><p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b> wave soldering<p>
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.10 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.12 W
>NAME
>VALUE
<b>RESISTOR</b><p>
MELF 0.25 W
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0204, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 10 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 12 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 15mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0207, grid 7.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 10mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0309, grid 2.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0411, grid 3.81 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0414, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 17.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0617, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 22.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0613, grid 15 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0817, grid 22.5 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type 0817, grid 6.35 mm
>NAME
>VALUE
0817
<b>RESISTOR</b><p>
type V234, grid 12.5 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V235, grid 17.78 mm
>NAME
>VALUE
<b>RESISTOR</b><p>
type V526-0, grid 2.5 mm
>NAME
>VALUE
<b>CECC Size RC2211</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC2211</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC3715</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Reflow Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>CECC Size RC6123</b> Wave Soldering<p>
source Beyschlag
>NAME
>VALUE
<b>RESISTOR</b><p>
type 0922, grid 7.5 mm
>NAME
>VALUE
0922
<b>RESISTOR</b><p>
type RDH, grid 15 mm
>NAME
>VALUE
RDH
<b>Mini MELF 0102 Axial</b>
>NAME
>VALUE
<b>RESISTOR</b> chip<p>
Source: http://www.vishay.com/docs/20008/dcrcw.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR52<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR53<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR54<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR56<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC55<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Bulk Metal® Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC60<br>
Source: VISHAY .. vta56.pdf
>NAME
>VALUE
<b>Package 4527</b><p>
Source: http://www.vishay.com/docs/31059/wsrhigh.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf
>NAME
>VALUE
<b>CRCW1218 Thick Film, Rectangular Chip Resistors</b><p>
Source: http://www.vishay.com .. dcrcw.pdf
>NAME
>VALUE
<b>Chip Monolithic Ceramic Capacitors</b> Medium Voltage High Capacitance for General Use<p>
Source: http://www.murata.com .. GRM43DR72E224KW01.pdf
>NAME
>VALUE
<b>PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)</b><p>
Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf
>NAME
>VALUE
>NAME
>VALUE
RESISTOR
RESISTOR
RESISTOR
RESISTOR wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
RESISTOR
wave soldering
RESISTOR
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
RESISTOR wave soldering
Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf
RESISTOR
MELF 0.10 W
RESISTOR
MELF 0.25 W
RESISTOR
MELF 0.12 W
RESISTOR
MELF 0.10 W
RESISTOR
MELF 0.25 W
RESISTOR
MELF 0.25 W
RESISTOR
MELF 0.12 W
RESISTOR
MELF 0.25 W
RESISTOR
type 0204, grid 5 mm
RESISTOR
type 0204, grid 7.5 mm
RESISTOR
type 0204, grid 2.5 mm
RESISTOR
type 0207, grid 10 mm
RESISTOR
type 0207, grid 12 mm
RESISTOR
type 0207, grid 15mm
RESISTOR
type 0207, grid 2.5 mm
RESISTOR
type 0207, grid 5 mm
RESISTOR
type 0207, grid 7.5 mm
RESISTOR
type 0309, grid 10mm
RESISTOR
type 0309, grid 12.5 mm
RESISTOR
type 0309, grid 2.5 mm
RESISTOR
type 0411, grid 12.5 mm
RESISTOR
type 0411, grid 15 mm
RESISTOR
type 0411, grid 3.81 mm
RESISTOR
type 0414, grid 15 mm
RESISTOR
type 0414, grid 5 mm
RESISTOR
type 0617, grid 17.5 mm
RESISTOR
type 0617, grid 22.5 mm
RESISTOR
type 0617, grid 5 mm
RESISTOR
type 0922, grid 22.5 mm
RESISTOR
type 0613, grid 5 mm
RESISTOR
type 0613, grid 15 mm
RESISTOR
type 0817, grid 22.5 mm
RESISTOR
type 0817, grid 6.35 mm
RESISTOR
type V234, grid 12.5 mm
RESISTOR
type V235, grid 17.78 mm
RESISTOR
type V526-0, grid 2.5 mm
CECC Size RC2211 Reflow Soldering
source Beyschlag
CECC Size RC2211 Wave Soldering
source Beyschlag
CECC Size RC3715 Reflow Soldering
source Beyschlag
CECC Size RC3715 Wave Soldering
source Beyschlag
CECC Size RC6123 Reflow Soldering
source Beyschlag
CECC Size RC6123 Wave Soldering
source Beyschlag
RESISTOR
type 0922, grid 7.5 mm
RESISTOR
type RDH, grid 15 mm
Mini MELF 0102 Axial
RESISTOR chip
Source: http://www.vishay.com/docs/20008/dcrcw.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR52
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR53
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR54
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR55
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RBR56
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RNC55
Source: VISHAY .. vta56.pdf
Bulk Metal® Foil Technology, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements
MIL SIZE RNC60
Source: VISHAY .. vta56.pdf
Package 4527
Source: http://www.vishay.com/docs/31059/wsrhigh.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
Wirewound Resistors, Precision Power
Source: VISHAY wscwsn.pdf
CRCW1218 Thick Film, Rectangular Chip Resistors
Source: http://www.vishay.com .. dcrcw.pdf
Chip Monolithic Ceramic Capacitors Medium Voltage High Capacitance for General Use
Source: http://www.murata.com .. GRM43DR72E224KW01.pdf
PRL1632 are realized as 1W for 3.2 × 1.6mm(1206)
Source: http://www.mouser.com/ds/2/392/products_18-2245.pdf
>NAME
>VALUE
<B>RESISTOR</B>, European symbol
<b>C&K Swtiches</b> - v1.00<p>
THIS LIBRARY IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED.
USE AT YOUR OWN RISK!
<p>Copyright (C) 2011, Bob Starr<br>
http://www.bobstarr.net
DPDT SLIDE SWITCH
>NAME
>VALUE
>NAME
>VALUE
DPDT SLIDE SWITCH
<b>Pin Header Connectors</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
PIN HEADER
PIN HEADER
>NAME
>VALUE
<b>PIN HEADER</b>
<b>https://componentsearchengine.com</b><p>
<author>Created by SamacSys</author>
<b>21-0036 8Pin uMax_1</b><br>
>NAME
>VALUE
>NAME
>VALUE
<b>High Speed Operational Amplifiers Low-Power, +3V/+5V, 400MHz Single-Supply Op Amps with Rail-to-Rail Outputs</b><p>
Source: <a href="https://componentsearchengine.com/Datasheets/1/MAX4416EUA .pdf"> Datasheet </a>
Front-End
Front-Ends
Channel 3
Channel 1
Channel 2
Channel 4
Front-End gain and offset
Channel 1+2
Channel 3+4
Offset DAC
4 200 Ohm resistors in parallel
for 50 Ohm termination
10M Ohm resistor needed for AC coupling mode
to bring the DC offset to 0.
The time constant for the AC couping is
RC=0.01uF*10M=0.1 sec.
These resistors, in parallel with 10M (or 50) Ohm termination,
sets the input impedance.
For the 1.1M case, and high impedance, it is e.g.
1/(1/1.1M+1/10M)=0.99M (so close to 1M).
The caps are for freq compensation.
Switch for AC/DC coupling
Switch for 1M / 50 Ohm
input impedance
Analog switch that sends either
Ch 0 or Ch2 to the first input of ADC2, for oversampling
Analog switch that sends either
Ch 1 or Ch3 to the second input of ADC2, for oversampling
Dual channel high-bandwidth op-amps
x1 or x10 gain switch
These caps reduce
noise on the offsets
Gain for negative feedback op-amp is R2/R1,
i.e. (1M+1M)/1.1M = ~2 or ~0.2 for
low or high gain.
Compensation must match the inverse,
e.g. 5pF/10pF=~1/2 or
50pF/10pF=~5 for low or high gain.
Variable caps are added so it can be
adjusted in situ.
Digital
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
LOW Speed
FPGA
Back pinout 2
Front pinout
Oscillator
Top pinouts
IO expanders
Serial to USB interface
LEDs
JTAG interface
Can take 5V from either the
right side connector
or the USB connector
Chip that talks UART
over USB
Back pinout 1
ADCs & Power
ADCs
Power regulation and decoupling
3V3
VCCA
Channel 1+2
Channel 3+4
Misc.
Note that the two ADCs have separate
clocks (32 and 33), which can be
50% out of phase, for oversampling.
SHDN is used to turn
off the ADCs when
inactive, to save power
SDIN/SCLK,CS
is the SPI interface
Dual 8-bit
ADC outputs
Inputs to this ADC
are from the
oversampling switches
For reducing noise on the power.
The inductor helps reduce low-freq
noise on the USB 5V power input.
Separate 3.3V power rail for the
analog components, so noise from
FPGA etc. doesn't get into ADCs.
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/rack_backplane_v9.0.brd
================================================
v9.02_rack_backplane_v1.01
by Dr. Andy Haas
GND
121
ExtTrig
AIN1
101
GND
3.3V
100
91
90
89
88
GND
RX L
TRIG
OUT
TX L
TRIG
IN
5V
SPR L R
CLK
OUT
GND
RX
TX
TRG
IN
TRG
OUT
5V
CLK
IN
GND
GND
SPR R
Trig board
<b>Pin Header Connectors</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>PIN HEADER</b>
>NAME
>VALUE
PIN HEADER
<p><strong>Open Source Hardware PCB Logos</strong>
<p>A simple polygon based version of the OSHWA logos for use on Eagle PCB's
<p>For use please refer to the OSHWA definition at <a href="http://www.oshwa.org/definition/">http://www.oshwa.org/definition/</a>
<p>Based on the NBitWonder version (<a href="http://nbitwonder.com">http://nbitwonder.com</a>)
<p><strong>Andrew Cooper</strong><br>28Nov2016<br><a href="http://www.darkerview.com">www.DarkerView.com</a>
open source
hardware
<b>EAGLE Design Rules</b>
<p>
The default Design Rules have been set to cover
a wide range of applications. Your particular design
may have different requirements, so please make the
necessary adjustments and save your customized
design rules under a new name.
Since Version 6.2.2 text objects can contain more than one line,
which will not be processed correctly with this version.
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: eagle/rack_backplane_v9.0.sch
================================================
<b>Supply Symbols</b><p>
GND, VCC, 0V, +5V, -5V, etc.<p>
Please keep in mind, that these devices are necessary for the
automatic wiring of the supply signals.<p>
The pin name defined in the symbol is identical to the net which is to be wired automatically.<p>
In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p>
<author>Created by librarian@cadsoft.de</author>
>VALUE
>VALUE
<b>SUPPLY SYMBOL</b>
<b>SUPPLY SYMBOL</b>
<b>Frames for Sheet and Layout</b>
>DRAWING_NAME
>LAST_DATE_TIME
>SHEET
Sheet:
<b>FRAME</b><p>
DIN A3, landscape with location and doc. field
<b>Pin Header Connectors</b><p>
<author>Created by librarian@cadsoft.de</author>
<b>PIN HEADER</b>
>NAME
>VALUE
<b>PIN HEADER</b>
>NAME
>VALUE
PIN HEADER
PIN HEADER
>NAME
>VALUE
<b>PIN HEADER</b>
Digital
Trig board
Trig board
Since Version 8.2, EAGLE supports online libraries. The ids
of those online libraries will not be understood (or retained)
with this version.
Since Version 8.3, EAGLE supports URNs for individual library
assets (packages, symbols, and devices). The URNs of those assets
will not be understood (or retained) with this version.
Since Version 8.3, EAGLE supports the association of 3D packages
with devices in libraries, schematics, and board files. Those 3D
packages will not be understood (or retained) with this version.
================================================
FILE: max10_adc_firmware/ASSERTION_ERROR.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 64 64)
(text "ASSERTION_ERROR" (rect 5 0 107 12)(font "Arial" ))
(text "inst" (rect 8 32 20 44)(font "Arial" ))
(drawing
(rectangle (rect 16 16 32 32)(line_width 1))
)
)
================================================
FILE: max10_adc_firmware/BaudTickGen.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 152 96)
(text "BaudTickGen" (rect 5 0 58 12)(font "Arial" ))
(text "inst" (rect 8 64 20 76)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "clk" (rect 0 0 10 12)(font "Arial" ))
(text "clk" (rect 21 27 31 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "enable" (rect 0 0 24 12)(font "Arial" ))
(text "enable" (rect 21 43 45 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 136 32)
(output)
(text "tick" (rect 0 0 12 12)(font "Arial" ))
(text "tick" (rect 103 27 115 39)(font "Arial" ))
(line (pt 136 32)(pt 120 32)(line_width 1))
)
(parameter
"ClkFrequency"
"25000000"
""
(type "PARAMETER_SIGNED_DEC") )
(parameter
"Baud"
"115200"
""
(type "PARAMETER_SIGNED_DEC") )
(parameter
"Oversampling"
"1"
""
(type "PARAMETER_SIGNED_DEC") )
(drawing
(rectangle (rect 16 16 120 64)(line_width 1))
)
(annotation_block (parameter)(rect 152 -64 252 16))
)
================================================
FILE: max10_adc_firmware/Chain1.cdf
================================================
/* Quartus Prime Version 18.0.0 Build 614 04/24/2018 SJ Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(10M08SAE144ES) Path("C:/gitwork/master/Haasoscope/max10_adc_firmware/output_files/") File("serial1.sof") MfrSpec(OpMask(1));
ChainEnd;
AlteraBegin;
ChainType(JTAG);
AlteraEnd;
================================================
FILE: max10_adc_firmware/Chain2.cdf
================================================
/* Quartus Prime Version 18.0.0 Build 614 04/24/2018 SJ Lite Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(10M08SAE144ES) Path("C:/gitwork/master/Haasoscope/max10_adc_firmware/output_files/") File("serial1.pof") MfrSpec(OpMask(1) Child_OpMask(2 1 1));
ChainEnd;
AlteraBegin;
ChainType(JTAG);
AlteraEnd;
================================================
FILE: max10_adc_firmware/DelayLine.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2015 Altera Corporation. All rights reserved.
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, the Altera Quartus II License Agreement,
the Altera MegaCore Function License Agreement, or other
applicable license agreement, including, without limitation,
that your use is for the sole purpose of programming logic
devices manufactured by Altera and sold by Altera or its
authorized distributors. Please refer to the applicable
agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 272 128)
(text "DelayLine" (rect 5 0 45 12)(font "Arial" ))
(text "inst" (rect 8 96 20 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "a[data_width-1..0]" (rect 0 0 67 12)(font "Arial" ))
(text "a[data_width-1..0]" (rect 21 27 88 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "b[data_width-1..0]" (rect 0 0 67 12)(font "Arial" ))
(text "b[data_width-1..0]" (rect 21 43 88 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 3))
)
(port
(pt 0 64)
(input)
(text "START" (rect 0 0 34 12)(font "Arial" ))
(text "START" (rect 21 59 55 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64)(line_width 1))
)
(port
(pt 0 80)
(input)
(text "STOP" (rect 0 0 24 12)(font "Arial" ))
(text "STOP" (rect 21 75 45 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80)(line_width 1))
)
(port
(pt 256 32)
(output)
(text "output[data_width-1..0]" (rect 0 0 86 12)(font "Arial" ))
(text "output[data_width-1..0]" (rect 149 27 235 39)(font "Arial" ))
(line (pt 256 32)(pt 240 32)(line_width 3))
)
(parameter
"DATA_WIDTH"
"20"
""
(type "PARAMETER_SIGNED_DEC") )
(drawing
(rectangle (rect 16 16 240 96)(line_width 1))
)
(annotation_block (parameter)(rect 272 -64 372 16))
)
================================================
FILE: max10_adc_firmware/SPI.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2015 Altera Corporation. All rights reserved.
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, the Altera Quartus II License Agreement,
the Altera MegaCore Function License Agreement, or other
applicable license agreement, including, without limitation,
that your use is for the sole purpose of programming logic
devices manufactured by Altera and sold by Altera or its
authorized distributors. Please refer to the applicable
agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 248 160)
(text "SPI" (rect 5 0 19 12)(font "Arial" ))
(text "inst" (rect 8 128 20 140)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "ClkI" (rect 0 0 15 12)(font "Arial" ))
(text "ClkI" (rect 21 27 36 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "DI" (rect 0 0 9 12)(font "Arial" ))
(text "DI" (rect 21 43 30 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 0 64)
(input)
(text "Rst" (rect 0 0 15 12)(font "Arial" ))
(text "Rst" (rect 21 59 36 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64)(line_width 1))
)
(port
(pt 0 80)
(input)
(text "Trig" (rect 0 0 15 12)(font "Arial" ))
(text "Trig" (rect 21 75 36 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80)(line_width 1))
)
(port
(pt 0 96)
(input)
(text "PDI[bitwidth-1..0]" (rect 0 0 63 12)(font "Arial" ))
(text "PDI[bitwidth-1..0]" (rect 21 91 84 103)(font "Arial" ))
(line (pt 0 96)(pt 16 96)(line_width 3))
)
(port
(pt 232 32)
(output)
(text "ClkO" (rect 0 0 20 12)(font "Arial" ))
(text "ClkO" (rect 191 27 211 39)(font "Arial" ))
(line (pt 232 32)(pt 216 32)(line_width 1))
)
(port
(pt 232 48)
(output)
(text "DO" (rect 0 0 14 12)(font "Arial" ))
(text "DO" (rect 197 43 211 55)(font "Arial" ))
(line (pt 232 48)(pt 216 48)(line_width 1))
)
(port
(pt 232 64)
(output)
(text "CS" (rect 0 0 12 12)(font "Arial" ))
(text "CS" (rect 199 59 211 71)(font "Arial" ))
(line (pt 232 64)(pt 216 64)(line_width 1))
)
(port
(pt 232 80)
(output)
(text "Bsy" (rect 0 0 16 12)(font "Arial" ))
(text "Bsy" (rect 195 75 211 87)(font "Arial" ))
(line (pt 232 80)(pt 216 80)(line_width 1))
)
(port
(pt 232 96)
(output)
(text "PDO[bitwidth-1..0]" (rect 0 0 68 12)(font "Arial" ))
(text "PDO[bitwidth-1..0]" (rect 143 91 211 103)(font "Arial" ))
(line (pt 232 96)(pt 216 96)(line_width 3))
)
(parameter
"BitWidth"
"8"
""
(type "PARAMETER_SIGNED_DEC") )
(parameter
"Prescaler"
"0"
""
(type "PARAMETER_SIGNED_DEC") )
(parameter
"Master"
"'1'"
""
(type "PARAMETER_ENUM") )
(parameter
"CPHA"
"'1'"
""
(type "PARAMETER_ENUM") )
(parameter
"CPOL"
"'0'"
""
(type "PARAMETER_ENUM") )
(drawing
(rectangle (rect 16 16 216 128)(line_width 1))
)
(annotation_block (parameter)(rect 248 -64 348 16))
)
================================================
FILE: max10_adc_firmware/SPI.vhd
================================================
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity SPI is
generic(
BitWidth: natural := 8;
Prescaler: natural := 0;
Master: std_logic := '1';
CPHA: std_logic := '1'; --Rising edge = 1, Falling edge = 0
CPOL: std_logic := '0' --Idle high = 1, Idle low = 0
);
port(
ClkO, DO, CS, Bsy: out std_logic;
ClkI, DI, Rst, Trig: in std_logic;
PDI: in std_logic_vector(BitWidth-1 downto 0); --Parallel data in
PDO: out std_logic_vector(BitWidth-1 downto 0) --Parallel data out
);
end SPI;
architecture A of SPI is
constant CSTog: std_logic := '1';
type States is (CSLow, CSHigh, DShift);
signal State: States := CSHigh;
signal DataI, DataO: std_logic_vector(BitWidth-1 downto 0);
signal Presc: unsigned(7 downto 0);
signal ClkOv: std_logic;
signal DCnt: unsigned(4 downto 0) := to_unsigned(BitWidth, 5);
signal TA, TAA: std_logic := '0';
begin
process(ClkI, DI, Rst, ClkOv)
begin
if(Rst = '0') then
State <= CSHigh;
CS <= '1';
DO <= '0';
ClkO <= '0';
TA <= '0';
TAA <= '0';
elsif(rising_edge(ClkI)) then
TAA <= TA;
TA <= Trig;
--Rising edge
if(TAA = '0' and TA = '1') then
DataO <= PDI;
State <= CSLow;
end if;
if(Presc(Prescaler) = '1') then
Presc <= (others => '0');
if(Master = '1') then
case State is
when CSHigh =>
Bsy <= '0';
--if(CSTog = '1') then CS <= '1'; end if; -- ACH
CS <= '1';
DCnt <= to_unsigned(BitWidth, 5);
DO <= '0';
ClkOv <= '0';
when CSLow =>
Bsy <= '1';
State <= DShift;
CS <= '0';
DO <= DataO(7);
when DShift =>
if(DCnt = "000") then
State <= CSHigh;
PDO <= DataI;
end if;
if(ClkOv = CPHA) then
DO <= DataO(to_integer(DCnt-1));
else
DataI(7 downto 0) <= DataI(6 downto 0) & DI;
DCnt <= DCnt - 1;
end if;
ClkOv <= not ClkOv;
end case;
else --Slave not yet implemented!
end if;
else
Presc <= Presc + 1;
end if;
end if;
ClkO <= ClkOv xor CPOL;
end process;
end A;
================================================
FILE: max10_adc_firmware/SSD1306.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2015 Altera Corporation. All rights reserved.
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, the Altera Quartus II License Agreement,
the Altera MegaCore Function License Agreement, or other
applicable license agreement, including, without limitation,
that your use is for the sole purpose of programming logic
devices manufactured by Altera and sold by Altera or its
authorized distributors. Please refer to the applicable
agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 224 160)
(text "SSD1306" (rect 5 0 41 12)(font "Arial" ))
(text "inst" (rect 8 128 20 140)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "Clk" (rect 0 0 12 12)(font "Arial" ))
(text "Clk" (rect 21 27 33 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "Rst" (rect 0 0 15 12)(font "Arial" ))
(text "Rst" (rect 21 43 36 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 0 64)
(input)
(text "Bsy" (rect 0 0 16 12)(font "Arial" ))
(text "Bsy" (rect 21 59 37 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64)(line_width 1))
)
(port
(pt 0 80)
(input)
(text "Source" (rect 0 0 28 12)(font "Arial" ))
(text "Source" (rect 21 75 49 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80)(line_width 1))
)
(port
(pt 0 96)
(input)
(text "MemDI[7..0]" (rect 0 0 50 12)(font "Arial" ))
(text "MemDI[7..0]" (rect 21 91 71 103)(font "Arial" ))
(line (pt 0 96)(pt 16 96)(line_width 3))
)
(port
(pt 208 32)
(output)
(text "PDO[7..0]" (rect 0 0 40 12)(font "Arial" ))
(text "PDO[7..0]" (rect 147 27 187 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 3))
)
(port
(pt 208 48)
(output)
(text "Trig" (rect 0 0 15 12)(font "Arial" ))
(text "Trig" (rect 172 43 187 55)(font "Arial" ))
(line (pt 208 48)(pt 192 48)(line_width 1))
)
(port
(pt 208 64)
(output)
(text "CD" (rect 0 0 14 12)(font "Arial" ))
(text "CD" (rect 173 59 187 71)(font "Arial" ))
(line (pt 208 64)(pt 192 64)(line_width 1))
)
(port
(pt 208 80)
(output)
(text "MADDR[9..0]" (rect 0 0 59 12)(font "Arial" ))
(text "MADDR[9..0]" (rect 128 75 187 87)(font "Arial" ))
(line (pt 208 80)(pt 192 80)(line_width 3))
)
(drawing
(rectangle (rect 16 16 192 128)(line_width 1))
)
)
================================================
FILE: max10_adc_firmware/SSD1306.vhd
================================================
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity SSD1306 is
port(
PDO: out std_logic_vector(7 downto 0);
Clk, Rst, Bsy, Source: in std_logic;
Trig, CD: out std_logic;
MADDR: out std_logic_vector(9 downto 0);
MemDI: in std_logic_vector(7 downto 0)
);
end SSD1306;
architecture Ar of SSD1306 is
constant AMNT_INSTRS: natural := 27;
constant CONTRAST: std_logic_vector(7 downto 0) := x"0F";
type IAR is array (0 to AMNT_INSTRS-1) of std_logic_vector(7 downto 0);
signal Instrs: IAR := (x"A8", x"3F", x"D3", x"00", x"40", x"A0", x"DA", x"12", x"81", CONTRAST, x"20", x"00", x"21", x"00", x"7F", x"22", x"00", x"07",
x"A6", --A6 for no invert --A7 for invert
x"DB", x"40", x"A4", x"D5", x"80", x"8D", x"14", x"AF");
constant AMNT_DATA: natural := 1024;
type IDATA is array (0 to AMNT_DATA-1) of std_logic_vector(7 downto 0);
signal Datas: IDATA := (
x"df",x"bc",x"f3",x"5e",x"b5",x"da",x"77",x"f9",x"1f",x"02",x"1e",x"01",x"1f",x"1a",x"1d",x"3a",x"25",x"58",x"3e",x"65",x"5f",x"2c",x"31",x"ae",x"f9",x"fe",x"f5",x"fb",x"f6",x"fe",x"fd",x"de",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"1f",x"0f",x"07",x"01",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"80",x"00",x"02",x"a0",x"10",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"02",x"00",x"00",x"04",x"01",x"04",x"09",x"00",x"00",x"00",x"00",x"00",x"01",x"00",x"00",x"01",x"14",x"21",x"00",x"0a",x"01",x"04",x"02",x"10",x"45",x"12",x"05",x"0a",x"81",x"04",x"03",x"00",x"45",x"08",x"52",x"8a",x"25",x"55",
x"ff",x"bf",x"7f",x"ff",x"7f",x"ff",x"7f",x"ff",x"7f",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"7f",x"ff",x"7f",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fe",x"fc",x"fc",x"c1",x"b6",x"eb",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"3f",x"1f",x"0f",x"07",x"07",x"01",x"0a",x"07",x"9f",x"0e",x"1f",x"3e",x"1f",x"3e",x"1f",x"1e",x"1f",x"0d",x"0f",x"0f",x"0b",x"07",x"05",x"45",x"21",x"10",x"08",x"00",x"44",x"03",x"23",x"01",x"89",x"01",x"00",x"00",x"00",x"00",x"00",x"00",x"55",x"00",x"3e",x"41",x"ba",x"45",x"2a",x"95",x"6a",x"95",x"2a",x"d1",x"4a",x"a4",x"52",x"a8",x"52",x"ad",x"42",x"2d",x"92",x"ad",x"52",x"4b",
x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fe",x"fe",x"fe",x"fc",x"fc",x"fe",x"fc",x"fe",x"fe",x"fc",x"fc",x"d4",x"dc",x"fc",x"fe",x"fe",x"fe",x"fe",x"fe",x"fe",x"fe",x"fe",x"e0",x"00",x"04",x"0e",x"60",x"9c",x"7e",x"de",x"be",x"fe",x"fe",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fe",x"fe",x"fa",x"f4",x"fa",x"f2",x"ed",x"f2",x"ed",x"d2",x"ed",x"da",x"f4",x"c8",x"f8",x"e8",x"e1",x"ea",x"81",x"27",x"ca",x"14",x"ab",x"94",x"2b",x"c5",x"3e",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fc",x"63",x"04",x"db",x"a8",x"d4",x"e0",x"dc",x"f0",x"ee",x"f0",x"fe",x"f1",x"6c",x"f5",x"78",x"3e",x"b9",x"5c",x"1f",x"ae",x"4f",x"43",x"c1",x"00",x"e0",x"10",x"a0",x"58",x"84",x"32",x"cc",x"23",x"5c",x"a2",x"55",x"2a",x"d5",x"6a",
x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fd",x"c0",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"c0",x"80",x"80",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"a0",x"50",x"a8",x"04",x"0a",x"01",x"0a",x"45",x"17",x"5f",x"7f",x"f2",x"a5",x"8a",x"25",x"5a",x"2b",x"cb",x"07",x"43",x"87",x"e3",x"d3",x"d3",x"e9",x"e0",x"e0",x"e0",x"c0",x"80",x"10",x"e0",x"50",x"c0",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"02",x"40",x"85",x"50",x"82",x"75",x"97",x"6d",x"b7",x"ff",x"ff",x"7f",x"1f",x"00",x"00",x"00",x"00",x"00",x"80",x"00",x"a0",x"40",x"90",x"6a",x"91",
x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"57",x"01",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"01",x"00",x"00",x"00",x"02",x"01",x"00",x"00",x"00",x"00",x"00",x"00",x"02",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"03",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"07",x"37",x"0f",x"3f",x"8f",x"57",x"4f",x"17",x"eb",x"d7",x"25",x"db",x"4e",x"bf",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fc",x"05",x"1f",x"7a",x"85",x"28",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"01",x"00",x"85",x"71",x"8f",x"75",x"db",x"7f",x"db",x"7f",x"ff",x"ff",x"ff",x"fc",x"00",x"00",x"00",x"00",x"00",x"01",x"00",x"00",x"00",x"00",x"00",x"50",
x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"3f",x"7f",x"3f",x"3f",x"3f",x"3f",x"7f",x"07",x"2b",x"07",x"d1",x"3e",x"4b",x"34",x"03",x"54",x"2e",x"3d",x"d3",x"2d",x"13",x"0b",x"27",x"17",x"07",x"17",x"07",x"6f",x"df",x"af",x"ff",x"3f",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"f8",x"f7",x"f8",x"be",x"fd",x"de",x"fe",x"ef",x"ef",x"f7",x"f3",x"f0",x"e1",x"c7",x"17",x"7f",x"57",x"af",x"5f",x"2f",x"1f",x"2f",x"5f",x"17",x"2f",x"97",x"2b",x"15",x"0a",x"35",x"03",x"70",x"45",x"62",x"51",x"f5",x"d8",x"f7",x"fd",x"ff",x"ff",x"fe",x"fc",x"f8",x"f0",x"c0",x"80",x"00",x"03",x"07",x"0f",x"0f",x"3f",x"fe",x"f8",x"78",x"00",x"0a",x"14",x"01",
x"fd",x"db",x"f5",x"ff",x"ff",x"f5",x"df",x"f5",x"ea",x"ff",x"ed",x"fb",x"fe",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ef",x"ff",x"fe",x"df",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fe",x"fd",x"fa",x"f7",x"cd",x"ba",x"57",x"ab",x"5c",x"8b",x"76",x"89",x"36",x"49",x"a7",x"18",x"e7",x"c9",x"f6",x"e1",x"da",x"f5",x"f2",x"fd",x"f8",x"fa",x"fc",x"fd",x"fe",x"fc",x"ff",x"fe",x"ff",x"fe",x"ff",x"ff",x"fe",x"fd",x"7e",x"fe",x"7a",x"bc",x"7a",x"7c",x"f5",x"f4",x"c4",x"c4",x"80",x"04",x"04",x"0e",x"1c",x"3c",x"fd",x"fc",x"fa",x"f5",x"e0",x"c6",x"09",x"12",x"25",x"94",x"20",x"56",x"89",x"24",
x"f7",x"5f",x"ff",x"fb",x"57",x"fd",x"57",x"fa",x"6f",x"bb",x"f7",x"5d",x"b7",x"ed",x"fa",x"ef",x"f5",x"ff",x"fa",x"ff",x"fb",x"fd",x"fe",x"fb",x"fd",x"f7",x"7e",x"fd",x"f7",x"fb",x"ed",x"ff",x"fd",x"ff",x"fd",x"ff",x"fd",x"fe",x"f5",x"fa",x"f7",x"fb",x"fe",x"fd",x"ff",x"fb",x"fd",x"cb",x"dd",x"da",x"df",x"cd",x"ef",x"a7",x"f3",x"b3",x"f3",x"6b",x"d9",x"2d",x"f4",x"aa",x"de",x"6b",x"be",x"75",x"df",x"25",x"fe",x"a1",x"5e",x"a3",x"5d",x"e2",x"1f",x"e5",x"5a",x"ab",x"56",x"ad",x"b2",x"4f",x"b0",x"0f",x"00",x"1e",x"00",x"0d",x"0a",x"a4",x"06",x"42",x"03",x"a2",x"01",x"91",x"00",x"a8",x"80",x"50",x"8a",x"00",x"94",x"00",x"48",x"00",x"0a",x"00",x"00",x"24",x"00",x"00",x"10",x"00",x"52",x"2a",x"82",x"6c",x"92",x"44",x"92",x"28",x"54",x"83",x"34",x"ca",x"15",x"40"
);
type PStates is (Init, Draw);
type SStates is (BusyWaitA, BusyWaitB, Writing, Done);
signal SPISt: SStates := Done;
signal PSt: PStates := Init;
signal PInstr: unsigned(7 downto 0);
signal MemAddr: unsigned(9 downto 0);
begin
process(Clk, Rst, Bsy, Source,MemAddr) -- ACH added MemAddr
begin
MADDR <= std_logic_vector(MemAddr);
if(Rst = '0') then
PSt <= Init;
SPISt <= Done;
PInstr <= (others => '0');
elsif(rising_edge(Clk)) then
if(PSt = Init) then
CD <= '0';
if(SPISt = Done) then
PDO <= (Instrs(to_integer(PInstr)));
Trig <= '1';
SPISt <= BusyWaitA;
elsif(SPISt = BusyWaitA) then
if(Bsy = '1') then
PInstr <= PInstr + 1;
SPISt <= Writing;
Trig <= '0';
end if;
else
if(Bsy = '0') then
SPISt <= Done;
if(PInstr = AMNT_INSTRS) then
PSt <= Draw;
PInstr <= (others => '0');
MemAddr <= b"1111111111";
end if;
end if;
end if;
else --Draw
CD <= '1';
if(SPISt = Done) then
--if (MemAddr>150) then PDO <= x"f0";
--else PDO <= x"55";
--end if;
if (Source = '0') then PDO <= Datas(to_integer(MemAddr));
else PDO <= MemDI;
end if;
Trig <= '1';
SPISt <= BusyWaitA;
elsif(SPISt = BusyWaitA) then
if(Bsy = '1') then
MemAddr <= MemAddr - 1;
PInstr <= PInstr + 1;
SPISt <= Writing;
Trig <= '0';
end if;
else
if(Bsy = '0') then SPISt <= Done; end if;
end if;
end if;
end if;
end process;
end Ar;
================================================
FILE: max10_adc_firmware/SSD1306.vhd.bak
================================================
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity SSD1306 is
port(
PDO: out std_logic_vector(7 downto 0);
-- MADDR: out std_logic_vector(9 downto 0);
-- MemDI: in std_logic_vector(7 downto 0);
Clk, Rst, Bsy: in std_logic;
Trig, CD: out std_logic
);
end SSD1306;
architecture Ar of SSD1306 is
constant AMNT_INSTRS: natural := 27;
constant CONTRAST: std_logic_vector(7 downto 0) := x"0F";
type IAR is array (0 to AMNT_INSTRS-1) of std_logic_vector(7 downto 0);
signal Instrs: IAR := (x"A8", x"3F", x"D3", x"00", x"40", x"A0", x"DA", x"12", x"81", CONTRAST, x"20", x"00", x"21", x"00", x"7F", x"22", x"00", x"07",
x"A7", --A6 for no invert
x"DB", x"40", x"A4", x"D5", x"80", x"8D", x"14", x"AF");
constant AMNT_DATA: natural := 1024;
type IDATA is array (0 to AMNT_DATA-1) of std_logic_vector(7 downto 0);
signal Datas: IDATA := (
x"df",x"bc",x"f3",x"5e",x"b5",x"da",x"77",x"f9",x"1f",x"02",x"1e",x"01",x"1f",x"1a",x"1d",x"3a",x"25",x"58",x"3e",x"65",x"5f",x"2c",x"31",x"ae",x"f9",x"fe",x"f5",x"fb",x"f6",x"fe",x"fd",x"de",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"1f",x"0f",x"07",x"01",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"80",x"00",x"02",x"a0",x"10",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"02",x"00",x"00",x"04",x"01",x"04",x"09",x"00",x"00",x"00",x"00",x"00",x"01",x"00",x"00",x"01",x"14",x"21",x"00",x"0a",x"01",x"04",x"02",x"10",x"45",x"12",x"05",x"0a",x"81",x"04",x"03",x"00",x"45",x"08",x"52",x"8a",x"25",x"55",
x"ff",x"bf",x"7f",x"ff",x"7f",x"ff",x"7f",x"ff",x"7f",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"7f",x"ff",x"7f",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fe",x"fc",x"fc",x"c1",x"b6",x"eb",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"3f",x"1f",x"0f",x"07",x"07",x"01",x"0a",x"07",x"9f",x"0e",x"1f",x"3e",x"1f",x"3e",x"1f",x"1e",x"1f",x"0d",x"0f",x"0f",x"0b",x"07",x"05",x"45",x"21",x"10",x"08",x"00",x"44",x"03",x"23",x"01",x"89",x"01",x"00",x"00",x"00",x"00",x"00",x"00",x"55",x"00",x"3e",x"41",x"ba",x"45",x"2a",x"95",x"6a",x"95",x"2a",x"d1",x"4a",x"a4",x"52",x"a8",x"52",x"ad",x"42",x"2d",x"92",x"ad",x"52",x"4b",
x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fe",x"fe",x"fe",x"fc",x"fc",x"fe",x"fc",x"fe",x"fe",x"fc",x"fc",x"d4",x"dc",x"fc",x"fe",x"fe",x"fe",x"fe",x"fe",x"fe",x"fe",x"fe",x"e0",x"00",x"04",x"0e",x"60",x"9c",x"7e",x"de",x"be",x"fe",x"fe",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fe",x"fe",x"fa",x"f4",x"fa",x"f2",x"ed",x"f2",x"ed",x"d2",x"ed",x"da",x"f4",x"c8",x"f8",x"e8",x"e1",x"ea",x"81",x"27",x"ca",x"14",x"ab",x"94",x"2b",x"c5",x"3e",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fc",x"63",x"04",x"db",x"a8",x"d4",x"e0",x"dc",x"f0",x"ee",x"f0",x"fe",x"f1",x"6c",x"f5",x"78",x"3e",x"b9",x"5c",x"1f",x"ae",x"4f",x"43",x"c1",x"00",x"e0",x"10",x"a0",x"58",x"84",x"32",x"cc",x"23",x"5c",x"a2",x"55",x"2a",x"d5",x"6a",
x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fd",x"c0",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"c0",x"80",x"80",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"a0",x"50",x"a8",x"04",x"0a",x"01",x"0a",x"45",x"17",x"5f",x"7f",x"f2",x"a5",x"8a",x"25",x"5a",x"2b",x"cb",x"07",x"43",x"87",x"e3",x"d3",x"d3",x"e9",x"e0",x"e0",x"e0",x"c0",x"80",x"10",x"e0",x"50",x"c0",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"02",x"40",x"85",x"50",x"82",x"75",x"97",x"6d",x"b7",x"ff",x"ff",x"7f",x"1f",x"00",x"00",x"00",x"00",x"00",x"80",x"00",x"a0",x"40",x"90",x"6a",x"91",
x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"57",x"01",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"01",x"00",x"00",x"00",x"02",x"01",x"00",x"00",x"00",x"00",x"00",x"00",x"02",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"03",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"07",x"37",x"0f",x"3f",x"8f",x"57",x"4f",x"17",x"eb",x"d7",x"25",x"db",x"4e",x"bf",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fc",x"05",x"1f",x"7a",x"85",x"28",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"00",x"01",x"00",x"85",x"71",x"8f",x"75",x"db",x"7f",x"db",x"7f",x"ff",x"ff",x"ff",x"fc",x"00",x"00",x"00",x"00",x"00",x"01",x"00",x"00",x"00",x"00",x"00",x"50",
x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"3f",x"7f",x"3f",x"3f",x"3f",x"3f",x"7f",x"07",x"2b",x"07",x"d1",x"3e",x"4b",x"34",x"03",x"54",x"2e",x"3d",x"d3",x"2d",x"13",x"0b",x"27",x"17",x"07",x"17",x"07",x"6f",x"df",x"af",x"ff",x"3f",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"7f",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"f8",x"f7",x"f8",x"be",x"fd",x"de",x"fe",x"ef",x"ef",x"f7",x"f3",x"f0",x"e1",x"c7",x"17",x"7f",x"57",x"af",x"5f",x"2f",x"1f",x"2f",x"5f",x"17",x"2f",x"97",x"2b",x"15",x"0a",x"35",x"03",x"70",x"45",x"62",x"51",x"f5",x"d8",x"f7",x"fd",x"ff",x"ff",x"fe",x"fc",x"f8",x"f0",x"c0",x"80",x"00",x"03",x"07",x"0f",x"0f",x"3f",x"fe",x"f8",x"78",x"00",x"0a",x"14",x"01",
x"fd",x"db",x"f5",x"ff",x"ff",x"f5",x"df",x"f5",x"ea",x"ff",x"ed",x"fb",x"fe",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ef",x"ff",x"fe",x"df",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"ff",x"fe",x"fd",x"fa",x"f7",x"cd",x"ba",x"57",x"ab",x"5c",x"8b",x"76",x"89",x"36",x"49",x"a7",x"18",x"e7",x"c9",x"f6",x"e1",x"da",x"f5",x"f2",x"fd",x"f8",x"fa",x"fc",x"fd",x"fe",x"fc",x"ff",x"fe",x"ff",x"fe",x"ff",x"ff",x"fe",x"fd",x"7e",x"fe",x"7a",x"bc",x"7a",x"7c",x"f5",x"f4",x"c4",x"c4",x"80",x"04",x"04",x"0e",x"1c",x"3c",x"fd",x"fc",x"fa",x"f5",x"e0",x"c6",x"09",x"12",x"25",x"94",x"20",x"56",x"89",x"24",
x"f7",x"5f",x"ff",x"fb",x"57",x"fd",x"57",x"fa",x"6f",x"bb",x"f7",x"5d",x"b7",x"ed",x"fa",x"ef",x"f5",x"ff",x"fa",x"ff",x"fb",x"fd",x"fe",x"fb",x"fd",x"f7",x"7e",x"fd",x"f7",x"fb",x"ed",x"ff",x"fd",x"ff",x"fd",x"ff",x"fd",x"fe",x"f5",x"fa",x"f7",x"fb",x"fe",x"fd",x"ff",x"fb",x"fd",x"cb",x"dd",x"da",x"df",x"cd",x"ef",x"a7",x"f3",x"b3",x"f3",x"6b",x"d9",x"2d",x"f4",x"aa",x"de",x"6b",x"be",x"75",x"df",x"25",x"fe",x"a1",x"5e",x"a3",x"5d",x"e2",x"1f",x"e5",x"5a",x"ab",x"56",x"ad",x"b2",x"4f",x"b0",x"0f",x"00",x"1e",x"00",x"0d",x"0a",x"a4",x"06",x"42",x"03",x"a2",x"01",x"91",x"00",x"a8",x"80",x"50",x"8a",x"00",x"94",x"00",x"48",x"00",x"0a",x"00",x"00",x"24",x"00",x"00",x"10",x"00",x"52",x"2a",x"82",x"6c",x"92",x"44",x"92",x"28",x"54",x"83",x"34",x"ca",x"15",x"40"
);
type PStates is (Init, Draw);
type SStates is (BusyWaitA, BusyWaitB, Writing, Done);
signal SPISt: SStates := Done;
signal PSt: PStates := Init;
signal PInstr: unsigned(7 downto 0);
signal MemAddr: unsigned(9 downto 0);
begin
process(Clk, Rst, Bsy)
begin
-- MADDR <= std_logic_vector(MemAddr);
if(Rst = '0') then
PSt <= Init;
SPISt <= Done;
PInstr <= (others => '0');
elsif(rising_edge(Clk)) then
if(PSt = Init) then
CD <= '0';
if(SPISt = Done) then
PDO <= (Instrs(to_integer(PInstr)));
Trig <= '1';
SPISt <= BusyWaitA;
elsif(SPISt = BusyWaitA) then
if(Bsy = '1') then
PInstr <= PInstr + 1;
SPISt <= Writing;
Trig <= '0';
end if;
else
if(Bsy = '0') then
SPISt <= Done;
if(PInstr = AMNT_INSTRS) then
PSt <= Draw;
PInstr <= (others => '0');
MemAddr <= b"1111111111";
end if;
end if;
end if;
else --Draw
CD <= '1';
if(SPISt = Done) then
--if (MemAddr>150) then PDO <= x"f0"; -- was MemDI
--else PDO <= x"55";
--end if;
PDO <= Datas(to_integer(MemAddr));
Trig <= '1';
SPISt <= BusyWaitA;
elsif(SPISt = BusyWaitA) then
if(Bsy = '1') then
MemAddr <= MemAddr - 1;
PInstr <= PInstr + 1;
SPISt <= Writing;
Trig <= '0';
end if;
else
if(Bsy = '0') then SPISt <= Done; end if;
end if;
end if;
end if;
end process;
end Ar;
================================================
FILE: max10_adc_firmware/async.v
================================================
////////////////////////////////////////////////////////
// RS-232 RX and TX module
// (c) fpga4fun.com & KNJN LLC - 2003 to 2016
// The RS-232 settings are fixed
// TX: 8-bit data, 2 stop, no-parity
// RX: 8-bit data, 1 stop, no-parity (the receiver can accept more stop bits of course)
//`define SIMULATION // in this mode, TX outputs one bit per clock cycle
// and RX receives one bit per clock cycle (for fast simulations)
////////////////////////////////////////////////////////
module async_transmitter(
input clk,
input TxD_start,
input [7:0] TxD_data,
output TxD,
output TxD_busy
);
// Assert TxD_start for (at least) one clock cycle to start transmission of TxD_data
// TxD_data is latched so that it doesn't have to stay valid while it is being sent
parameter ClkFrequency = 50000000; // 50MHz
parameter Baud = 115200;
generate
if(ClkFrequency> 1);
case(TxD_state)
4'b0000: if(TxD_start) TxD_state <= 4'b0100;
4'b0100: if(BitTick) TxD_state <= 4'b1000; // start bit
4'b1000: if(BitTick) TxD_state <= 4'b1001; // bit 0
4'b1001: if(BitTick) TxD_state <= 4'b1010; // bit 1
4'b1010: if(BitTick) TxD_state <= 4'b1011; // bit 2
4'b1011: if(BitTick) TxD_state <= 4'b1100; // bit 3
4'b1100: if(BitTick) TxD_state <= 4'b1101; // bit 4
4'b1101: if(BitTick) TxD_state <= 4'b1110; // bit 5
4'b1110: if(BitTick) TxD_state <= 4'b1111; // bit 6
4'b1111: if(BitTick) TxD_state <= 4'b0010; // bit 7
4'b0010: if(BitTick) TxD_state <= 4'b0011; // stop1
4'b0011: if(BitTick) TxD_state <= 4'b0000; // stop2
default: if(BitTick) TxD_state <= 4'b0000;
endcase
end
assign TxD = (TxD_state<4) | (TxD_state[3] & TxD_shift[0]); // put together the start, data and stop bits
endmodule
////////////////////////////////////////////////////////
module async_receiver(
input clk,
input RxD,
output reg RxD_data_ready = 0,
output reg [7:0] RxD_data = 0, // data received, valid only (for one clock cycle) when RxD_data_ready is asserted
// We also detect if a gap occurs in the received stream of characters
// That can be useful if multiple characters are sent in burst
// so that multiple characters can be treated as a "packet"
output RxD_idle, // asserted when no data has been received for a while
output reg RxD_endofpacket = 0 // asserted for one clock cycle when a packet has been detected (i.e. RxD_idle is going high)
);
parameter ClkFrequency = 50000000; // 25MHz
parameter Baud = 115200;
parameter Oversampling = 8; // needs to be a power of 2
// we oversample the RxD line at a fixed rate to capture each RxD data bit at the "right" time
// 8 times oversampling by default, use 16 for higher quality reception
generate
if(ClkFrequency>log2) log2=log2+1; end endfunction
localparam l2o = log2(Oversampling);
reg [l2o-2:0] OversamplingCnt = 0;
always @(posedge clk) if(OversamplingTick) OversamplingCnt <= (RxD_state==0) ? 1'd0 : OversamplingCnt + 1'd1;
wire sampleNow = OversamplingTick && (OversamplingCnt==Oversampling/2-1);
`endif
// now we can accumulate the RxD bits in a shift-register
always @(posedge clk)
case(RxD_state)
4'b0000: if(~RxD_bit) RxD_state <= `ifdef SIMULATION 4'b1000 `else 4'b0001 `endif; // start bit found?
4'b0001: if(sampleNow) RxD_state <= 4'b1000; // sync start bit to sampleNow
4'b1000: if(sampleNow) RxD_state <= 4'b1001; // bit 0
4'b1001: if(sampleNow) RxD_state <= 4'b1010; // bit 1
4'b1010: if(sampleNow) RxD_state <= 4'b1011; // bit 2
4'b1011: if(sampleNow) RxD_state <= 4'b1100; // bit 3
4'b1100: if(sampleNow) RxD_state <= 4'b1101; // bit 4
4'b1101: if(sampleNow) RxD_state <= 4'b1110; // bit 5
4'b1110: if(sampleNow) RxD_state <= 4'b1111; // bit 6
4'b1111: if(sampleNow) RxD_state <= 4'b0010; // bit 7
4'b0010: if(sampleNow) RxD_state <= 4'b0000; // stop bit
default: RxD_state <= 4'b0000;
endcase
always @(posedge clk)
if(sampleNow && RxD_state[3]) RxD_data <= {RxD_bit, RxD_data[7:1]};
//reg RxD_data_error = 0;
always @(posedge clk)
begin
RxD_data_ready <= (sampleNow && RxD_state==4'b0010 && RxD_bit); // make sure a stop bit is received
//RxD_data_error <= (sampleNow && RxD_state==4'b0010 && ~RxD_bit); // error if a stop bit is not received
end
`ifdef SIMULATION
assign RxD_idle = 0;
`else
reg [l2o+1:0] GapCnt = 0;
always @(posedge clk) if (RxD_state!=0) GapCnt<=0; else if(OversamplingTick & ~GapCnt[log2(Oversampling)+1]) GapCnt <= GapCnt + 1'h1;
assign RxD_idle = GapCnt[l2o+1];
always @(posedge clk) RxD_endofpacket <= OversamplingTick & ~GapCnt[l2o+1] & &GapCnt[l2o:0];
`endif
endmodule
////////////////////////////////////////////////////////
// dummy module used to be able to raise an assertion in Verilog
module ASSERTION_ERROR();
endmodule
////////////////////////////////////////////////////////
module BaudTickGen(
input clk, enable,
output tick // generate a tick at the specified baud rate * oversampling
);
parameter ClkFrequency = 50000000;
parameter Baud = 115200;
parameter Oversampling = 1;
function integer log2(input integer v); begin log2=0; while(v>>log2) log2=log2+1; end endfunction
localparam AccWidth = log2(ClkFrequency/Baud)+8; // +/- 2% max timing error over a byte
reg [AccWidth:0] Acc = 0;
localparam ShiftLimiter = log2(Baud*Oversampling >> (31-AccWidth)); // this makes sure Inc calculation doesn't overflow
localparam Inc = ((Baud*Oversampling << (AccWidth-ShiftLimiter))+(ClkFrequency>>(ShiftLimiter+1)))/(ClkFrequency>>ShiftLimiter);
always @(posedge clk) if(enable) Acc <= Acc[AccWidth-1:0] + Inc[AccWidth:0]; else Acc <= Inc[AccWidth:0];
assign tick = Acc[AccWidth];
endmodule
////////////////////////////////////////////////////////
================================================
FILE: max10_adc_firmware/async_receiver.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 216 128)
(text "async_receiver" (rect 5 0 68 12)(font "Arial" ))
(text "inst" (rect 8 96 20 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "clk" (rect 0 0 10 12)(font "Arial" ))
(text "clk" (rect 21 27 31 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "RxD" (rect 0 0 20 12)(font "Arial" ))
(text "RxD" (rect 21 43 41 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 200 32)
(output)
(text "RxD_data_ready" (rect 0 0 71 12)(font "Arial" ))
(text "RxD_data_ready" (rect 108 27 179 39)(font "Arial" ))
(line (pt 200 32)(pt 184 32)(line_width 1))
)
(port
(pt 200 48)
(output)
(text "RxD_data[7..0]" (rect 0 0 62 12)(font "Arial" ))
(text "RxD_data[7..0]" (rect 117 43 179 55)(font "Arial" ))
(line (pt 200 48)(pt 184 48)(line_width 3))
)
(port
(pt 200 64)
(output)
(text "RxD_idle" (rect 0 0 37 12)(font "Arial" ))
(text "RxD_idle" (rect 142 59 179 71)(font "Arial" ))
(line (pt 200 64)(pt 184 64)(line_width 1))
)
(port
(pt 200 80)
(output)
(text "RxD_endofpacket" (rect 0 0 74 12)(font "Arial" ))
(text "RxD_endofpacket" (rect 105 75 179 87)(font "Arial" ))
(line (pt 200 80)(pt 184 80)(line_width 1))
)
(parameter
"ClkFrequency"
"25000000"
""
(type "PARAMETER_SIGNED_DEC") )
(parameter
"Baud"
"115200"
""
(type "PARAMETER_SIGNED_DEC") )
(parameter
"Oversampling"
"8"
""
(type "PARAMETER_SIGNED_DEC") )
(drawing
(rectangle (rect 16 16 184 96)(line_width 1))
)
(annotation_block (parameter)(rect 216 -64 316 16))
)
================================================
FILE: max10_adc_firmware/async_transmitter.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 224 128)
(text "async_transmitter" (rect 5 0 78 12)(font "Arial" ))
(text "inst" (rect 8 96 20 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "clk" (rect 0 0 10 12)(font "Arial" ))
(text "clk" (rect 21 27 31 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "TxD_start" (rect 0 0 41 12)(font "Arial" ))
(text "TxD_start" (rect 21 43 62 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 0 64)
(input)
(text "TxD_data[7..0]" (rect 0 0 60 12)(font "Arial" ))
(text "TxD_data[7..0]" (rect 21 59 81 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64)(line_width 3))
)
(port
(pt 208 32)
(output)
(text "TxD" (rect 0 0 17 12)(font "Arial" ))
(text "TxD" (rect 170 27 187 39)(font "Arial" ))
(line (pt 208 32)(pt 192 32)(line_width 1))
)
(port
(pt 208 48)
(output)
(text "TxD_busy" (rect 0 0 43 12)(font "Arial" ))
(text "TxD_busy" (rect 144 43 187 55)(font "Arial" ))
(line (pt 208 48)(pt 192 48)(line_width 1))
)
(parameter
"ClkFrequency"
"25000000"
""
(type "PARAMETER_SIGNED_DEC") )
(parameter
"Baud"
"115200"
""
(type "PARAMETER_SIGNED_DEC") )
(drawing
(rectangle (rect 16 16 192 96)(line_width 1))
)
(annotation_block (parameter)(rect 224 -64 324 16))
)
================================================
FILE: max10_adc_firmware/chain_delay.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2015 Altera Corporation. All rights reserved.
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, the Altera Quartus II License Agreement,
the Altera MegaCore Function License Agreement, or other
applicable license agreement, including, without limitation,
that your use is for the sole purpose of programming logic
devices manufactured by Altera and sold by Altera or its
authorized distributors. Please refer to the applicable
agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 232 128)
(text "chain_delay" (rect 5 0 52 12)(font "Arial" ))
(text "inst" (rect 8 96 20 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "clk" (rect 0 0 10 12)(font "Arial" ))
(text "clk" (rect 21 27 31 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "start" (rect 0 0 17 12)(font "Arial" ))
(text "start" (rect 21 43 38 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 0 64)
(input)
(text "stop" (rect 0 0 16 12)(font "Arial" ))
(text "stop" (rect 21 59 37 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64)(line_width 1))
)
(port
(pt 216 32)
(output)
(text "result[CHAIN_LEN-1..0]" (rect 0 0 100 12)(font "Arial" ))
(text "result[CHAIN_LEN-1..0]" (rect 95 27 195 39)(font "Arial" ))
(line (pt 216 32)(pt 200 32)(line_width 3))
)
(parameter
"CHAIN_LEN"
"200"
""
(type "PARAMETER_SIGNED_DEC") )
(drawing
(rectangle (rect 16 16 200 96)(line_width 1))
)
(annotation_block (parameter)(rect 232 -64 332 16))
)
================================================
FILE: max10_adc_firmware/chain_delay_race.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2015 Altera Corporation. All rights reserved.
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, the Altera Quartus II License Agreement,
the Altera MegaCore Function License Agreement, or other
applicable license agreement, including, without limitation,
that your use is for the sole purpose of programming logic
devices manufactured by Altera and sold by Altera or its
authorized distributors. Please refer to the applicable
agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 232 128)
(text "chain_delay_race" (rect 5 0 75 12)(font "Arial" ))
(text "inst" (rect 8 96 20 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "clk" (rect 0 0 10 12)(font "Arial" ))
(text "clk" (rect 21 27 31 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "start" (rect 0 0 17 12)(font "Arial" ))
(text "start" (rect 21 43 38 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 0 64)
(input)
(text "stop" (rect 0 0 16 12)(font "Arial" ))
(text "stop" (rect 21 59 37 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64)(line_width 1))
)
(port
(pt 216 32)
(output)
(text "result[CHAIN_LEN..0]" (rect 0 0 94 12)(font "Arial" ))
(text "result[CHAIN_LEN..0]" (rect 101 27 195 39)(font "Arial" ))
(line (pt 216 32)(pt 200 32)(line_width 3))
)
(parameter
"CHAIN_LEN"
"32"
""
(type "PARAMETER_SIGNED_DEC") )
(drawing
(rectangle (rect 16 16 200 96)(line_width 1))
)
(annotation_block (parameter)(rect 232 -64 332 16))
)
================================================
FILE: max10_adc_firmware/demux1.v
================================================
//Verilog module for 1:2 DEMUX
module demux1to2( Data_in, sel, Data_out_0, Data_out_1 );
//list the inputs and their sizes
input Data_in;
input sel;
//list the outputs and their sizes
output Data_out_0;
output Data_out_1;
//Internal variables
reg Data_out_0;
reg Data_out_1;
//always block with Data_in and sel in its sensitivity list
always @(Data_in or sel)
begin
case (sel)
1'b0 : begin
Data_out_0 = Data_in;
Data_out_1 = 0;
end
1'b1 : begin
Data_out_0 = 0;
Data_out_1 = Data_in;
end
endcase
end
endmodule
================================================
FILE: max10_adc_firmware/demux1.v.bak
================================================
//Verilog module for 1:2 DEMUX
module demux1to2( Data_in, sel, Data_out_0, Data_out_1 );
//list the inputs and their sizes
input Data_in;
input sel;
//list the outputs and their sizes
output Data_out_0;
output Data_out_1;
//Internal variables
reg Data_out_0;
reg Data_out_1;
//always block with Data_in and sel in its sensitivity list
always @(Data_in or sel)
begin
case (sel)
1'b0 : begin
Data_out_0 = Data_in;
Data_out_1 = 0;
Data_out_2 = 0;
Data_out_3 = 0;
end
1'b1 : begin
Data_out_0 = 0;
Data_out_1 = Data_in;
Data_out_2 = 0;
Data_out_3 = 0;
end
endcase
end
endmodule
================================================
FILE: max10_adc_firmware/demux1to2.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2015 Altera Corporation. All rights reserved.
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, the Altera Quartus II License Agreement,
the Altera MegaCore Function License Agreement, or other
applicable license agreement, including, without limitation,
that your use is for the sole purpose of programming logic
devices manufactured by Altera and sold by Altera or its
authorized distributors. Please refer to the applicable
agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 192 96)
(text "demux1to2" (rect 5 0 47 12)(font "Arial" ))
(text "inst" (rect 8 64 20 76)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "Data_in" (rect 0 0 30 12)(font "Arial" ))
(text "Data_in" (rect 21 27 51 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "sel" (rect 0 0 10 12)(font "Arial" ))
(text "sel" (rect 21 43 31 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 176 32)
(output)
(text "Data_out_0" (rect 0 0 47 12)(font "Arial" ))
(text "Data_out_0" (rect 108 27 155 39)(font "Arial" ))
(line (pt 176 32)(pt 160 32)(line_width 1))
)
(port
(pt 176 48)
(output)
(text "Data_out_1" (rect 0 0 46 12)(font "Arial" ))
(text "Data_out_1" (rect 109 43 155 55)(font "Arial" ))
(line (pt 176 48)(pt 160 48)(line_width 1))
)
(drawing
(rectangle (rect 16 16 160 64)(line_width 1))
)
)
================================================
FILE: max10_adc_firmware/dpram2.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 2018 Intel Corporation. All rights reserved.
Your use of Intel Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Intel Program License
Subscription Agreement, the Intel Quartus Prime License Agreement,
the Intel FPGA IP License Agreement, or other applicable license
agreement, including, without limitation, that your use is for
the sole purpose of programming logic devices manufactured by
Intel and sold by Intel or its authorized distributors. Please
refer to the applicable agreement for further details.
*/
(header "symbol" (version "1.2"))
(symbol
(rect 0 0 256 136)
(text "dpram2" (rect 107 0 157 16)(font "Arial" (font_size 10)))
(text "inst" (rect 8 120 25 132)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "data[7..0]" (rect 0 0 53 14)(font "Arial" (font_size 8)))
(text "data[7..0]" (rect 4 18 47 31)(font "Arial" (font_size 8)))
(line (pt 0 32)(pt 112 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "wraddress[9..0]" (rect 0 0 92 14)(font "Arial" (font_size 8)))
(text "wraddress[9..0]" (rect 4 34 80 47)(font "Arial" (font_size 8)))
(line (pt 0 48)(pt 112 48)(line_width 3))
)
(port
(pt 0 64)
(input)
(text "wren" (rect 0 0 30 14)(font "Arial" (font_size 8)))
(text "wren" (rect 4 50 28 63)(font "Arial" (font_size 8)))
(line (pt 0 64)(pt 112 64))
)
(port
(pt 0 88)
(input)
(text "rdaddress[9..0]" (rect 0 0 87 14)(font "Arial" (font_size 8)))
(text "rdaddress[9..0]" (rect 4 74 76 87)(font "Arial" (font_size 8)))
(line (pt 0 88)(pt 112 88)(line_width 3))
)
(port
(pt 0 112)
(input)
(text "clock" (rect 0 0 29 14)(font "Arial" (font_size 8)))
(text "clock" (rect 4 98 27 111)(font "Arial" (font_size 8)))
(line (pt 0 112)(pt 176 112))
)
(port
(pt 256 88)
(output)
(text "q[7..0]" (rect 0 0 35 14)(font "Arial" (font_size 8)))
(text "q[7..0]" (rect 223 74 251 87)(font "Arial" (font_size 8)))
(line (pt 256 88)(pt 192 88)(line_width 3))
)
(drawing
(text "1024 Word(s)" (rect 137 -5 236 187)(font "Arial" )(vertical))
(text "RAM" (rect 148 -16 229 151)(font "Arial" )(vertical))
(text "Block Type: AUTO" (rect 40 125 156 261)(font "Arial" ))
(line (pt 128 24)(pt 168 24))
(line (pt 168 24)(pt 168 96))
(line (pt 168 96)(pt 128 96))
(line (pt 128 96)(pt 128 24))
(line (pt 112 27)(pt 120 27))
(line (pt 120 27)(pt 120 39))
(line (pt 120 39)(pt 112 39))
(line (pt 112 39)(pt 112 27))
(line (pt 112 34)(pt 114 36))
(line (pt 114 36)(pt 112 38))
(line (pt 104 36)(pt 112 36))
(line (pt 120 32)(pt 128 32)(line_width 3))
(line (pt 112 43)(pt 120 43))
(line (pt 120 43)(pt 120 55))
(line (pt 120 55)(pt 112 55))
(line (pt 112 55)(pt 112 43))
(line (pt 112 50)(pt 114 52))
(line (pt 114 52)(pt 112 54))
(line (pt 104 52)(pt 112 52))
(line (pt 120 48)(pt 128 48)(line_width 3))
(line (pt 112 59)(pt 120 59))
(line (pt 120 59)(pt 120 71))
(line (pt 120 71)(pt 112 71))
(line (pt 112 71)(pt 112 59))
(line (pt 112 66)(pt 114 68))
(line (pt 114 68)(pt 112 70))
(line (pt 104 68)(pt 112 68))
(line (pt 120 64)(pt 128 64))
(line (pt 112 83)(pt 120 83))
(line (pt 120 83)(pt 120 95))
(line (pt 120 95)(pt 112 95))
(line (pt 112 95)(pt 112 83))
(line (pt 112 90)(pt 114 92))
(line (pt 114 92)(pt 112 94))
(line (pt 104 92)(pt 112 92))
(line (pt 120 88)(pt 128 88)(line_width 3))
(line (pt 104 36)(pt 104 113))
(line (pt 176 92)(pt 176 113))
(line (pt 184 83)(pt 192 83))
(line (pt 192 83)(pt 192 95))
(line (pt 192 95)(pt 184 95))
(line (pt 184 95)(pt 184 83))
(line (pt 184 90)(pt 186 92))
(line (pt 186 92)(pt 184 94))
(line (pt 176 92)(pt 184 92))
(line (pt 168 88)(pt 184 88)(line_width 3))
(line (pt 0 0)(pt 257 0))
(line (pt 257 0)(pt 257 138))
(line (pt 0 138)(pt 257 138))
(line (pt 0 0)(pt 0 138))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
)
)
================================================
FILE: max10_adc_firmware/dpram2.qip
================================================
set_global_assignment -name IP_TOOL_NAME "RAM: 2-PORT"
set_global_assignment -name IP_TOOL_VERSION "18.0"
set_global_assignment -name IP_GENERATED_DEVICE_FAMILY "{MAX 10}"
set_global_assignment -name VERILOG_FILE [file join $::quartus(qip_path) "dpram2.v"]
set_global_assignment -name MISC_FILE [file join $::quartus(qip_path) "dpram2.bsf"]
set_global_assignment -name MISC_FILE [file join $::quartus(qip_path) "dpram2_bb.v"]
================================================
FILE: max10_adc_firmware/dpram2.v
================================================
// megafunction wizard: %RAM: 2-PORT%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: altsyncram
// ============================================================
// File Name: dpram2.v
// Megafunction Name(s):
// altsyncram
//
// Simulation Library Files(s):
// altera_mf
// ============================================================
// ************************************************************
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
//
// 18.0.0 Build 614 04/24/2018 SJ Lite Edition
// ************************************************************
//Copyright (C) 2018 Intel Corporation. All rights reserved.
//Your use of Intel Corporation's design tools, logic functions
//and other software and tools, and its AMPP partner logic
//functions, and any output files from any of the foregoing
//(including device programming or simulation files), and any
//associated documentation or information are expressly subject
//to the terms and conditions of the Intel Program License
//Subscription Agreement, the Intel Quartus Prime License Agreement,
//the Intel FPGA IP License Agreement, or other applicable license
//agreement, including, without limitation, that your use is for
//the sole purpose of programming logic devices manufactured by
//Intel and sold by Intel or its authorized distributors. Please
//refer to the applicable agreement for further details.
// synopsys translate_off
`timescale 1 ps / 1 ps
// synopsys translate_on
module dpram2 (
clock,
data,
rdaddress,
wraddress,
wren,
q);
input clock;
input [7:0] data;
input [9:0] rdaddress;
input [9:0] wraddress;
input wren;
output [7:0] q;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_off
`endif
tri1 clock;
tri0 wren;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_on
`endif
wire [7:0] sub_wire0;
wire [7:0] q = sub_wire0[7:0];
altsyncram altsyncram_component (
.address_a (wraddress),
.address_b (rdaddress),
.clock0 (clock),
.data_a (data),
.wren_a (wren),
.q_b (sub_wire0),
.aclr0 (1'b0),
.aclr1 (1'b0),
.addressstall_a (1'b0),
.addressstall_b (1'b0),
.byteena_a (1'b1),
.byteena_b (1'b1),
.clock1 (1'b1),
.clocken0 (1'b1),
.clocken1 (1'b1),
.clocken2 (1'b1),
.clocken3 (1'b1),
.data_b ({8{1'b1}}),
.eccstatus (),
.q_a (),
.rden_a (1'b1),
.rden_b (1'b1),
.wren_b (1'b0));
defparam
altsyncram_component.address_aclr_b = "NONE",
altsyncram_component.address_reg_b = "CLOCK0",
altsyncram_component.clock_enable_input_a = "BYPASS",
altsyncram_component.clock_enable_input_b = "BYPASS",
altsyncram_component.clock_enable_output_b = "BYPASS",
altsyncram_component.intended_device_family = "MAX 10",
altsyncram_component.lpm_type = "altsyncram",
altsyncram_component.numwords_a = 1024,
altsyncram_component.numwords_b = 1024,
altsyncram_component.operation_mode = "DUAL_PORT",
altsyncram_component.outdata_aclr_b = "NONE",
altsyncram_component.outdata_reg_b = "CLOCK0",
altsyncram_component.power_up_uninitialized = "FALSE",
altsyncram_component.read_during_write_mode_mixed_ports = "DONT_CARE",
altsyncram_component.widthad_a = 10,
altsyncram_component.widthad_b = 10,
altsyncram_component.width_a = 8,
altsyncram_component.width_b = 8,
altsyncram_component.width_byteena_a = 1;
endmodule
// ============================================================
// CNX file retrieval info
// ============================================================
// Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
// Retrieval info: PRIVATE: ADDRESSSTALL_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
// Retrieval info: PRIVATE: BlankMemory NUMERIC "1"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLRdata NUMERIC "0"
// Retrieval info: PRIVATE: CLRq NUMERIC "0"
// Retrieval info: PRIVATE: CLRrdaddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRrren NUMERIC "0"
// Retrieval info: PRIVATE: CLRwraddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRwren NUMERIC "0"
// Retrieval info: PRIVATE: Clock NUMERIC "0"
// Retrieval info: PRIVATE: Clock_A NUMERIC "0"
// Retrieval info: PRIVATE: Clock_B NUMERIC "0"
// Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_B"
// Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
// Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
// Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
// Retrieval info: PRIVATE: MEMSIZE NUMERIC "8192"
// Retrieval info: PRIVATE: MEM_IN_BITS NUMERIC "0"
// Retrieval info: PRIVATE: MIFfilename STRING ""
// Retrieval info: PRIVATE: OPERATION_MODE NUMERIC "2"
// Retrieval info: PRIVATE: OUTDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: OUTDATA_REG_B NUMERIC "1"
// Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_MIXED_PORTS NUMERIC "2"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_A NUMERIC "3"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_B NUMERIC "3"
// Retrieval info: PRIVATE: REGdata NUMERIC "1"
// Retrieval info: PRIVATE: REGq NUMERIC "1"
// Retrieval info: PRIVATE: REGrdaddress NUMERIC "1"
// Retrieval info: PRIVATE: REGrren NUMERIC "1"
// Retrieval info: PRIVATE: REGwraddress NUMERIC "1"
// Retrieval info: PRIVATE: REGwren NUMERIC "1"
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
// Retrieval info: PRIVATE: USE_DIFF_CLKEN NUMERIC "0"
// Retrieval info: PRIVATE: UseDPRAM NUMERIC "1"
// Retrieval info: PRIVATE: VarWidth NUMERIC "0"
// Retrieval info: PRIVATE: WIDTH_READ_A NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_READ_B NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_WRITE_A NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_WRITE_B NUMERIC "8"
// Retrieval info: PRIVATE: WRADDR_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: WRADDR_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: WRCTRL_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: enable NUMERIC "0"
// Retrieval info: PRIVATE: rden NUMERIC "0"
// Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
// Retrieval info: CONSTANT: ADDRESS_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: ADDRESS_REG_B STRING "CLOCK0"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
// Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "1024"
// Retrieval info: CONSTANT: NUMWORDS_B NUMERIC "1024"
// Retrieval info: CONSTANT: OPERATION_MODE STRING "DUAL_PORT"
// Retrieval info: CONSTANT: OUTDATA_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: OUTDATA_REG_B STRING "CLOCK0"
// Retrieval info: CONSTANT: POWER_UP_UNINITIALIZED STRING "FALSE"
// Retrieval info: CONSTANT: READ_DURING_WRITE_MODE_MIXED_PORTS STRING "DONT_CARE"
// Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "10"
// Retrieval info: CONSTANT: WIDTHAD_B NUMERIC "10"
// Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
// Retrieval info: CONSTANT: WIDTH_B NUMERIC "8"
// Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
// Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
// Retrieval info: USED_PORT: data 0 0 8 0 INPUT NODEFVAL "data[7..0]"
// Retrieval info: USED_PORT: q 0 0 8 0 OUTPUT NODEFVAL "q[7..0]"
// Retrieval info: USED_PORT: rdaddress 0 0 10 0 INPUT NODEFVAL "rdaddress[9..0]"
// Retrieval info: USED_PORT: wraddress 0 0 10 0 INPUT NODEFVAL "wraddress[9..0]"
// Retrieval info: USED_PORT: wren 0 0 0 0 INPUT GND "wren"
// Retrieval info: CONNECT: @address_a 0 0 10 0 wraddress 0 0 10 0
// Retrieval info: CONNECT: @address_b 0 0 10 0 rdaddress 0 0 10 0
// Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
// Retrieval info: CONNECT: @data_a 0 0 8 0 data 0 0 8 0
// Retrieval info: CONNECT: @wren_a 0 0 0 0 wren 0 0 0 0
// Retrieval info: CONNECT: q 0 0 8 0 @q_b 0 0 8 0
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2.v TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2.inc FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2.cmp FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2.bsf TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2_inst.v FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2_bb.v TRUE
// Retrieval info: LIB_FILE: altera_mf
================================================
FILE: max10_adc_firmware/dpram2_bb.v
================================================
// megafunction wizard: %RAM: 2-PORT%VBB%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: altsyncram
// ============================================================
// File Name: dpram2.v
// Megafunction Name(s):
// altsyncram
//
// Simulation Library Files(s):
// altera_mf
// ============================================================
// ************************************************************
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
//
// 18.0.0 Build 614 04/24/2018 SJ Lite Edition
// ************************************************************
//Copyright (C) 2018 Intel Corporation. All rights reserved.
//Your use of Intel Corporation's design tools, logic functions
//and other software and tools, and its AMPP partner logic
//functions, and any output files from any of the foregoing
//(including device programming or simulation files), and any
//associated documentation or information are expressly subject
//to the terms and conditions of the Intel Program License
//Subscription Agreement, the Intel Quartus Prime License Agreement,
//the Intel FPGA IP License Agreement, or other applicable license
//agreement, including, without limitation, that your use is for
//the sole purpose of programming logic devices manufactured by
//Intel and sold by Intel or its authorized distributors. Please
//refer to the applicable agreement for further details.
module dpram2 (
clock,
data,
rdaddress,
wraddress,
wren,
q);
input clock;
input [7:0] data;
input [9:0] rdaddress;
input [9:0] wraddress;
input wren;
output [7:0] q;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_off
`endif
tri1 clock;
tri0 wren;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_on
`endif
endmodule
// ============================================================
// CNX file retrieval info
// ============================================================
// Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
// Retrieval info: PRIVATE: ADDRESSSTALL_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
// Retrieval info: PRIVATE: BlankMemory NUMERIC "1"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLRdata NUMERIC "0"
// Retrieval info: PRIVATE: CLRq NUMERIC "0"
// Retrieval info: PRIVATE: CLRrdaddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRrren NUMERIC "0"
// Retrieval info: PRIVATE: CLRwraddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRwren NUMERIC "0"
// Retrieval info: PRIVATE: Clock NUMERIC "0"
// Retrieval info: PRIVATE: Clock_A NUMERIC "0"
// Retrieval info: PRIVATE: Clock_B NUMERIC "0"
// Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_B"
// Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
// Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
// Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
// Retrieval info: PRIVATE: MEMSIZE NUMERIC "8192"
// Retrieval info: PRIVATE: MEM_IN_BITS NUMERIC "0"
// Retrieval info: PRIVATE: MIFfilename STRING ""
// Retrieval info: PRIVATE: OPERATION_MODE NUMERIC "2"
// Retrieval info: PRIVATE: OUTDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: OUTDATA_REG_B NUMERIC "1"
// Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_MIXED_PORTS NUMERIC "2"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_A NUMERIC "3"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_B NUMERIC "3"
// Retrieval info: PRIVATE: REGdata NUMERIC "1"
// Retrieval info: PRIVATE: REGq NUMERIC "1"
// Retrieval info: PRIVATE: REGrdaddress NUMERIC "1"
// Retrieval info: PRIVATE: REGrren NUMERIC "1"
// Retrieval info: PRIVATE: REGwraddress NUMERIC "1"
// Retrieval info: PRIVATE: REGwren NUMERIC "1"
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
// Retrieval info: PRIVATE: USE_DIFF_CLKEN NUMERIC "0"
// Retrieval info: PRIVATE: UseDPRAM NUMERIC "1"
// Retrieval info: PRIVATE: VarWidth NUMERIC "0"
// Retrieval info: PRIVATE: WIDTH_READ_A NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_READ_B NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_WRITE_A NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_WRITE_B NUMERIC "8"
// Retrieval info: PRIVATE: WRADDR_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: WRADDR_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: WRCTRL_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: enable NUMERIC "0"
// Retrieval info: PRIVATE: rden NUMERIC "0"
// Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
// Retrieval info: CONSTANT: ADDRESS_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: ADDRESS_REG_B STRING "CLOCK0"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
// Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "1024"
// Retrieval info: CONSTANT: NUMWORDS_B NUMERIC "1024"
// Retrieval info: CONSTANT: OPERATION_MODE STRING "DUAL_PORT"
// Retrieval info: CONSTANT: OUTDATA_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: OUTDATA_REG_B STRING "CLOCK0"
// Retrieval info: CONSTANT: POWER_UP_UNINITIALIZED STRING "FALSE"
// Retrieval info: CONSTANT: READ_DURING_WRITE_MODE_MIXED_PORTS STRING "DONT_CARE"
// Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "10"
// Retrieval info: CONSTANT: WIDTHAD_B NUMERIC "10"
// Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
// Retrieval info: CONSTANT: WIDTH_B NUMERIC "8"
// Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
// Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
// Retrieval info: USED_PORT: data 0 0 8 0 INPUT NODEFVAL "data[7..0]"
// Retrieval info: USED_PORT: q 0 0 8 0 OUTPUT NODEFVAL "q[7..0]"
// Retrieval info: USED_PORT: rdaddress 0 0 10 0 INPUT NODEFVAL "rdaddress[9..0]"
// Retrieval info: USED_PORT: wraddress 0 0 10 0 INPUT NODEFVAL "wraddress[9..0]"
// Retrieval info: USED_PORT: wren 0 0 0 0 INPUT GND "wren"
// Retrieval info: CONNECT: @address_a 0 0 10 0 wraddress 0 0 10 0
// Retrieval info: CONNECT: @address_b 0 0 10 0 rdaddress 0 0 10 0
// Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
// Retrieval info: CONNECT: @data_a 0 0 8 0 data 0 0 8 0
// Retrieval info: CONNECT: @wren_a 0 0 0 0 wren 0 0 0 0
// Retrieval info: CONNECT: q 0 0 8 0 @q_b 0 0 8 0
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2.v TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2.inc FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2.cmp FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2.bsf TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2_inst.v FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL dpram2_bb.v TRUE
// Retrieval info: LIB_FILE: altera_mf
================================================
FILE: max10_adc_firmware/flash_pof.cdf
================================================
/* Quartus II 64-Bit Version 15.0.0 Build 145 04/22/2015 SJ Web Edition */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(10M08SAE144ES) Path("C:/haas/Dropbox/documents/FPGA/QuartusII/serial_vga_pong_max10/output_files/") File("serial1.pof") MfrSpec(OpMask(7) Child_OpMask(2 7 7));
ChainEnd;
AlteraBegin;
ChainType(JTAG);
AlteraEnd;
================================================
FILE: max10_adc_firmware/haasoscope.cfg
================================================
# SPDX-License-Identifier: GPL-2.0-or-later
# openocd config for connecting to a Haasoscope MAX10
# Tested on a v9.01 board
adapter driver usb_blaster
# Intel SVF files might override this
adapter speed 1000
transport select jtag
source [find fpga/altera-10m50.cfg]
init
================================================
FILE: max10_adc_firmware/hvsync_generator.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 184 160)
(text "hvsync_generator" (rect 5 0 79 12)(font "Arial" ))
(text "inst" (rect 8 128 20 140)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "clk" (rect 0 0 10 12)(font "Arial" ))
(text "clk" (rect 21 27 31 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 168 32)
(output)
(text "vga_h_sync" (rect 0 0 51 12)(font "Arial" ))
(text "vga_h_sync" (rect 96 27 147 39)(font "Arial" ))
(line (pt 168 32)(pt 152 32)(line_width 1))
)
(port
(pt 168 48)
(output)
(text "vga_v_sync" (rect 0 0 53 12)(font "Arial" ))
(text "vga_v_sync" (rect 94 43 147 55)(font "Arial" ))
(line (pt 168 48)(pt 152 48)(line_width 1))
)
(port
(pt 168 64)
(output)
(text "inDisplayArea" (rect 0 0 56 12)(font "Arial" ))
(text "inDisplayArea" (rect 91 59 147 71)(font "Arial" ))
(line (pt 168 64)(pt 152 64)(line_width 1))
)
(port
(pt 168 80)
(output)
(text "CounterX[9..0]" (rect 0 0 57 12)(font "Arial" ))
(text "CounterX[9..0]" (rect 90 75 147 87)(font "Arial" ))
(line (pt 168 80)(pt 152 80)(line_width 3))
)
(port
(pt 168 96)
(output)
(text "CounterY[8..0]" (rect 0 0 59 12)(font "Arial" ))
(text "CounterY[8..0]" (rect 88 91 147 103)(font "Arial" ))
(line (pt 168 96)(pt 152 96)(line_width 3))
)
(drawing
(rectangle (rect 16 16 152 128)(line_width 1))
)
)
================================================
FILE: max10_adc_firmware/hvsync_generator.v
================================================
module hvsync_generator(clk, vga_h_sync, vga_v_sync, inDisplayArea, CounterX, CounterY);
input clk;
output vga_h_sync, vga_v_sync;
output inDisplayArea;
output [9:0] CounterX;
output [8:0] CounterY;
//////////////////////////////////////////////////
reg [9:0] CounterX;
reg CounterXflip;
reg [8:0] CounterY;
wire CounterXmaxed = (CounterX==767);
always @(posedge clk)
if(CounterXmaxed)
CounterX <= 0;
else begin
if (CounterXflip) CounterX <= CounterX + 1;
CounterXflip <= ~CounterXflip;//goes from 0 to 1, so we only increment half the times (for 50Mhz!)
end
always @(posedge clk)
if(CounterXmaxed) CounterY <= CounterY + 1;
reg vga_HS, vga_VS;
always @(posedge clk)
begin
vga_HS <= (CounterX[9:4]==45); // change this value to move the display horizontally
vga_VS <= (CounterY==498); // change this value to move the display vertically
end
reg inDisplayArea;
always @(posedge clk)
if(inDisplayArea==0)
inDisplayArea <= (CounterXmaxed) && (CounterY<480);
else
inDisplayArea <= !(CounterX==639);
assign vga_h_sync = ~vga_HS;
assign vga_v_sync = ~vga_VS;
endmodule
================================================
FILE: max10_adc_firmware/i2c_master.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2015 Altera Corporation. All rights reserved.
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, the Altera Quartus II License Agreement,
the Altera MegaCore Function License Agreement, or other
applicable license agreement, including, without limitation,
that your use is for the sole purpose of programming logic
devices manufactured by Altera and sold by Altera or its
authorized distributors. Please refer to the applicable
agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 216 160)
(text "i2c_master" (rect 5 0 49 12)(font "Arial" ))
(text "inst" (rect 8 128 20 140)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "clk" (rect 0 0 10 12)(font "Arial" ))
(text "clk" (rect 21 27 31 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "reset_n" (rect 0 0 30 12)(font "Arial" ))
(text "reset_n" (rect 21 43 51 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 1))
)
(port
(pt 0 64)
(input)
(text "ena" (rect 0 0 14 12)(font "Arial" ))
(text "ena" (rect 21 59 35 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64)(line_width 1))
)
(port
(pt 0 80)
(input)
(text "addr[6..0]" (rect 0 0 37 12)(font "Arial" ))
(text "addr[6..0]" (rect 21 75 58 87)(font "Arial" ))
(line (pt 0 80)(pt 16 80)(line_width 3))
)
(port
(pt 0 96)
(input)
(text "rw" (rect 0 0 9 12)(font "Arial" ))
(text "rw" (rect 21 91 30 103)(font "Arial" ))
(line (pt 0 96)(pt 16 96)(line_width 1))
)
(port
(pt 0 112)
(input)
(text "data_wr[7..0]" (rect 0 0 51 12)(font "Arial" ))
(text "data_wr[7..0]" (rect 21 107 72 119)(font "Arial" ))
(line (pt 0 112)(pt 16 112)(line_width 3))
)
(port
(pt 200 32)
(output)
(text "busy" (rect 0 0 20 12)(font "Arial" ))
(text "busy" (rect 159 27 179 39)(font "Arial" ))
(line (pt 200 32)(pt 184 32)(line_width 1))
)
(port
(pt 200 48)
(output)
(text "data_rd[7..0]" (rect 0 0 50 12)(font "Arial" ))
(text "data_rd[7..0]" (rect 129 43 179 55)(font "Arial" ))
(line (pt 200 48)(pt 184 48)(line_width 3))
)
(port
(pt 200 64)
(output)
(text "ack_error" (rect 0 0 40 12)(font "Arial" ))
(text "ack_error" (rect 139 59 179 71)(font "Arial" ))
(line (pt 200 64)(pt 184 64)(line_width 1))
)
(port
(pt 200 80)
(bidir)
(text "sda" (rect 0 0 14 12)(font "Arial" ))
(text "sda" (rect 165 75 179 87)(font "Arial" ))
(line (pt 200 80)(pt 184 80)(line_width 1))
)
(port
(pt 200 96)
(bidir)
(text "scl" (rect 0 0 10 12)(font "Arial" ))
(text "scl" (rect 169 91 179 103)(font "Arial" ))
(line (pt 200 96)(pt 184 96)(line_width 1))
)
(parameter
"input_clk"
"50000000"
""
(type "PARAMETER_SIGNED_DEC") )
(parameter
"bus_clk"
"400000"
""
(type "PARAMETER_SIGNED_DEC") )
(drawing
(rectangle (rect 16 16 184 128)(line_width 1))
)
(annotation_block (parameter)(rect 216 -64 316 16))
)
================================================
FILE: max10_adc_firmware/i2c_master.vhd
================================================
--------------------------------------------------------------------------------
--
-- FileName: i2c_master.vhd
-- Dependencies: none
-- Design Software: Quartus II 64-bit Version 13.1 Build 162 SJ Full Version
--
-- HDL CODE IS PROVIDED "AS IS." DIGI-KEY EXPRESSLY DISCLAIMS ANY
-- WARRANTY OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
-- PARTICULAR PURPOSE, OR NON-INFRINGEMENT. IN NO EVENT SHALL DIGI-KEY
-- BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL
-- DAMAGES, LOST PROFITS OR LOST DATA, HARM TO YOUR EQUIPMENT, COST OF
-- PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS
-- BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF),
-- ANY CLAIMS FOR INDEMNITY OR CONTRIBUTION, OR OTHER SIMILAR COSTS.
--
-- Version History
-- Version 1.0 11/01/2012 Scott Larson
-- Initial Public Release
-- Version 2.0 06/20/2014 Scott Larson
-- Added ability to interface with different slaves in the same transaction
-- Corrected ack_error bug where ack_error went 'Z' instead of '1' on error
-- Corrected timing of when ack_error signal clears
-- Version 2.1 10/21/2014 Scott Larson
-- Replaced gated clock with clock enable
-- Adjusted timing of SCL during start and stop conditions
-- Version 2.2 02/05/2015 Scott Larson
-- Corrected small SDA glitch introduced in version 2.1
--
--------------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.all;
USE ieee.std_logic_unsigned.all;
ENTITY i2c_master IS
GENERIC(
input_clk : INTEGER := 50_000_000; --input clock speed from user logic in Hz
bus_clk : INTEGER := 400_000); --speed the i2c bus (scl) will run at in Hz
PORT(
clk : IN STD_LOGIC; --system clock
reset_n : IN STD_LOGIC; --active low reset
ena : IN STD_LOGIC; --latch in command
addr : IN STD_LOGIC_VECTOR(6 DOWNTO 0); --address of target slave
rw : IN STD_LOGIC; --'0' is write, '1' is read
data_wr : IN STD_LOGIC_VECTOR(7 DOWNTO 0); --data to write to slave
busy : OUT STD_LOGIC; --indicates transaction in progress
data_rd : OUT STD_LOGIC_VECTOR(7 DOWNTO 0); --data read from slave
ack_error : BUFFER STD_LOGIC; --flag if improper acknowledge from slave
sda : INOUT STD_LOGIC; --serial data output of i2c bus
scl : INOUT STD_LOGIC); --serial clock output of i2c bus
END i2c_master;
ARCHITECTURE logic OF i2c_master IS
CONSTANT divider : INTEGER := (input_clk/bus_clk)/4; --number of clocks in 1/4 cycle of scl
TYPE machine IS(ready, start, command, slv_ack1, wr, rd, slv_ack2, mstr_ack, stop); --needed states
SIGNAL state : machine; --state machine
SIGNAL data_clk : STD_LOGIC; --data clock for sda
SIGNAL data_clk_prev : STD_LOGIC; --data clock during previous system clock
SIGNAL scl_clk : STD_LOGIC; --constantly running internal scl
SIGNAL scl_ena : STD_LOGIC := '0'; --enables internal scl to output
SIGNAL sda_int : STD_LOGIC := '1'; --internal sda
SIGNAL sda_ena_n : STD_LOGIC; --enables internal sda to output
SIGNAL addr_rw : STD_LOGIC_VECTOR(7 DOWNTO 0); --latched in address and read/write
SIGNAL data_tx : STD_LOGIC_VECTOR(7 DOWNTO 0); --latched in data to write to slave
SIGNAL data_rx : STD_LOGIC_VECTOR(7 DOWNTO 0); --data received from slave
SIGNAL bit_cnt : INTEGER RANGE 0 TO 7 := 7; --tracks bit number in transaction
SIGNAL stretch : STD_LOGIC := '0'; --identifies if slave is stretching scl
BEGIN
--generate the timing for the bus clock (scl_clk) and the data clock (data_clk)
PROCESS(clk, reset_n)
VARIABLE count : INTEGER RANGE 0 TO divider*4; --timing for clock generation
BEGIN
IF(reset_n = '0') THEN --reset asserted
stretch <= '0';
count := 0;
ELSIF(clk'EVENT AND clk = '1') THEN
data_clk_prev <= data_clk; --store previous value of data clock
IF(count = divider*4-1) THEN --end of timing cycle
count := 0; --reset timer
ELSIF(stretch = '0') THEN --clock stretching from slave not detected
count := count + 1; --continue clock generation timing
END IF;
CASE count IS
WHEN 0 TO divider-1 => --first 1/4 cycle of clocking
scl_clk <= '0';
data_clk <= '0';
WHEN divider TO divider*2-1 => --second 1/4 cycle of clocking
scl_clk <= '0';
data_clk <= '1';
WHEN divider*2 TO divider*3-1 => --third 1/4 cycle of clocking
scl_clk <= '1'; --release scl
IF(scl = '0') THEN --detect if slave is stretching clock
stretch <= '1';
ELSE
stretch <= '0';
END IF;
data_clk <= '1';
WHEN OTHERS => --last 1/4 cycle of clocking
scl_clk <= '1';
data_clk <= '0';
END CASE;
END IF;
END PROCESS;
--state machine and writing to sda during scl low (data_clk rising edge)
PROCESS(clk, reset_n)
BEGIN
IF(reset_n = '0') THEN --reset asserted
state <= ready; --return to initial state
busy <= '1'; --indicate not available
scl_ena <= '0'; --sets scl high impedance
sda_int <= '1'; --sets sda high impedance
ack_error <= '0'; --clear acknowledge error flag
bit_cnt <= 7; --restarts data bit counter
data_rd <= "00000000"; --clear data read port
ELSIF(clk'EVENT AND clk = '1') THEN
IF(data_clk = '1' AND data_clk_prev = '0') THEN --data clock rising edge
CASE state IS
WHEN ready => --idle state
IF(ena = '1') THEN --transaction requested
busy <= '1'; --flag busy
addr_rw <= addr & rw; --collect requested slave address and command
data_tx <= data_wr; --collect requested data to write
state <= start; --go to start bit
ELSE --remain idle
busy <= '0'; --unflag busy
state <= ready; --remain idle
END IF;
WHEN start => --start bit of transaction
busy <= '1'; --resume busy if continuous mode
sda_int <= addr_rw(bit_cnt); --set first address bit to bus
state <= command; --go to command
WHEN command => --address and command byte of transaction
IF(bit_cnt = 0) THEN --command transmit finished
sda_int <= '1'; --release sda for slave acknowledge
bit_cnt <= 7; --reset bit counter for "byte" states
state <= slv_ack1; --go to slave acknowledge (command)
ELSE --next clock cycle of command state
bit_cnt <= bit_cnt - 1; --keep track of transaction bits
sda_int <= addr_rw(bit_cnt-1); --write address/command bit to bus
state <= command; --continue with command
END IF;
WHEN slv_ack1 => --slave acknowledge bit (command)
IF(addr_rw(0) = '0') THEN --write command
sda_int <= data_tx(bit_cnt); --write first bit of data
state <= wr; --go to write byte
ELSE --read command
sda_int <= '1'; --release sda from incoming data
state <= rd; --go to read byte
END IF;
WHEN wr => --write byte of transaction
busy <= '1'; --resume busy if continuous mode
IF(bit_cnt = 0) THEN --write byte transmit finished
sda_int <= '1'; --release sda for slave acknowledge
bit_cnt <= 7; --reset bit counter for "byte" states
state <= slv_ack2; --go to slave acknowledge (write)
ELSE --next clock cycle of write state
bit_cnt <= bit_cnt - 1; --keep track of transaction bits
sda_int <= data_tx(bit_cnt-1); --write next bit to bus
state <= wr; --continue writing
END IF;
WHEN rd => --read byte of transaction
busy <= '1'; --resume busy if continuous mode
IF(bit_cnt = 0) THEN --read byte receive finished
IF(ena = '1' AND addr_rw = addr & rw) THEN --continuing with another read at same address
sda_int <= '0'; --acknowledge the byte has been received
ELSE --stopping or continuing with a write
sda_int <= '1'; --send a no-acknowledge (before stop or repeated start)
END IF;
bit_cnt <= 7; --reset bit counter for "byte" states
data_rd <= data_rx; --output received data
state <= mstr_ack; --go to master acknowledge
ELSE --next clock cycle of read state
bit_cnt <= bit_cnt - 1; --keep track of transaction bits
state <= rd; --continue reading
END IF;
WHEN slv_ack2 => --slave acknowledge bit (write)
IF(ena = '1') THEN --continue transaction
busy <= '0'; --continue is accepted
addr_rw <= addr & rw; --collect requested slave address and command
data_tx <= data_wr; --collect requested data to write
IF(addr_rw = addr & rw) THEN --continue transaction with another write
sda_int <= data_wr(bit_cnt); --write first bit of data
state <= wr; --go to write byte
ELSE --continue transaction with a read or new slave
state <= start; --go to repeated start
END IF;
ELSE --complete transaction
state <= stop; --go to stop bit
END IF;
WHEN mstr_ack => --master acknowledge bit after a read
IF(ena = '1') THEN --continue transaction
busy <= '0'; --continue is accepted and data received is available on bus
addr_rw <= addr & rw; --collect requested slave address and command
data_tx <= data_wr; --collect requested data to write
IF(addr_rw = addr & rw) THEN --continue transaction with another read
sda_int <= '1'; --release sda from incoming data
state <= rd; --go to read byte
ELSE --continue transaction with a write or new slave
state <= start; --repeated start
END IF;
ELSE --complete transaction
state <= stop; --go to stop bit
END IF;
WHEN stop => --stop bit of transaction
busy <= '0'; --unflag busy
state <= ready; --go to idle state
END CASE;
ELSIF(data_clk = '0' AND data_clk_prev = '1') THEN --data clock falling edge
CASE state IS
WHEN start =>
IF(scl_ena = '0') THEN --starting new transaction
scl_ena <= '1'; --enable scl output
ack_error <= '0'; --reset acknowledge error output
END IF;
WHEN slv_ack1 => --receiving slave acknowledge (command)
IF(sda /= '0' OR ack_error = '1') THEN --no-acknowledge or previous no-acknowledge
ack_error <= '1'; --set error output if no-acknowledge
END IF;
WHEN rd => --receiving slave data
data_rx(bit_cnt) <= sda; --receive current slave data bit
WHEN slv_ack2 => --receiving slave acknowledge (write)
IF(sda /= '0' OR ack_error = '1') THEN --no-acknowledge or previous no-acknowledge
ack_error <= '1'; --set error output if no-acknowledge
END IF;
WHEN stop =>
scl_ena <= '0'; --disable scl
WHEN OTHERS =>
NULL;
END CASE;
END IF;
END IF;
END PROCESS;
--set sda output
WITH state SELECT
sda_ena_n <= data_clk_prev WHEN start, --generate start condition
NOT data_clk_prev WHEN stop, --generate stop condition
sda_int WHEN OTHERS; --set to internal sda signal
--set scl and sda outputs
scl <= '0' WHEN (scl_ena = '1' AND scl_clk = '0') ELSE 'Z';
sda <= '0' WHEN sda_ena_n = '0' ELSE 'Z';
END logic;
================================================
FILE: max10_adc_firmware/i2c_master.vhd.bak
================================================
--------------------------------------------------------------------------------
--
-- FileName: i2c_master.vhd
-- Dependencies: none
-- Design Software: Quartus II 64-bit Version 13.1 Build 162 SJ Full Version
--
-- HDL CODE IS PROVIDED "AS IS." DIGI-KEY EXPRESSLY DISCLAIMS ANY
-- WARRANTY OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
-- PARTICULAR PURPOSE, OR NON-INFRINGEMENT. IN NO EVENT SHALL DIGI-KEY
-- BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL
-- DAMAGES, LOST PROFITS OR LOST DATA, HARM TO YOUR EQUIPMENT, COST OF
-- PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS
-- BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF),
-- ANY CLAIMS FOR INDEMNITY OR CONTRIBUTION, OR OTHER SIMILAR COSTS.
--
-- Version History
-- Version 1.0 11/01/2012 Scott Larson
-- Initial Public Release
-- Version 2.0 06/20/2014 Scott Larson
-- Added ability to interface with different slaves in the same transaction
-- Corrected ack_error bug where ack_error went 'Z' instead of '1' on error
-- Corrected timing of when ack_error signal clears
-- Version 2.1 10/21/2014 Scott Larson
-- Replaced gated clock with clock enable
-- Adjusted timing of SCL during start and stop conditions
-- Version 2.2 02/05/2015 Scott Larson
-- Corrected small SDA glitch introduced in version 2.1
--
--------------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.all;
USE ieee.std_logic_unsigned.all;
ENTITY i2c_master IS
GENERIC(
input_clk : INTEGER := 50_000_000; --input clock speed from user logic in Hz
bus_clk : INTEGER := 400_000); --speed the i2c bus (scl) will run at in Hz
PORT(
clk : IN STD_LOGIC; --system clock
reset_n : IN STD_LOGIC; --active low reset
ena : IN STD_LOGIC; --latch in command
addr : IN STD_LOGIC_VECTOR(6 DOWNTO 0); --address of target slave
rw : IN STD_LOGIC; --'0' is write, '1' is read
data_wr : IN STD_LOGIC_VECTOR(7 DOWNTO 0); --data to write to slave
busy : OUT STD_LOGIC; --indicates transaction in progress
data_rd : OUT STD_LOGIC_VECTOR(7 DOWNTO 0); --data read from slave
ack_error : BUFFER STD_LOGIC; --flag if improper acknowledge from slave
sda : INOUT STD_LOGIC; --serial data output of i2c bus
scl : INOUT STD_LOGIC); --serial clock output of i2c bus
END i2c_master;
ARCHITECTURE logic OF i2c_master IS
CONSTANT divider : INTEGER := (input_clk/bus_clk)/4; --number of clocks in 1/4 cycle of scl
TYPE machine IS(ready, start, command, slv_ack1, wr, rd, slv_ack2, mstr_ack, stop); --needed states
SIGNAL state : machine; --state machine
SIGNAL data_clk : STD_LOGIC; --data clock for sda
SIGNAL data_clk_prev : STD_LOGIC; --data clock during previous system clock
SIGNAL scl_clk : STD_LOGIC; --constantly running internal scl
SIGNAL scl_ena : STD_LOGIC := '0'; --enables internal scl to output
SIGNAL sda_int : STD_LOGIC := '1'; --internal sda
SIGNAL sda_ena_n : STD_LOGIC; --enables internal sda to output
SIGNAL addr_rw : STD_LOGIC_VECTOR(7 DOWNTO 0); --latched in address and read/write
SIGNAL data_tx : STD_LOGIC_VECTOR(7 DOWNTO 0); --latched in data to write to slave
SIGNAL data_rx : STD_LOGIC_VECTOR(7 DOWNTO 0); --data received from slave
SIGNAL bit_cnt : INTEGER RANGE 0 TO 7 := 7; --tracks bit number in transaction
SIGNAL stretch : STD_LOGIC := '0'; --identifies if slave is stretching scl
BEGIN
--generate the timing for the bus clock (scl_clk) and the data clock (data_clk)
PROCESS(clk, reset_n)
VARIABLE count : INTEGER RANGE 0 TO divider*4; --timing for clock generation
BEGIN
IF(reset_n = '0') THEN --reset asserted
stretch <= '0';
count := 0;
ELSIF(clk'EVENT AND clk = '1') THEN
data_clk_prev <= data_clk; --store previous value of data clock
IF(count = divider*4-1) THEN --end of timing cycle
count := 0; --reset timer
ELSIF(stretch = '0') THEN --clock stretching from slave not detected
count := count + 1; --continue clock generation timing
END IF;
CASE count IS
WHEN 0 TO divider-1 => --first 1/4 cycle of clocking
scl_clk <= '0';
data_clk <= '0';
WHEN divider TO divider*2-1 => --second 1/4 cycle of clocking
scl_clk <= '0';
data_clk <= '1';
WHEN divider*2 TO divider*3-1 => --third 1/4 cycle of clocking
scl_clk <= '1'; --release scl
IF(scl = '0') THEN --detect if slave is stretching clock
stretch <= '1';
ELSE
stretch <= '0';
END IF;
data_clk <= '1';
WHEN OTHERS => --last 1/4 cycle of clocking
scl_clk <= '1';
data_clk <= '0';
END CASE;
END IF;
END PROCESS;
--state machine and writing to sda during scl low (data_clk rising edge)
PROCESS(clk, reset_n)
BEGIN
IF(reset_n = '0') THEN --reset asserted
state <= ready; --return to initial state
busy <= '1'; --indicate not available
scl_ena <= '0'; --sets scl high impedance
sda_int <= '1'; --sets sda high impedance
ack_error <= '0'; --clear acknowledge error flag
bit_cnt <= 7; --restarts data bit counter
data_rd <= "00000000"; --clear data read port
ELSIF(clk'EVENT AND clk = '1') THEN
IF(data_clk = '1' AND data_clk_prev = '0') THEN --data clock rising edge
CASE state IS
WHEN ready => --idle state
IF(ena = '1') THEN --transaction requested
busy <= '1'; --flag busy
addr_rw <= addr & rw; --collect requested slave address and command
data_tx <= data_wr; --collect requested data to write
state <= start; --go to start bit
ELSE --remain idle
busy <= '0'; --unflag busy
state <= ready; --remain idle
END IF;
WHEN start => --start bit of transaction
busy <= '1'; --resume busy if continuous mode
sda_int <= addr_rw(bit_cnt); --set first address bit to bus
state <= command; --go to command
WHEN command => --address and command byte of transaction
IF(bit_cnt = 0) THEN --command transmit finished
sda_int <= '1'; --release sda for slave acknowledge
bit_cnt <= 7; --reset bit counter for "byte" states
state <= slv_ack1; --go to slave acknowledge (command)
ELSE --next clock cycle of command state
bit_cnt <= bit_cnt - 1; --keep track of transaction bits
sda_int <= addr_rw(bit_cnt-1); --write address/command bit to bus
state <= command; --continue with command
END IF;
WHEN slv_ack1 => --slave acknowledge bit (command)
IF(addr_rw(0) = '0') THEN --write command
sda_int <= data_tx(bit_cnt); --write first bit of data
state <= wr; --go to write byte
ELSE --read command
sda_int <= '1'; --release sda from incoming data
state <= rd; --go to read byte
END IF;
WHEN wr => --write byte of transaction
busy <= '1'; --resume busy if continuous mode
IF(bit_cnt = 0) THEN --write byte transmit finished
sda_int <= '1'; --release sda for slave acknowledge
bit_cnt <= 7; --reset bit counter for "byte" states
state <= slv_ack2; --go to slave acknowledge (write)
ELSE --next clock cycle of write state
bit_cnt <= bit_cnt - 1; --keep track of transaction bits
sda_int <= data_tx(bit_cnt-1); --write next bit to bus
state <= wr; --continue writing
END IF;
WHEN rd => --read byte of transaction
busy <= '1'; --resume busy if continuous mode
IF(bit_cnt = 0) THEN --read byte receive finished
IF(ena = '1' AND addr_rw = addr & rw) THEN --continuing with another read at same address
sda_int <= '0'; --acknowledge the byte has been received
ELSE --stopping or continuing with a write
sda_int <= '1'; --send a no-acknowledge (before stop or repeated start)
END IF;
bit_cnt <= 7; --reset bit counter for "byte" states
data_rd <= data_rx; --output received data
state <= mstr_ack; --go to master acknowledge
ELSE --next clock cycle of read state
bit_cnt <= bit_cnt - 1; --keep track of transaction bits
state <= rd; --continue reading
END IF;
WHEN slv_ack2 => --slave acknowledge bit (write)
IF(ena = '1') THEN --continue transaction
busy <= '0'; --continue is accepted
addr_rw <= addr & rw; --collect requested slave address and command
data_tx <= data_wr; --collect requested data to write
IF(addr_rw = addr & rw) THEN --continue transaction with another write
sda_int <= data_wr(bit_cnt); --write first bit of data
state <= wr; --go to write byte
ELSE --continue transaction with a read or new slave
state <= start; --go to repeated start
END IF;
ELSE --complete transaction
state <= stop; --go to stop bit
END IF;
WHEN mstr_ack => --master acknowledge bit after a read
IF(ena = '1') THEN --continue transaction
busy <= '0'; --continue is accepted and data received is available on bus
addr_rw <= addr & rw; --collect requested slave address and command
data_tx <= data_wr; --collect requested data to write
IF(addr_rw = addr & rw) THEN --continue transaction with another read
sda_int <= '1'; --release sda from incoming data
state <= rd; --go to read byte
ELSE --continue transaction with a write or new slave
state <= start; --repeated start
END IF;
ELSE --complete transaction
state <= stop; --go to stop bit
END IF;
WHEN stop => --stop bit of transaction
busy <= '0'; --unflag busy
state <= ready; --go to idle state
END CASE;
ELSIF(data_clk = '0' AND data_clk_prev = '1') THEN --data clock falling edge
CASE state IS
WHEN start =>
IF(scl_ena = '0') THEN --starting new transaction
scl_ena <= '1'; --enable scl output
ack_error <= '0'; --reset acknowledge error output
END IF;
WHEN slv_ack1 => --receiving slave acknowledge (command)
IF(sda /= '0' OR ack_error = '1') THEN --no-acknowledge or previous no-acknowledge
ack_error <= '1'; --set error output if no-acknowledge
END IF;
WHEN rd => --receiving slave data
data_rx(bit_cnt) <= sda; --receive current slave data bit
WHEN slv_ack2 => --receiving slave acknowledge (write)
IF(sda /= '0' OR ack_error = '1') THEN --no-acknowledge or previous no-acknowledge
ack_error <= '1'; --set error output if no-acknowledge
END IF;
WHEN stop =>
scl_ena <= '0'; --disable scl
WHEN OTHERS =>
NULL;
END CASE;
END IF;
END IF;
END PROCESS;
--set sda output
WITH state SELECT
sda_ena_n <= data_clk_prev WHEN start, --generate start condition
NOT data_clk_prev WHEN stop, --generate stop condition
sda_int WHEN OTHERS; --set to internal sda signal
--set scl and sda outputs
scl <= '0' WHEN (scl_ena = '1' AND scl_clk = '0') ELSE 'Z';
sda <= '0' WHEN sda_ena_n = '0' ELSE 'Z';
END logic;
================================================
FILE: max10_adc_firmware/lp_ram_dp.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 2018 Intel Corporation. All rights reserved.
Your use of Intel Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Intel Program License
Subscription Agreement, the Intel Quartus Prime License Agreement,
the Intel FPGA IP License Agreement, or other applicable license
agreement, including, without limitation, that your use is for
the sole purpose of programming logic devices manufactured by
Intel and sold by Intel or its authorized distributors. Please
refer to the applicable agreement for further details.
*/
(header "symbol" (version "1.2"))
(symbol
(rect 0 0 256 176)
(text "lp_ram_dp" (rect 98 0 168 16)(font "Arial" (font_size 10)))
(text "inst" (rect 8 160 25 172)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "data[7..0]" (rect 0 0 53 14)(font "Arial" (font_size 8)))
(text "data[7..0]" (rect 4 18 47 31)(font "Arial" (font_size 8)))
(line (pt 0 32)(pt 112 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "wraddress[12..0]" (rect 0 0 99 14)(font "Arial" (font_size 8)))
(text "wraddress[12..0]" (rect 4 34 86 47)(font "Arial" (font_size 8)))
(line (pt 0 48)(pt 112 48)(line_width 3))
)
(port
(pt 0 64)
(input)
(text "wren" (rect 0 0 30 14)(font "Arial" (font_size 8)))
(text "wren" (rect 4 50 28 63)(font "Arial" (font_size 8)))
(line (pt 0 64)(pt 112 64))
)
(port
(pt 0 88)
(input)
(text "rdaddress[12..0]" (rect 0 0 94 14)(font "Arial" (font_size 8)))
(text "rdaddress[12..0]" (rect 4 74 82 87)(font "Arial" (font_size 8)))
(line (pt 0 88)(pt 112 88)(line_width 3))
)
(port
(pt 0 104)
(input)
(text "rden" (rect 0 0 25 14)(font "Arial" (font_size 8)))
(text "rden" (rect 4 90 24 103)(font "Arial" (font_size 8)))
(line (pt 0 104)(pt 112 104))
)
(port
(pt 0 128)
(input)
(text "wrclock" (rect 0 0 46 14)(font "Arial" (font_size 8)))
(text "wrclock" (rect 4 114 41 127)(font "Arial" (font_size 8)))
(line (pt 0 128)(pt 98 128))
)
(port
(pt 0 144)
(input)
(text "rdclock" (rect 0 0 41 14)(font "Arial" (font_size 8)))
(text "rdclock" (rect 4 130 37 143)(font "Arial" (font_size 8)))
(line (pt 0 144)(pt 176 144))
)
(port
(pt 256 88)
(output)
(text "q[7..0]" (rect 0 0 35 14)(font "Arial" (font_size 8)))
(text "q[7..0]" (rect 223 74 251 87)(font "Arial" (font_size 8)))
(line (pt 256 88)(pt 192 88)(line_width 3))
)
(drawing
(text "8192 Word(s)" (rect 137 11 244 203)(font "Arial" )(vertical))
(text "RAM" (rect 148 0 237 167)(font "Arial" )(vertical))
(text "Block Type: AUTO" (rect 40 165 156 341)(font "Arial" ))
(line (pt 128 24)(pt 168 24))
(line (pt 168 24)(pt 168 112))
(line (pt 168 112)(pt 128 112))
(line (pt 128 112)(pt 128 24))
(line (pt 112 27)(pt 120 27))
(line (pt 120 27)(pt 120 39))
(line (pt 120 39)(pt 112 39))
(line (pt 112 39)(pt 112 27))
(line (pt 112 34)(pt 114 36))
(line (pt 114 36)(pt 112 38))
(line (pt 98 36)(pt 112 36))
(line (pt 120 32)(pt 128 32)(line_width 3))
(line (pt 112 43)(pt 120 43))
(line (pt 120 43)(pt 120 55))
(line (pt 120 55)(pt 112 55))
(line (pt 112 55)(pt 112 43))
(line (pt 112 50)(pt 114 52))
(line (pt 114 52)(pt 112 54))
(line (pt 98 52)(pt 112 52))
(line (pt 120 48)(pt 128 48)(line_width 3))
(line (pt 112 59)(pt 120 59))
(line (pt 120 59)(pt 120 71))
(line (pt 120 71)(pt 112 71))
(line (pt 112 71)(pt 112 59))
(line (pt 112 66)(pt 114 68))
(line (pt 114 68)(pt 112 70))
(line (pt 98 68)(pt 112 68))
(line (pt 120 64)(pt 128 64))
(line (pt 112 83)(pt 120 83))
(line (pt 120 83)(pt 120 95))
(line (pt 120 95)(pt 112 95))
(line (pt 112 95)(pt 112 83))
(line (pt 112 90)(pt 114 92))
(line (pt 114 92)(pt 112 94))
(line (pt 104 92)(pt 112 92))
(line (pt 120 88)(pt 128 88)(line_width 3))
(line (pt 112 99)(pt 120 99))
(line (pt 120 99)(pt 120 111))
(line (pt 120 111)(pt 112 111))
(line (pt 112 111)(pt 112 99))
(line (pt 112 106)(pt 114 108))
(line (pt 114 108)(pt 112 110))
(line (pt 104 108)(pt 112 108))
(line (pt 120 104)(pt 128 104))
(line (pt 98 36)(pt 98 129))
(line (pt 104 92)(pt 104 145))
(line (pt 176 92)(pt 176 145))
(line (pt 184 83)(pt 192 83))
(line (pt 192 83)(pt 192 95))
(line (pt 192 95)(pt 184 95))
(line (pt 184 95)(pt 184 83))
(line (pt 184 90)(pt 186 92))
(line (pt 186 92)(pt 184 94))
(line (pt 176 92)(pt 184 92))
(line (pt 168 88)(pt 184 88)(line_width 3))
(line (pt 0 0)(pt 257 0))
(line (pt 257 0)(pt 257 178))
(line (pt 0 178)(pt 257 178))
(line (pt 0 0)(pt 0 178))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
)
)
================================================
FILE: max10_adc_firmware/lp_ram_dp.qip
================================================
set_global_assignment -name IP_TOOL_NAME "RAM: 2-PORT"
set_global_assignment -name IP_TOOL_VERSION "18.0"
set_global_assignment -name IP_GENERATED_DEVICE_FAMILY "{MAX 10}"
set_global_assignment -name VERILOG_FILE [file join $::quartus(qip_path) "lp_ram_dp.v"]
set_global_assignment -name MISC_FILE [file join $::quartus(qip_path) "lp_ram_dp.bsf"]
set_global_assignment -name MISC_FILE [file join $::quartus(qip_path) "lp_ram_dp_bb.v"]
================================================
FILE: max10_adc_firmware/lp_ram_dp.v
================================================
// megafunction wizard: %RAM: 2-PORT%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: altsyncram
// ============================================================
// File Name: lp_ram_dp.v
// Megafunction Name(s):
// altsyncram
//
// Simulation Library Files(s):
// altera_mf
// ============================================================
// ************************************************************
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
//
// 18.0.0 Build 614 04/24/2018 SJ Lite Edition
// ************************************************************
//Copyright (C) 2018 Intel Corporation. All rights reserved.
//Your use of Intel Corporation's design tools, logic functions
//and other software and tools, and its AMPP partner logic
//functions, and any output files from any of the foregoing
//(including device programming or simulation files), and any
//associated documentation or information are expressly subject
//to the terms and conditions of the Intel Program License
//Subscription Agreement, the Intel Quartus Prime License Agreement,
//the Intel FPGA IP License Agreement, or other applicable license
//agreement, including, without limitation, that your use is for
//the sole purpose of programming logic devices manufactured by
//Intel and sold by Intel or its authorized distributors. Please
//refer to the applicable agreement for further details.
// synopsys translate_off
`timescale 1 ps / 1 ps
// synopsys translate_on
module lp_ram_dp (
data,
rdaddress,
rdclock,
rden,
wraddress,
wrclock,
wren,
q);
input [7:0] data;
input [12:0] rdaddress;
input rdclock;
input rden;
input [12:0] wraddress;
input wrclock;
input wren;
output [7:0] q;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_off
`endif
tri1 rden;
tri1 wrclock;
tri0 wren;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_on
`endif
wire [7:0] sub_wire0;
wire [7:0] q = sub_wire0[7:0];
altsyncram altsyncram_component (
.address_a (wraddress),
.address_b (rdaddress),
.clock0 (wrclock),
.clock1 (rdclock),
.data_a (data),
.rden_b (rden),
.wren_a (wren),
.q_b (sub_wire0),
.aclr0 (1'b0),
.aclr1 (1'b0),
.addressstall_a (1'b0),
.addressstall_b (1'b0),
.byteena_a (1'b1),
.byteena_b (1'b1),
.clocken0 (1'b1),
.clocken1 (1'b1),
.clocken2 (1'b1),
.clocken3 (1'b1),
.data_b ({8{1'b1}}),
.eccstatus (),
.q_a (),
.rden_a (1'b1),
.wren_b (1'b0));
defparam
altsyncram_component.address_aclr_b = "NONE",
altsyncram_component.address_reg_b = "CLOCK1",
altsyncram_component.clock_enable_input_a = "BYPASS",
altsyncram_component.clock_enable_input_b = "BYPASS",
altsyncram_component.clock_enable_output_b = "BYPASS",
altsyncram_component.intended_device_family = "MAX 10",
altsyncram_component.lpm_type = "altsyncram",
altsyncram_component.numwords_a = 8192,
altsyncram_component.numwords_b = 8192,
altsyncram_component.operation_mode = "DUAL_PORT",
altsyncram_component.outdata_aclr_b = "NONE",
altsyncram_component.outdata_reg_b = "CLOCK1",
altsyncram_component.power_up_uninitialized = "FALSE",
altsyncram_component.rdcontrol_reg_b = "CLOCK1",
altsyncram_component.widthad_a = 13,
altsyncram_component.widthad_b = 13,
altsyncram_component.width_a = 8,
altsyncram_component.width_b = 8,
altsyncram_component.width_byteena_a = 1;
endmodule
// ============================================================
// CNX file retrieval info
// ============================================================
// Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
// Retrieval info: PRIVATE: ADDRESSSTALL_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
// Retrieval info: PRIVATE: BlankMemory NUMERIC "1"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLRdata NUMERIC "0"
// Retrieval info: PRIVATE: CLRq NUMERIC "0"
// Retrieval info: PRIVATE: CLRrdaddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRrren NUMERIC "0"
// Retrieval info: PRIVATE: CLRwraddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRwren NUMERIC "0"
// Retrieval info: PRIVATE: Clock NUMERIC "1"
// Retrieval info: PRIVATE: Clock_A NUMERIC "0"
// Retrieval info: PRIVATE: Clock_B NUMERIC "0"
// Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_B"
// Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
// Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
// Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
// Retrieval info: PRIVATE: MEMSIZE NUMERIC "65536"
// Retrieval info: PRIVATE: MEM_IN_BITS NUMERIC "0"
// Retrieval info: PRIVATE: MIFfilename STRING ""
// Retrieval info: PRIVATE: OPERATION_MODE NUMERIC "2"
// Retrieval info: PRIVATE: OUTDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: OUTDATA_REG_B NUMERIC "1"
// Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_MIXED_PORTS NUMERIC "2"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_A NUMERIC "3"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_B NUMERIC "3"
// Retrieval info: PRIVATE: REGdata NUMERIC "1"
// Retrieval info: PRIVATE: REGq NUMERIC "1"
// Retrieval info: PRIVATE: REGrdaddress NUMERIC "1"
// Retrieval info: PRIVATE: REGrren NUMERIC "1"
// Retrieval info: PRIVATE: REGwraddress NUMERIC "1"
// Retrieval info: PRIVATE: REGwren NUMERIC "1"
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
// Retrieval info: PRIVATE: USE_DIFF_CLKEN NUMERIC "0"
// Retrieval info: PRIVATE: UseDPRAM NUMERIC "1"
// Retrieval info: PRIVATE: VarWidth NUMERIC "0"
// Retrieval info: PRIVATE: WIDTH_READ_A NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_READ_B NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_WRITE_A NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_WRITE_B NUMERIC "8"
// Retrieval info: PRIVATE: WRADDR_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: WRADDR_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: WRCTRL_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: enable NUMERIC "0"
// Retrieval info: PRIVATE: rden NUMERIC "1"
// Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
// Retrieval info: CONSTANT: ADDRESS_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: ADDRESS_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
// Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "8192"
// Retrieval info: CONSTANT: NUMWORDS_B NUMERIC "8192"
// Retrieval info: CONSTANT: OPERATION_MODE STRING "DUAL_PORT"
// Retrieval info: CONSTANT: OUTDATA_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: OUTDATA_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: POWER_UP_UNINITIALIZED STRING "FALSE"
// Retrieval info: CONSTANT: RDCONTROL_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "13"
// Retrieval info: CONSTANT: WIDTHAD_B NUMERIC "13"
// Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
// Retrieval info: CONSTANT: WIDTH_B NUMERIC "8"
// Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
// Retrieval info: USED_PORT: data 0 0 8 0 INPUT NODEFVAL "data[7..0]"
// Retrieval info: USED_PORT: q 0 0 8 0 OUTPUT NODEFVAL "q[7..0]"
// Retrieval info: USED_PORT: rdaddress 0 0 13 0 INPUT NODEFVAL "rdaddress[12..0]"
// Retrieval info: USED_PORT: rdclock 0 0 0 0 INPUT NODEFVAL "rdclock"
// Retrieval info: USED_PORT: rden 0 0 0 0 INPUT VCC "rden"
// Retrieval info: USED_PORT: wraddress 0 0 13 0 INPUT NODEFVAL "wraddress[12..0]"
// Retrieval info: USED_PORT: wrclock 0 0 0 0 INPUT VCC "wrclock"
// Retrieval info: USED_PORT: wren 0 0 0 0 INPUT GND "wren"
// Retrieval info: CONNECT: @address_a 0 0 13 0 wraddress 0 0 13 0
// Retrieval info: CONNECT: @address_b 0 0 13 0 rdaddress 0 0 13 0
// Retrieval info: CONNECT: @clock0 0 0 0 0 wrclock 0 0 0 0
// Retrieval info: CONNECT: @clock1 0 0 0 0 rdclock 0 0 0 0
// Retrieval info: CONNECT: @data_a 0 0 8 0 data 0 0 8 0
// Retrieval info: CONNECT: @rden_b 0 0 0 0 rden 0 0 0 0
// Retrieval info: CONNECT: @wren_a 0 0 0 0 wren 0 0 0 0
// Retrieval info: CONNECT: q 0 0 8 0 @q_b 0 0 8 0
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp.v TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp.inc FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp.cmp FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp.bsf TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_inst.v FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_bb.v TRUE
// Retrieval info: LIB_FILE: altera_mf
================================================
FILE: max10_adc_firmware/lp_ram_dp_2.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 2018 Intel Corporation. All rights reserved.
Your use of Intel Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Intel Program License
Subscription Agreement, the Intel Quartus Prime License Agreement,
the Intel FPGA IP License Agreement, or other applicable license
agreement, including, without limitation, that your use is for
the sole purpose of programming logic devices manufactured by
Intel and sold by Intel or its authorized distributors. Please
refer to the applicable agreement for further details.
*/
(header "symbol" (version "1.2"))
(symbol
(rect 0 0 256 176)
(text "lp_ram_dp_2" (rect 91 0 178 16)(font "Arial" (font_size 10)))
(text "inst" (rect 8 160 25 172)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "data[4..0]" (rect 0 0 53 14)(font "Arial" (font_size 8)))
(text "data[4..0]" (rect 4 18 47 31)(font "Arial" (font_size 8)))
(line (pt 0 32)(pt 112 32)(line_width 3))
)
(port
(pt 0 48)
(input)
(text "wraddress[12..0]" (rect 0 0 99 14)(font "Arial" (font_size 8)))
(text "wraddress[12..0]" (rect 4 34 86 47)(font "Arial" (font_size 8)))
(line (pt 0 48)(pt 112 48)(line_width 3))
)
(port
(pt 0 64)
(input)
(text "wren" (rect 0 0 30 14)(font "Arial" (font_size 8)))
(text "wren" (rect 4 50 28 63)(font "Arial" (font_size 8)))
(line (pt 0 64)(pt 112 64))
)
(port
(pt 0 88)
(input)
(text "rdaddress[12..0]" (rect 0 0 94 14)(font "Arial" (font_size 8)))
(text "rdaddress[12..0]" (rect 4 74 82 87)(font "Arial" (font_size 8)))
(line (pt 0 88)(pt 112 88)(line_width 3))
)
(port
(pt 0 104)
(input)
(text "rden" (rect 0 0 25 14)(font "Arial" (font_size 8)))
(text "rden" (rect 4 90 24 103)(font "Arial" (font_size 8)))
(line (pt 0 104)(pt 112 104))
)
(port
(pt 0 128)
(input)
(text "wrclock" (rect 0 0 46 14)(font "Arial" (font_size 8)))
(text "wrclock" (rect 4 114 41 127)(font "Arial" (font_size 8)))
(line (pt 0 128)(pt 98 128))
)
(port
(pt 0 144)
(input)
(text "rdclock" (rect 0 0 41 14)(font "Arial" (font_size 8)))
(text "rdclock" (rect 4 130 37 143)(font "Arial" (font_size 8)))
(line (pt 0 144)(pt 176 144))
)
(port
(pt 256 88)
(output)
(text "q[4..0]" (rect 0 0 35 14)(font "Arial" (font_size 8)))
(text "q[4..0]" (rect 223 74 251 87)(font "Arial" (font_size 8)))
(line (pt 256 88)(pt 192 88)(line_width 3))
)
(drawing
(text "8192 Word(s)" (rect 137 11 244 203)(font "Arial" )(vertical))
(text "RAM" (rect 148 0 237 167)(font "Arial" )(vertical))
(text "Block Type: AUTO" (rect 40 165 156 341)(font "Arial" ))
(line (pt 128 24)(pt 168 24))
(line (pt 168 24)(pt 168 112))
(line (pt 168 112)(pt 128 112))
(line (pt 128 112)(pt 128 24))
(line (pt 112 27)(pt 120 27))
(line (pt 120 27)(pt 120 39))
(line (pt 120 39)(pt 112 39))
(line (pt 112 39)(pt 112 27))
(line (pt 112 34)(pt 114 36))
(line (pt 114 36)(pt 112 38))
(line (pt 98 36)(pt 112 36))
(line (pt 120 32)(pt 128 32)(line_width 3))
(line (pt 112 43)(pt 120 43))
(line (pt 120 43)(pt 120 55))
(line (pt 120 55)(pt 112 55))
(line (pt 112 55)(pt 112 43))
(line (pt 112 50)(pt 114 52))
(line (pt 114 52)(pt 112 54))
(line (pt 98 52)(pt 112 52))
(line (pt 120 48)(pt 128 48)(line_width 3))
(line (pt 112 59)(pt 120 59))
(line (pt 120 59)(pt 120 71))
(line (pt 120 71)(pt 112 71))
(line (pt 112 71)(pt 112 59))
(line (pt 112 66)(pt 114 68))
(line (pt 114 68)(pt 112 70))
(line (pt 98 68)(pt 112 68))
(line (pt 120 64)(pt 128 64))
(line (pt 112 83)(pt 120 83))
(line (pt 120 83)(pt 120 95))
(line (pt 120 95)(pt 112 95))
(line (pt 112 95)(pt 112 83))
(line (pt 112 90)(pt 114 92))
(line (pt 114 92)(pt 112 94))
(line (pt 104 92)(pt 112 92))
(line (pt 120 88)(pt 128 88)(line_width 3))
(line (pt 112 99)(pt 120 99))
(line (pt 120 99)(pt 120 111))
(line (pt 120 111)(pt 112 111))
(line (pt 112 111)(pt 112 99))
(line (pt 112 106)(pt 114 108))
(line (pt 114 108)(pt 112 110))
(line (pt 104 108)(pt 112 108))
(line (pt 120 104)(pt 128 104))
(line (pt 98 36)(pt 98 129))
(line (pt 104 92)(pt 104 145))
(line (pt 176 92)(pt 176 145))
(line (pt 184 83)(pt 192 83))
(line (pt 192 83)(pt 192 95))
(line (pt 192 95)(pt 184 95))
(line (pt 184 95)(pt 184 83))
(line (pt 184 90)(pt 186 92))
(line (pt 186 92)(pt 184 94))
(line (pt 176 92)(pt 184 92))
(line (pt 168 88)(pt 184 88)(line_width 3))
(line (pt 0 0)(pt 257 0))
(line (pt 257 0)(pt 257 178))
(line (pt 0 178)(pt 257 178))
(line (pt 0 0)(pt 0 178))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
(line (pt 0 0)(pt 0 0))
)
)
================================================
FILE: max10_adc_firmware/lp_ram_dp_2.qip
================================================
set_global_assignment -name IP_TOOL_NAME "RAM: 2-PORT"
set_global_assignment -name IP_TOOL_VERSION "18.0"
set_global_assignment -name IP_GENERATED_DEVICE_FAMILY "{MAX 10}"
set_global_assignment -name VERILOG_FILE [file join $::quartus(qip_path) "lp_ram_dp_2.v"]
set_global_assignment -name MISC_FILE [file join $::quartus(qip_path) "lp_ram_dp_2.bsf"]
set_global_assignment -name MISC_FILE [file join $::quartus(qip_path) "lp_ram_dp_2_inst.v"]
set_global_assignment -name MISC_FILE [file join $::quartus(qip_path) "lp_ram_dp_2_bb.v"]
================================================
FILE: max10_adc_firmware/lp_ram_dp_2.v
================================================
// megafunction wizard: %RAM: 2-PORT%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: altsyncram
// ============================================================
// File Name: lp_ram_dp_2.v
// Megafunction Name(s):
// altsyncram
//
// Simulation Library Files(s):
// altera_mf
// ============================================================
// ************************************************************
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
//
// 18.0.0 Build 614 04/24/2018 SJ Lite Edition
// ************************************************************
//Copyright (C) 2018 Intel Corporation. All rights reserved.
//Your use of Intel Corporation's design tools, logic functions
//and other software and tools, and its AMPP partner logic
//functions, and any output files from any of the foregoing
//(including device programming or simulation files), and any
//associated documentation or information are expressly subject
//to the terms and conditions of the Intel Program License
//Subscription Agreement, the Intel Quartus Prime License Agreement,
//the Intel FPGA IP License Agreement, or other applicable license
//agreement, including, without limitation, that your use is for
//the sole purpose of programming logic devices manufactured by
//Intel and sold by Intel or its authorized distributors. Please
//refer to the applicable agreement for further details.
// synopsys translate_off
`timescale 1 ps / 1 ps
// synopsys translate_on
module lp_ram_dp_2 (
data,
rdaddress,
rdclock,
rden,
wraddress,
wrclock,
wren,
q);
input [4:0] data;
input [12:0] rdaddress;
input rdclock;
input rden;
input [12:0] wraddress;
input wrclock;
input wren;
output [4:0] q;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_off
`endif
tri1 rden;
tri1 wrclock;
tri0 wren;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_on
`endif
wire [4:0] sub_wire0;
wire [4:0] q = sub_wire0[4:0];
altsyncram altsyncram_component (
.address_a (wraddress),
.address_b (rdaddress),
.clock0 (wrclock),
.clock1 (rdclock),
.data_a (data),
.rden_b (rden),
.wren_a (wren),
.q_b (sub_wire0),
.aclr0 (1'b0),
.aclr1 (1'b0),
.addressstall_a (1'b0),
.addressstall_b (1'b0),
.byteena_a (1'b1),
.byteena_b (1'b1),
.clocken0 (1'b1),
.clocken1 (1'b1),
.clocken2 (1'b1),
.clocken3 (1'b1),
.data_b ({5{1'b1}}),
.eccstatus (),
.q_a (),
.rden_a (1'b1),
.wren_b (1'b0));
defparam
altsyncram_component.address_aclr_b = "NONE",
altsyncram_component.address_reg_b = "CLOCK1",
altsyncram_component.clock_enable_input_a = "BYPASS",
altsyncram_component.clock_enable_input_b = "BYPASS",
altsyncram_component.clock_enable_output_b = "BYPASS",
altsyncram_component.intended_device_family = "MAX 10",
altsyncram_component.lpm_type = "altsyncram",
altsyncram_component.numwords_a = 8192,
altsyncram_component.numwords_b = 8192,
altsyncram_component.operation_mode = "DUAL_PORT",
altsyncram_component.outdata_aclr_b = "NONE",
altsyncram_component.outdata_reg_b = "CLOCK1",
altsyncram_component.power_up_uninitialized = "FALSE",
altsyncram_component.rdcontrol_reg_b = "CLOCK1",
altsyncram_component.widthad_a = 13,
altsyncram_component.widthad_b = 13,
altsyncram_component.width_a = 5,
altsyncram_component.width_b = 5,
altsyncram_component.width_byteena_a = 1;
endmodule
// ============================================================
// CNX file retrieval info
// ============================================================
// Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
// Retrieval info: PRIVATE: ADDRESSSTALL_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
// Retrieval info: PRIVATE: BlankMemory NUMERIC "1"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLRdata NUMERIC "0"
// Retrieval info: PRIVATE: CLRq NUMERIC "0"
// Retrieval info: PRIVATE: CLRrdaddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRrren NUMERIC "0"
// Retrieval info: PRIVATE: CLRwraddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRwren NUMERIC "0"
// Retrieval info: PRIVATE: Clock NUMERIC "1"
// Retrieval info: PRIVATE: Clock_A NUMERIC "0"
// Retrieval info: PRIVATE: Clock_B NUMERIC "0"
// Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_B"
// Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
// Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
// Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
// Retrieval info: PRIVATE: MEMSIZE NUMERIC "40960"
// Retrieval info: PRIVATE: MEM_IN_BITS NUMERIC "0"
// Retrieval info: PRIVATE: MIFfilename STRING ""
// Retrieval info: PRIVATE: OPERATION_MODE NUMERIC "2"
// Retrieval info: PRIVATE: OUTDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: OUTDATA_REG_B NUMERIC "1"
// Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_MIXED_PORTS NUMERIC "2"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_A NUMERIC "3"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_B NUMERIC "3"
// Retrieval info: PRIVATE: REGdata NUMERIC "1"
// Retrieval info: PRIVATE: REGq NUMERIC "0"
// Retrieval info: PRIVATE: REGrdaddress NUMERIC "1"
// Retrieval info: PRIVATE: REGrren NUMERIC "1"
// Retrieval info: PRIVATE: REGwraddress NUMERIC "1"
// Retrieval info: PRIVATE: REGwren NUMERIC "1"
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
// Retrieval info: PRIVATE: USE_DIFF_CLKEN NUMERIC "0"
// Retrieval info: PRIVATE: UseDPRAM NUMERIC "1"
// Retrieval info: PRIVATE: VarWidth NUMERIC "0"
// Retrieval info: PRIVATE: WIDTH_READ_A NUMERIC "5"
// Retrieval info: PRIVATE: WIDTH_READ_B NUMERIC "5"
// Retrieval info: PRIVATE: WIDTH_WRITE_A NUMERIC "5"
// Retrieval info: PRIVATE: WIDTH_WRITE_B NUMERIC "5"
// Retrieval info: PRIVATE: WRADDR_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: WRADDR_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: WRCTRL_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: enable NUMERIC "0"
// Retrieval info: PRIVATE: rden NUMERIC "1"
// Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
// Retrieval info: CONSTANT: ADDRESS_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: ADDRESS_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
// Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "8192"
// Retrieval info: CONSTANT: NUMWORDS_B NUMERIC "8192"
// Retrieval info: CONSTANT: OPERATION_MODE STRING "DUAL_PORT"
// Retrieval info: CONSTANT: OUTDATA_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: OUTDATA_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: POWER_UP_UNINITIALIZED STRING "FALSE"
// Retrieval info: CONSTANT: RDCONTROL_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "13"
// Retrieval info: CONSTANT: WIDTHAD_B NUMERIC "13"
// Retrieval info: CONSTANT: WIDTH_A NUMERIC "5"
// Retrieval info: CONSTANT: WIDTH_B NUMERIC "5"
// Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
// Retrieval info: USED_PORT: data 0 0 5 0 INPUT NODEFVAL "data[4..0]"
// Retrieval info: USED_PORT: q 0 0 5 0 OUTPUT NODEFVAL "q[4..0]"
// Retrieval info: USED_PORT: rdaddress 0 0 13 0 INPUT NODEFVAL "rdaddress[12..0]"
// Retrieval info: USED_PORT: rdclock 0 0 0 0 INPUT NODEFVAL "rdclock"
// Retrieval info: USED_PORT: rden 0 0 0 0 INPUT VCC "rden"
// Retrieval info: USED_PORT: wraddress 0 0 13 0 INPUT NODEFVAL "wraddress[12..0]"
// Retrieval info: USED_PORT: wrclock 0 0 0 0 INPUT VCC "wrclock"
// Retrieval info: USED_PORT: wren 0 0 0 0 INPUT GND "wren"
// Retrieval info: CONNECT: @address_a 0 0 13 0 wraddress 0 0 13 0
// Retrieval info: CONNECT: @address_b 0 0 13 0 rdaddress 0 0 13 0
// Retrieval info: CONNECT: @clock0 0 0 0 0 wrclock 0 0 0 0
// Retrieval info: CONNECT: @clock1 0 0 0 0 rdclock 0 0 0 0
// Retrieval info: CONNECT: @data_a 0 0 5 0 data 0 0 5 0
// Retrieval info: CONNECT: @rden_b 0 0 0 0 rden 0 0 0 0
// Retrieval info: CONNECT: @wren_a 0 0 0 0 wren 0 0 0 0
// Retrieval info: CONNECT: q 0 0 5 0 @q_b 0 0 5 0
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2.v TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2.inc FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2.cmp FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2.bsf TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2_inst.v TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2_bb.v TRUE
// Retrieval info: LIB_FILE: altera_mf
================================================
FILE: max10_adc_firmware/lp_ram_dp_2_bb.v
================================================
// megafunction wizard: %RAM: 2-PORT%VBB%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: altsyncram
// ============================================================
// File Name: lp_ram_dp_2.v
// Megafunction Name(s):
// altsyncram
//
// Simulation Library Files(s):
// altera_mf
// ============================================================
// ************************************************************
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
//
// 18.0.0 Build 614 04/24/2018 SJ Lite Edition
// ************************************************************
//Copyright (C) 2018 Intel Corporation. All rights reserved.
//Your use of Intel Corporation's design tools, logic functions
//and other software and tools, and its AMPP partner logic
//functions, and any output files from any of the foregoing
//(including device programming or simulation files), and any
//associated documentation or information are expressly subject
//to the terms and conditions of the Intel Program License
//Subscription Agreement, the Intel Quartus Prime License Agreement,
//the Intel FPGA IP License Agreement, or other applicable license
//agreement, including, without limitation, that your use is for
//the sole purpose of programming logic devices manufactured by
//Intel and sold by Intel or its authorized distributors. Please
//refer to the applicable agreement for further details.
module lp_ram_dp_2 (
data,
rdaddress,
rdclock,
rden,
wraddress,
wrclock,
wren,
q);
input [4:0] data;
input [12:0] rdaddress;
input rdclock;
input rden;
input [12:0] wraddress;
input wrclock;
input wren;
output [4:0] q;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_off
`endif
tri1 rden;
tri1 wrclock;
tri0 wren;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_on
`endif
endmodule
// ============================================================
// CNX file retrieval info
// ============================================================
// Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
// Retrieval info: PRIVATE: ADDRESSSTALL_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
// Retrieval info: PRIVATE: BlankMemory NUMERIC "1"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLRdata NUMERIC "0"
// Retrieval info: PRIVATE: CLRq NUMERIC "0"
// Retrieval info: PRIVATE: CLRrdaddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRrren NUMERIC "0"
// Retrieval info: PRIVATE: CLRwraddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRwren NUMERIC "0"
// Retrieval info: PRIVATE: Clock NUMERIC "1"
// Retrieval info: PRIVATE: Clock_A NUMERIC "0"
// Retrieval info: PRIVATE: Clock_B NUMERIC "0"
// Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_B"
// Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
// Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
// Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
// Retrieval info: PRIVATE: MEMSIZE NUMERIC "40960"
// Retrieval info: PRIVATE: MEM_IN_BITS NUMERIC "0"
// Retrieval info: PRIVATE: MIFfilename STRING ""
// Retrieval info: PRIVATE: OPERATION_MODE NUMERIC "2"
// Retrieval info: PRIVATE: OUTDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: OUTDATA_REG_B NUMERIC "1"
// Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_MIXED_PORTS NUMERIC "2"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_A NUMERIC "3"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_B NUMERIC "3"
// Retrieval info: PRIVATE: REGdata NUMERIC "1"
// Retrieval info: PRIVATE: REGq NUMERIC "0"
// Retrieval info: PRIVATE: REGrdaddress NUMERIC "1"
// Retrieval info: PRIVATE: REGrren NUMERIC "1"
// Retrieval info: PRIVATE: REGwraddress NUMERIC "1"
// Retrieval info: PRIVATE: REGwren NUMERIC "1"
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
// Retrieval info: PRIVATE: USE_DIFF_CLKEN NUMERIC "0"
// Retrieval info: PRIVATE: UseDPRAM NUMERIC "1"
// Retrieval info: PRIVATE: VarWidth NUMERIC "0"
// Retrieval info: PRIVATE: WIDTH_READ_A NUMERIC "5"
// Retrieval info: PRIVATE: WIDTH_READ_B NUMERIC "5"
// Retrieval info: PRIVATE: WIDTH_WRITE_A NUMERIC "5"
// Retrieval info: PRIVATE: WIDTH_WRITE_B NUMERIC "5"
// Retrieval info: PRIVATE: WRADDR_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: WRADDR_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: WRCTRL_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: enable NUMERIC "0"
// Retrieval info: PRIVATE: rden NUMERIC "1"
// Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
// Retrieval info: CONSTANT: ADDRESS_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: ADDRESS_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
// Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "8192"
// Retrieval info: CONSTANT: NUMWORDS_B NUMERIC "8192"
// Retrieval info: CONSTANT: OPERATION_MODE STRING "DUAL_PORT"
// Retrieval info: CONSTANT: OUTDATA_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: OUTDATA_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: POWER_UP_UNINITIALIZED STRING "FALSE"
// Retrieval info: CONSTANT: RDCONTROL_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "13"
// Retrieval info: CONSTANT: WIDTHAD_B NUMERIC "13"
// Retrieval info: CONSTANT: WIDTH_A NUMERIC "5"
// Retrieval info: CONSTANT: WIDTH_B NUMERIC "5"
// Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
// Retrieval info: USED_PORT: data 0 0 5 0 INPUT NODEFVAL "data[4..0]"
// Retrieval info: USED_PORT: q 0 0 5 0 OUTPUT NODEFVAL "q[4..0]"
// Retrieval info: USED_PORT: rdaddress 0 0 13 0 INPUT NODEFVAL "rdaddress[12..0]"
// Retrieval info: USED_PORT: rdclock 0 0 0 0 INPUT NODEFVAL "rdclock"
// Retrieval info: USED_PORT: rden 0 0 0 0 INPUT VCC "rden"
// Retrieval info: USED_PORT: wraddress 0 0 13 0 INPUT NODEFVAL "wraddress[12..0]"
// Retrieval info: USED_PORT: wrclock 0 0 0 0 INPUT VCC "wrclock"
// Retrieval info: USED_PORT: wren 0 0 0 0 INPUT GND "wren"
// Retrieval info: CONNECT: @address_a 0 0 13 0 wraddress 0 0 13 0
// Retrieval info: CONNECT: @address_b 0 0 13 0 rdaddress 0 0 13 0
// Retrieval info: CONNECT: @clock0 0 0 0 0 wrclock 0 0 0 0
// Retrieval info: CONNECT: @clock1 0 0 0 0 rdclock 0 0 0 0
// Retrieval info: CONNECT: @data_a 0 0 5 0 data 0 0 5 0
// Retrieval info: CONNECT: @rden_b 0 0 0 0 rden 0 0 0 0
// Retrieval info: CONNECT: @wren_a 0 0 0 0 wren 0 0 0 0
// Retrieval info: CONNECT: q 0 0 5 0 @q_b 0 0 5 0
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2.v TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2.inc FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2.cmp FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2.bsf TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2_inst.v TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_2_bb.v TRUE
// Retrieval info: LIB_FILE: altera_mf
================================================
FILE: max10_adc_firmware/lp_ram_dp_2_inst.v
================================================
lp_ram_dp_2 lp_ram_dp_2_inst (
.data ( data_sig ),
.rdaddress ( rdaddress_sig ),
.rdclock ( rdclock_sig ),
.rden ( rden_sig ),
.wraddress ( wraddress_sig ),
.wrclock ( wrclock_sig ),
.wren ( wren_sig ),
.q ( q_sig )
);
================================================
FILE: max10_adc_firmware/lp_ram_dp_bb.v
================================================
// megafunction wizard: %RAM: 2-PORT%VBB%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: altsyncram
// ============================================================
// File Name: lp_ram_dp.v
// Megafunction Name(s):
// altsyncram
//
// Simulation Library Files(s):
// altera_mf
// ============================================================
// ************************************************************
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
//
// 18.0.0 Build 614 04/24/2018 SJ Lite Edition
// ************************************************************
//Copyright (C) 2018 Intel Corporation. All rights reserved.
//Your use of Intel Corporation's design tools, logic functions
//and other software and tools, and its AMPP partner logic
//functions, and any output files from any of the foregoing
//(including device programming or simulation files), and any
//associated documentation or information are expressly subject
//to the terms and conditions of the Intel Program License
//Subscription Agreement, the Intel Quartus Prime License Agreement,
//the Intel FPGA IP License Agreement, or other applicable license
//agreement, including, without limitation, that your use is for
//the sole purpose of programming logic devices manufactured by
//Intel and sold by Intel or its authorized distributors. Please
//refer to the applicable agreement for further details.
module lp_ram_dp (
data,
rdaddress,
rdclock,
rden,
wraddress,
wrclock,
wren,
q);
input [7:0] data;
input [12:0] rdaddress;
input rdclock;
input rden;
input [12:0] wraddress;
input wrclock;
input wren;
output [7:0] q;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_off
`endif
tri1 rden;
tri1 wrclock;
tri0 wren;
`ifndef ALTERA_RESERVED_QIS
// synopsys translate_on
`endif
endmodule
// ============================================================
// CNX file retrieval info
// ============================================================
// Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
// Retrieval info: PRIVATE: ADDRESSSTALL_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTEENA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_A NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_ENABLE_B NUMERIC "0"
// Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
// Retrieval info: PRIVATE: BlankMemory NUMERIC "1"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
// Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_B NUMERIC "0"
// Retrieval info: PRIVATE: CLRdata NUMERIC "0"
// Retrieval info: PRIVATE: CLRq NUMERIC "0"
// Retrieval info: PRIVATE: CLRrdaddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRrren NUMERIC "0"
// Retrieval info: PRIVATE: CLRwraddress NUMERIC "0"
// Retrieval info: PRIVATE: CLRwren NUMERIC "0"
// Retrieval info: PRIVATE: Clock NUMERIC "1"
// Retrieval info: PRIVATE: Clock_A NUMERIC "0"
// Retrieval info: PRIVATE: Clock_B NUMERIC "0"
// Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: INDATA_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_B"
// Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
// Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
// Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
// Retrieval info: PRIVATE: MEMSIZE NUMERIC "65536"
// Retrieval info: PRIVATE: MEM_IN_BITS NUMERIC "0"
// Retrieval info: PRIVATE: MIFfilename STRING ""
// Retrieval info: PRIVATE: OPERATION_MODE NUMERIC "2"
// Retrieval info: PRIVATE: OUTDATA_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: OUTDATA_REG_B NUMERIC "1"
// Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_MIXED_PORTS NUMERIC "2"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_A NUMERIC "3"
// Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_B NUMERIC "3"
// Retrieval info: PRIVATE: REGdata NUMERIC "1"
// Retrieval info: PRIVATE: REGq NUMERIC "1"
// Retrieval info: PRIVATE: REGrdaddress NUMERIC "1"
// Retrieval info: PRIVATE: REGrren NUMERIC "1"
// Retrieval info: PRIVATE: REGwraddress NUMERIC "1"
// Retrieval info: PRIVATE: REGwren NUMERIC "1"
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
// Retrieval info: PRIVATE: USE_DIFF_CLKEN NUMERIC "0"
// Retrieval info: PRIVATE: UseDPRAM NUMERIC "1"
// Retrieval info: PRIVATE: VarWidth NUMERIC "0"
// Retrieval info: PRIVATE: WIDTH_READ_A NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_READ_B NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_WRITE_A NUMERIC "8"
// Retrieval info: PRIVATE: WIDTH_WRITE_B NUMERIC "8"
// Retrieval info: PRIVATE: WRADDR_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: WRADDR_REG_B NUMERIC "0"
// Retrieval info: PRIVATE: WRCTRL_ACLR_B NUMERIC "0"
// Retrieval info: PRIVATE: enable NUMERIC "0"
// Retrieval info: PRIVATE: rden NUMERIC "1"
// Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
// Retrieval info: CONSTANT: ADDRESS_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: ADDRESS_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_B STRING "BYPASS"
// Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "MAX 10"
// Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
// Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "8192"
// Retrieval info: CONSTANT: NUMWORDS_B NUMERIC "8192"
// Retrieval info: CONSTANT: OPERATION_MODE STRING "DUAL_PORT"
// Retrieval info: CONSTANT: OUTDATA_ACLR_B STRING "NONE"
// Retrieval info: CONSTANT: OUTDATA_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: POWER_UP_UNINITIALIZED STRING "FALSE"
// Retrieval info: CONSTANT: RDCONTROL_REG_B STRING "CLOCK1"
// Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "13"
// Retrieval info: CONSTANT: WIDTHAD_B NUMERIC "13"
// Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
// Retrieval info: CONSTANT: WIDTH_B NUMERIC "8"
// Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
// Retrieval info: USED_PORT: data 0 0 8 0 INPUT NODEFVAL "data[7..0]"
// Retrieval info: USED_PORT: q 0 0 8 0 OUTPUT NODEFVAL "q[7..0]"
// Retrieval info: USED_PORT: rdaddress 0 0 13 0 INPUT NODEFVAL "rdaddress[12..0]"
// Retrieval info: USED_PORT: rdclock 0 0 0 0 INPUT NODEFVAL "rdclock"
// Retrieval info: USED_PORT: rden 0 0 0 0 INPUT VCC "rden"
// Retrieval info: USED_PORT: wraddress 0 0 13 0 INPUT NODEFVAL "wraddress[12..0]"
// Retrieval info: USED_PORT: wrclock 0 0 0 0 INPUT VCC "wrclock"
// Retrieval info: USED_PORT: wren 0 0 0 0 INPUT GND "wren"
// Retrieval info: CONNECT: @address_a 0 0 13 0 wraddress 0 0 13 0
// Retrieval info: CONNECT: @address_b 0 0 13 0 rdaddress 0 0 13 0
// Retrieval info: CONNECT: @clock0 0 0 0 0 wrclock 0 0 0 0
// Retrieval info: CONNECT: @clock1 0 0 0 0 rdclock 0 0 0 0
// Retrieval info: CONNECT: @data_a 0 0 8 0 data 0 0 8 0
// Retrieval info: CONNECT: @rden_b 0 0 0 0 rden 0 0 0 0
// Retrieval info: CONNECT: @wren_a 0 0 0 0 wren 0 0 0 0
// Retrieval info: CONNECT: q 0 0 8 0 @q_b 0 0 8 0
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp.v TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp.inc FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp.cmp FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp.bsf TRUE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_inst.v FALSE
// Retrieval info: GEN_FILE: TYPE_NORMAL lp_ram_dp_bb.v TRUE
// Retrieval info: LIB_FILE: altera_mf
================================================
FILE: max10_adc_firmware/mball.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Altera Program License
Subscription Agreement, Altera MegaCore Function License
Agreement, or other applicable license agreement, including,
without limitation, that your use is for the sole purpose of
programming logic devices manufactured by Altera and sold by
Altera or its authorized distributors. Please refer to the
applicable agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 16 16 192 128)
(text "mball" (rect 5 0 25 12)(font "Arial" ))
(text "inst" (rect 8 96 20 108)(font "Arial" ))
(port
(pt 0 32)
(input)
(text "clk" (rect 0 0 10 12)(font "Arial" ))
(text "clk" (rect 21 27 31 39)(font "Arial" ))
(line (pt 0 32)(pt 16 32)(line_width 1))
)
(port
(pt 0 48)
(input)
(text "CounterX[9..0]" (rect 0 0 57 12)(font "Arial" ))
(text "CounterX[9..0]" (rect 21 43 78 55)(font "Arial" ))
(line (pt 0 48)(pt 16 48)(line_width 3))
)
(port
(pt 0 64)
(input)
(text "CounterY[8..0]" (rect 0 0 59 12)(font "Arial" ))
(text "CounterY[8..0]" (rect 21 59 80 71)(font "Arial" ))
(line (pt 0 64)(pt 16 64)(line_width 3))
)
(port
(pt 176 32)
(output)
(text "ball" (rect 0 0 11 12)(font "Arial" ))
(text "ball" (rect 144 27 155 39)(font "Arial" ))
(line (pt 176 32)(pt 160 32)(line_width 1))
)
(drawing
(rectangle (rect 16 16 160 96)(line_width 1))
)
)
================================================
FILE: max10_adc_firmware/mball.v
================================================
module mball(clk, BouncingObject, inotherball, CounterX, CounterY, ballX, ballY, inball, ballspeed, ballmass);
input clk;
input BouncingObject;
input inotherball;
input [9:0] CounterX;
input [8:0] CounterY;
parameter [9:0] startX;
parameter [8:0] startY;
parameter ballsize = 5;
parameter twoballsize = 2*ballsize;
output reg [9:0] ballX;
output reg [8:0] ballY;
output reg [8:0] ballspeed;
parameter [8:0] pballmass;
parameter [8:0] pballspeed;
output [8:0] ballmass = pballmass;//just set to the input parameter
reg ball_inX, ball_inY;
always @(posedge clk)
if(ball_inX==0) ball_inX <= (CounterX==ballX) & ball_inY; else ball_inX <= !(CounterX==ballX+twoballsize);
always @(posedge clk)
if(ball_inY==0) ball_inY <= (CounterY==ballY); else ball_inY <= !(CounterY==ballY+twoballsize);
output inball = ball_inX & ball_inY;
initial begin
ballX<=startX;
ballY<=startY;
ball_dirX <= startX%2;
ball_dirY <= startY%2;
ballspeed<=pballspeed;
end
reg ResetCollision;
always @(posedge clk) ResetCollision <= (CounterY==500) & (CounterX==0); // active only once for every video frame
reg CollisionX1, CollisionX2, CollisionY1, CollisionY2;
always @(posedge clk) if(ResetCollision) CollisionX1<=0; else if(BouncingObject & (CounterX==ballX ) & (CounterY==ballY+ballsize)) CollisionX1<=1;
always @(posedge clk) if(ResetCollision) CollisionX2<=0; else if(BouncingObject & (CounterX==ballX+twoballsize) & (CounterY==ballY+ballsize)) CollisionX2<=1;
always @(posedge clk) if(ResetCollision) CollisionY1<=0; else if(BouncingObject & (CounterX==ballX+ballsize) & (CounterY==ballY )) CollisionY1<=1;
always @(posedge clk) if(ResetCollision) CollisionY2<=0; else if(BouncingObject & (CounterX==ballX+ballsize) & (CounterY==ballY+twoballsize)) CollisionY2<=1;
wire UpdateBallPosition = ResetCollision; // update the ball position at the same time that we reset the collision detectors
reg ballcollision;
always @(posedge clk) if(ResetCollision) ballcollision<=0; else if (inotherball) ballcollision<=1;//inotherball;
reg ball_dirX, ball_dirY;
always @(posedge clk) begin
if(UpdateBallPosition) begin
if(~(CollisionX1 & CollisionX2)) // if collision on both X-sides, don't move in the X direction
begin
if (ballcollision) begin
ball_dirX = !ball_dirX;
ballspeed = 1+((ballspeed+1)%2);//ballcollision;///ballmass; // v=p/m
end
ballX = ballX + (ball_dirX ? -ballspeed : ballspeed);
if (CollisionX2) ball_dirX <= 1; else if (CollisionX1) ball_dirX <= 0;
end
if(~(CollisionY1 & CollisionY2)) // if collision on both Y-sides, don't move in the Y direction
begin
ballY <= ballY + (ball_dirY ? -1 : 1);
if (CollisionY2) ball_dirY <= 1; else if (CollisionY1) ball_dirY <= 0;
end
end
end
endmodule
================================================
FILE: max10_adc_firmware/myadc/myadc.bsf
================================================
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to occur.
*/
/*
Copyright (C) 2018 Intel Corporation. All rights reserved.
Your use of Intel Corporation's design tools, logic functions
and other software and tools, and its AMPP partner logic
functions, and any output files from any of the foregoing
(including device programming or simulation files), and any
associated documentation or information are expressly subject
to the terms and conditions of the Intel Program License
Subscription Agreement, the Intel Quartus Prime License Agreement,
the Intel FPGA IP License Agreement, or other applicable license
agreement, including, without limitation, that your use is for
the sole purpose of programming logic devices manufactured by
Intel and sold by Intel or its authorized distributors. Please
refer to the applicable agreement for further details.
*/
(header "symbol" (version "1.1"))
(symbol
(rect 0 0 400 328)
(text "myadc" (rect 181 -1 209 11)(font "Arial" (font_size 10)))
(text "inst" (rect 8 312 20 324)(font "Arial" ))
(port
(pt 0 72)
(input)
(text "adc_pll_clock_clk" (rect 0 0 69 12)(font "Arial" (font_size 8)))
(text "adc_pll_clock_clk" (rect 4 61 106 72)(font "Arial" (font_size 8)))
(line (pt 0 72)(pt 128 72)(line_width 1))
)
(port
(pt 0 112)
(input)
(text "adc_pll_locked_export" (rect 0 0 88 12)(font "Arial" (font_size 8)))
(text "adc_pll_locked_export" (rect 4 101 130 112)(font "Arial" (font_size 8)))
(line (pt 0 112)(pt 128 112)(line_width 1))
)
(port
(pt 0 152)
(input)
(text "clock_clk" (rect 0 0 36 12)(font "Arial" (font_size 8)))
(text "clock_clk" (rect 4 141 58 152)(font "Arial" (font_size 8)))
(line (pt 0 152)(pt 128 152)(line_width 1))
)
(port
(pt 0 192)
(input)
(text "command_valid" (rect 0 0 63 12)(font "Arial" (font_size 8)))
(text "command_valid" (rect 4 181 82 192)(font "Arial" (font_size 8)))
(line (pt 0 192)(pt 128 192)(line_width 1))
)
(port
(pt 0 208)
(input)
(text "command_channel[4..0]" (rect 0 0 96 12)(font "Arial" (font_size 8)))
(text "command_channel[4..0]" (rect 4 197 130 208)(font "Arial" (font_size 8)))
(line (pt 0 208)(pt 128 208)(line_width 3))
)
(port
(pt 0 224)
(input)
(text "command_startofpacket" (rect 0 0 97 12)(font "Arial" (font_size 8)))
(text "command_startofpacket" (rect 4 213 130 224)(font "Arial" (font_size 8)))
(line (pt 0 224)(pt 128 224)(line_width 1))
)
(port
(pt 0 240)
(input)
(text "command_endofpacket" (rect 0 0 94 12)(font "Arial" (font_size 8)))
(text "command_endofpacket" (rect 4 229 118 240)(font "Arial" (font_size 8)))
(line (pt 0 240)(pt 128 240)(line_width 1))
)
(port
(pt 0 296)
(input)
(text "reset_sink_reset_n" (rect 0 0 77 12)(font "Arial" (font_size 8)))
(text "reset_sink_reset_n" (rect 4 285 112 296)(font "Arial" (font_size 8)))
(line (pt 0 296)(pt 128 296)(line_width 1))
)
(port
(pt 0 256)
(output)
(text "command_ready" (rect 0 0 69 12)(font "Arial" (font_size 8)))
(text "command_ready" (rect 4 245 82 256)(font "Arial" (font_size 8)))
(line (pt 0 256)(pt 128 256)(line_width 1))
)
(port
(pt 400 72)
(output)
(text "response_valid" (rect 0 0 60 12)(font "Arial" (font_size 8)))
(text "response_valid" (rect 323 61 407 72)(font "Arial" (font_size 8)))
(line (pt 400 72)(pt 272 72)(line_width 1))
)
(port
(pt 400 88)
(output)
(text "response_channel[4..0]" (rect 0 0 93 12)(font "Arial" (font_size 8)))
(text "response_channel[4..0]" (rect 283 77 415 88)(font "Arial" (font_size 8)))
(line (pt 400 88)(pt 272 88)(line_width 3))
)
(port
(pt 400 104)
(output)
(text "response_data[11..0]" (rect 0 0 81 12)(font "Arial" (font_size 8)))
(text "response_data[11..0]" (rect 298 93 418 104)(font "Arial" (font_size 8)))
(line (pt 400 104)(pt 272 104)(line_width 3))
)
(port
(pt 400 120)
(output)
(text "response_startofpacket" (rect 0 0 94 12)(font "Arial" (font_size 8)))
(text "response_startofpacket" (rect 280 109 412 120)(font "Arial" (font_size 8)))
(line (pt 400 120)(pt 272 120)(line_width 1))
)
(port
(pt 400 136)
(output)
(text "response_endofpacket" (rect 0 0 90 12)(font "Arial" (font_size 8)))
(text "response_endofpacket" (rect 284 125 404 136)(font "Arial" (font_size 8)))
(line (pt 400 136)(pt 272 136)(line_width 1))
)
(drawing
(text "adc_pll_clock" (rect 51 43 180 99)(font "Arial" (color 128 0 0)(font_size 9)))
(text "clk" (rect 133 67 284 144)(font "Arial" (color 0 0 0)))
(text "adc_pll_locked" (rect 43 83 170 179)(font "Arial" (color 128 0 0)(font_size 9)))
(text "export" (rect 133 107 302 224)(font "Arial" (color 0 0 0)))
(text "clock" (rect 100 123 230 259)(font "Arial" (color 128 0 0)(font_size 9)))
(text "clk" (rect 133 147 284 304)(font "Arial" (color 0 0 0)))
(text "command" (rect 73 163 188 339)(font "Arial" (color 128 0 0)(font_size 9)))
(text "valid" (rect 133 187 296 384)(font "Arial" (color 0 0 0)))
(text "channel" (rect 133 203 308 416)(font "Arial" (color 0 0 0)))
(text "startofpacket" (rect 133 219 344 448)(font "Arial" (color 0 0 0)))
(text "endofpacket" (rect 133 235 332 480)(font "Arial" (color 0 0 0)))
(text "ready" (rect 133 251 296 512)(font "Arial" (color 0 0 0)))
(text "reset_sink" (rect 67 267 194 547)(font "Arial" (color 128 0 0)(font_size 9)))
(text "reset_n" (rect 133 291 308 592)(font "Arial" (color 0 0 0)))
(text "response" (rect 273 43 594 99)(font "Arial" (color 128 0 0)(font_size 9)))
(text "valid" (rect 249 67 528 144)(font "Arial" (color 0 0 0)))
(text "channel" (rect 237 83 516 176)(font "Arial" (color 0 0 0)))
(text "data" (rect 251 99 526 208)(font "Arial" (color 0 0 0)))
(text "startofpacket" (rect 212 115 502 240)(font "Arial" (color 0 0 0)))
(text "endofpacket" (rect 217 131 500 272)(font "Arial" (color 0 0 0)))
(text " myadc " (rect 368 312 778 634)(font "Arial" ))
(line (pt 128 32)(pt 272 32)(line_width 1))
(line (pt 272 32)(pt 272 312)(line_width 1))
(line (pt 128 312)(pt 272 312)(line_width 1))
(line (pt 128 32)(pt 128 312)(line_width 1))
(line (pt 129 52)(pt 129 76)(line_width 1))
(line (pt 130 52)(pt 130 76)(line_width 1))
(line (pt 129 92)(pt 129 116)(line_width 1))
(line (pt 130 92)(pt 130 116)(line_width 1))
(line (pt 129 132)(pt 129 156)(line_width 1))
(line (pt 130 132)(pt 130 156)(line_width 1))
(line (pt 129 172)(pt 129 260)(line_width 1))
(line (pt 130 172)(pt 130 260)(line_width 1))
(line (pt 129 276)(pt 129 300)(line_width 1))
(line (pt 130 276)(pt 130 300)(line_width 1))
(line (pt 271 52)(pt 271 140)(line_width 1))
(line (pt 270 52)(pt 270 140)(line_width 1))
(line (pt 0 0)(pt 400 0)(line_width 1))
(line (pt 400 0)(pt 400 328)(line_width 1))
(line (pt 0 328)(pt 400 328)(line_width 1))
(line (pt 0 0)(pt 0 328)(line_width 1))
)
)
================================================
FILE: max10_adc_firmware/myadc/myadc.cmp
================================================
component myadc is
port (
adc_pll_clock_clk : in std_logic := 'X'; -- clk
adc_pll_locked_export : in std_logic := 'X'; -- export
clock_clk : in std_logic := 'X'; -- clk
command_valid : in std_logic := 'X'; -- valid
command_channel : in std_logic_vector(4 downto 0) := (others => 'X'); -- channel
command_startofpacket : in std_logic := 'X'; -- startofpacket
command_endofpacket : in std_logic := 'X'; -- endofpacket
command_ready : out std_logic; -- ready
reset_sink_reset_n : in std_logic := 'X'; -- reset_n
response_valid : out std_logic; -- valid
response_channel : out std_logic_vector(4 downto 0); -- channel
response_data : out std_logic_vector(11 downto 0); -- data
response_startofpacket : out std_logic; -- startofpacket
response_endofpacket : out std_logic -- endofpacket
);
end component myadc;
================================================
FILE: max10_adc_firmware/myadc/myadc.csv
================================================
# system info myadc on 2021.05.28.12:56:46
system_info:
name,value
DEVICE,10M08SAE144C8GES
DEVICE_FAMILY,MAX 10
GENERATION_ID,1622221001
#
#
# Files generated for myadc on 2021.05.28.12:56:46
files:
filepath,kind,attributes,module,is_top
simulation/myadc.v,VERILOG,,myadc,true
simulation/submodules/myadc_modular_adc_0.v,VERILOG,,myadc_modular_adc_0,false
simulation/submodules/altera_modular_adc_control.v,VERILOG,,altera_modular_adc_control,false
simulation/submodules/altera_modular_adc_control_avrg_fifo.v,VERILOG,,altera_modular_adc_control,false
simulation/submodules/altera_modular_adc_control_fsm.v,VERILOG,,altera_modular_adc_control,false
simulation/submodules/chsel_code_converter_sw_to_hw.v,VERILOG,,altera_modular_adc_control,false
simulation/submodules/fiftyfivenm_adcblock_primitive_wrapper.v,VERILOG,,altera_modular_adc_control,false
simulation/submodules/fiftyfivenm_adcblock_top_wrapper.v,VERILOG,,altera_modular_adc_control,false
#
# Map from instance-path to kind of module
instances:
instancePath,module
myadc.modular_adc_0,myadc_modular_adc_0
myadc.modular_adc_0.control_internal,altera_modular_adc_control
================================================
FILE: max10_adc_firmware/myadc/myadc.html
================================================
datasheet for myadc
2021.05.28.12:56:54
Datasheet
Overview
Memory Map
modular_adc_0 altera_modular_adc v18.0
Parameters
CORE_VAR
3
ENABLE_DEBUG
0
MONITOR_COUNT_WIDTH
12
CLOCK_FREQ
0
FAMILY
MAX10FPGA
DEVICE_PART
10M08SAE144C8GES
device_partname_fivechar_prefix
10M08
device_adc_type
22
max_adc_count_on_die
1
adc_count_on_device
1
device_power_supply_type
1
ip_is_for_which_adc
1
is_this_first_or_second_adc
1
analog_input_pin_mask
0
hard_pwd
0
sample_rate
0
clkdiv
2
derived_clkdiv
2
tsclkdiv
1
tsclksel
1
refsel
1
external_vref
2.5
int_vref_vr
3.3
int_vref_nonvr
2.5
reference_voltage
3.3
reference_voltage_sim
65536
prescalar
0
enable_usr_sim
0
use_tsd
true
en_tsd_max
false
tsd_max
125
en_tsd_min
false
tsd_min
0
use_ch0
true
en_thmax_ch0
false
thmax_ch0
0.0
en_thmin_ch0
false
thmin_ch0
0.0
simfilename_ch0
use_ch1
false
en_thmax_ch1
false
thmax_ch1
0.0
en_thmin_ch1
false
thmin_ch1
0.0
simfilename_ch1
use_ch2
false
en_thmax_ch2
false
thmax_ch2
0.0
en_thmin_ch2
false
thmin_ch2
0.0
simfilename_ch2
use_ch3
false
en_thmax_ch3
false
thmax_ch3
0.0
en_thmin_ch3
false
thmin_ch3
0.0
simfilename_ch3
use_ch4
false
en_thmax_ch4
false
thmax_ch4
0.0
en_thmin_ch4
false
thmin_ch4
0.0
simfilename_ch4
use_ch5
false
en_thmax_ch5
false
thmax_ch5
0.0
en_thmin_ch5
false
thmin_ch5
0.0
simfilename_ch5
use_ch6
false
en_thmax_ch6
false
thmax_ch6
0.0
en_thmin_ch6
false
thmin_ch6
0.0
simfilename_ch6
use_ch7
false
en_thmax_ch7
false
thmax_ch7
0.0
en_thmin_ch7
false
thmin_ch7
0.0
simfilename_ch7
use_ch8
false
prescaler_ch8
false
en_thmax_ch8
false
thmax_ch8
0.0
en_thmin_ch8
false
thmin_ch8
0.0
simfilename_ch8
use_ch9
false
en_thmax_ch9
false
thmax_ch9
0.0
en_thmin_ch9
false
thmin_ch9
0.0
simfilename_ch9
use_ch10
false
en_thmax_ch10
false
thmax_ch10
0.0
en_thmin_ch10
false
thmin_ch10
0.0
simfilename_ch10
use_ch11
false
en_thmax_ch11
false
thmax_ch11
0.0
en_thmin_ch11
false
thmin_ch11
0.0
simfilename_ch11
use_ch12
false
en_thmax_ch12
false
thmax_ch12
0.0
en_thmin_ch12
false
thmin_ch12
0.0
simfilename_ch12
use_ch13
false
en_thmax_ch13
false
thmax_ch13
0.0
en_thmin_ch13
false
thmin_ch13
0.0
simfilename_ch13
use_ch14
false
en_thmax_ch14
false
thmax_ch14
0.0
en_thmin_ch14
false
thmin_ch14
0.0
simfilename_ch14
use_ch15
false
en_thmax_ch15
false
thmax_ch15
0.0
en_thmin_ch15
false
thmin_ch15
0.0
simfilename_ch15
use_ch16
false
prescaler_ch16
false
en_thmax_ch16
false
thmax_ch16
0.0
en_thmin_ch16
false
thmin_ch16
0.0
simfilename_ch16
seq_order_length
2
seq_order_slot_1
0
seq_order_slot_2
17
seq_order_slot_3
17
seq_order_slot_4
30
seq_order_slot_5
30
seq_order_slot_6
30
seq_order_slot_7
30
seq_order_slot_8
30
seq_order_slot_9
30
seq_order_slot_10
30
seq_order_slot_11
30
seq_order_slot_12
30
seq_order_slot_13
30
seq_order_slot_14
30
seq_order_slot_15
30
seq_order_slot_16
30
seq_order_slot_17
30
seq_order_slot_18
30
seq_order_slot_19
30
seq_order_slot_20
30
seq_order_slot_21
30
seq_order_slot_22
30
seq_order_slot_23
30
seq_order_slot_24
30
seq_order_slot_25
30
seq_order_slot_26
30
seq_order_slot_27
30
seq_order_slot_28
30
seq_order_slot_29
30
seq_order_slot_30
30
seq_order_slot_31
30
seq_order_slot_32
30
seq_order_slot_33
30
seq_order_slot_34
30
seq_order_slot_35
30
seq_order_slot_36
30
seq_order_slot_37
30
seq_order_slot_38
30
seq_order_slot_39
30
seq_order_slot_40
30
seq_order_slot_41
30
seq_order_slot_42
30
seq_order_slot_43
30
seq_order_slot_44
30
seq_order_slot_45
30
seq_order_slot_46
30
seq_order_slot_47
30
seq_order_slot_48
30
seq_order_slot_49
30
seq_order_slot_50
30
seq_order_slot_51
30
seq_order_slot_52
30
seq_order_slot_53
30
seq_order_slot_54
30
seq_order_slot_55
30
seq_order_slot_56
30
seq_order_slot_57
30
seq_order_slot_58
30
seq_order_slot_59
30
seq_order_slot_60
30
seq_order_slot_61
30
seq_order_slot_62
30
seq_order_slot_63
30
seq_order_slot_64
30
AUTO_DEVICE_SPEEDGRADE
8
deviceFamily
UNKNOWN
generateLegacySim
false
Software Assignments
CORE_VARIANT
3
DUAL_ADC_MODE
false
PRESCALER_CH16
0
PRESCALER_CH8
0
REFSEL
Internal VREF
USE_CH0
1
USE_CH1
0
USE_CH10
0
USE_CH11
0
USE_CH12
0
USE_CH13
0
USE_CH14
0
USE_CH15
0
USE_CH16
0
USE_CH2
0
USE_CH3
0
USE_CH4
0
USE_CH5
0
USE_CH6
0
USE_CH7
0
USE_CH8
0
USE_CH9
0
USE_TSD
1
VREF
3.3
generation took 0.00 seconds
rendering took 0.01 seconds
================================================
FILE: max10_adc_firmware/myadc/myadc.ppf
================================================
================================================
FILE: max10_adc_firmware/myadc/myadc.spd
================================================
================================================
FILE: max10_adc_firmware/myadc/myadc.xml
================================================
queue size: 0 starting:myadc "myadc"
Transform: CustomInstructionTransform
No custom instruction connections, skipping transform
1 modules, 0 connections]]>
Transform: MMTransform
Transform: InterruptMapperTransform
Transform: InterruptSyncTransform
Transform: InterruptFanoutTransform
Transform: AvalonStreamingTransform
Transform: ResetAdaptation
myadc" reuses altera_modular_adc "submodules/myadc_modular_adc_0 "]]>
queue size: 0 starting:altera_modular_adc "submodules/myadc_modular_adc_0"
Transform: CustomInstructionTransform
No custom instruction connections, skipping transform
3 modules, 3 connections]]>
Transform: MMTransform
Transform: InterruptMapperTransform
Transform: InterruptSyncTransform
Transform: InterruptFanoutTransform
Transform: AvalonStreamingTransform
Transform: ResetAdaptation
modular_adc_0" reuses altera_modular_adc_control "submodules/altera_modular_adc_control "]]>
myadc" instantiated altera_modular_adc "modular_adc_0 "]]>
queue size: 0 starting:altera_modular_adc_control "submodules/altera_modular_adc_control"
modular_adc_0" instantiated altera_modular_adc_control "control_internal "]]>
queue size: 0 starting:altera_modular_adc "submodules/myadc_modular_adc_0"
Transform: CustomInstructionTransform
No custom instruction connections, skipping transform
3 modules, 3 connections]]>
Transform: MMTransform
Transform: InterruptMapperTransform
Transform: InterruptSyncTransform
Transform: InterruptFanoutTransform
Transform: AvalonStreamingTransform
Transform: ResetAdaptation
modular_adc_0" reuses altera_modular_adc_control "submodules/altera_modular_adc_control "]]>
myadc" instantiated altera_modular_adc "modular_adc_0 "]]>
queue size: 0 starting:altera_modular_adc_control "submodules/altera_modular_adc_control"
modular_adc_0" instantiated altera_modular_adc_control "control_internal "]]>
queue size: 0 starting:altera_modular_adc_control "submodules/altera_modular_adc_control"
modular_adc_0" instantiated altera_modular_adc_control "control_internal "]]>
================================================
FILE: max10_adc_firmware/myadc/myadc_bb.v
================================================
module myadc (
adc_pll_clock_clk,
adc_pll_locked_export,
clock_clk,
command_valid,
command_channel,
command_startofpacket,
command_endofpacket,
command_ready,
reset_sink_reset_n,
response_valid,
response_channel,
response_data,
response_startofpacket,
response_endofpacket);
input adc_pll_clock_clk;
input adc_pll_locked_export;
input clock_clk;
input command_valid;
input [4:0] command_channel;
input command_startofpacket;
input command_endofpacket;
output command_ready;
input reset_sink_reset_n;
output response_valid;
output [4:0] response_channel;
output [11:0] response_data;
output response_startofpacket;
output response_endofpacket;
endmodule
================================================
FILE: max10_adc_firmware/myadc/myadc_generation.rpt
================================================
Info: Starting: Create simulation model
Info: qsys-generate C:\Users\haas\Downloads\Haasoscope\max10_adc_firmware\myadc.qsys --simulation=VERILOG --allow-mixed-language-simulation --output-directory=C:\Users\haas\Downloads\Haasoscope\max10_adc_firmware\myadc\simulation --family="MAX 10" --part=10M08SAE144C8GES
Progress: Loading max10_adc_firmware/myadc.qsys
Progress: Reading input file
Progress: Adding modular_adc_0 [altera_modular_adc 18.0]
Progress: Parameterizing module modular_adc_0
Progress: Building connections
Progress: Parameterizing connections
Progress: Validating
Progress: Done reading input file
Info: myadc: Generating myadc "myadc" for SIM_VERILOG
Info: modular_adc_0: "myadc" instantiated altera_modular_adc "modular_adc_0"
Info: control_internal: "modular_adc_0" instantiated altera_modular_adc_control "control_internal"
Info: myadc: Done "myadc" with 3 modules, 8 files
Info: qsys-generate succeeded.
Info: Finished: Create simulation model
Info: Starting: Create Modelsim Project.
Info: sim-script-gen --spd=C:\Users\haas\Downloads\Haasoscope\max10_adc_firmware\myadc\myadc.spd --output-directory=C:/Users/haas/Downloads/Haasoscope/max10_adc_firmware/myadc/simulation/ --use-relative-paths=true
Info: Doing: ip-make-simscript --spd=C:\Users\haas\Downloads\Haasoscope\max10_adc_firmware\myadc\myadc.spd --output-directory=C:/Users/haas/Downloads/Haasoscope/max10_adc_firmware/myadc/simulation/ --use-relative-paths=true
Info: Generating the following file(s) for MODELSIM simulator in C:/Users/haas/Downloads/Haasoscope/max10_adc_firmware/myadc/simulation/ directory:
Info: mentor/msim_setup.tcl
Info: Generating the following file(s) for VCS simulator in C:/Users/haas/Downloads/Haasoscope/max10_adc_firmware/myadc/simulation/ directory:
Info: synopsys/vcs/vcs_setup.sh
Info: Generating the following file(s) for VCSMX simulator in C:/Users/haas/Downloads/Haasoscope/max10_adc_firmware/myadc/simulation/ directory:
Info: synopsys/vcsmx/synopsys_sim.setup
Info: synopsys/vcsmx/vcsmx_setup.sh
Info: Generating the following file(s) for NCSIM simulator in C:/Users/haas/Downloads/Haasoscope/max10_adc_firmware/myadc/simulation/ directory:
Info: cadence/cds.lib
Info: cadence/hdl.var
Info: cadence/ncsim_setup.sh
Info: 2 .cds.lib files in cadence/cds_libs/ directory
Info: Generating the following file(s) for RIVIERA simulator in C:/Users/haas/Downloads/Haasoscope/max10_adc_firmware/myadc/simulation/ directory:
Info: aldec/rivierapro_setup.tcl
Info: For information on how to simulate your IP, see the explanatory comments in the simulator-specific subdirectories under C:/Users/haas/Downloads/Haasoscope/max10_adc_firmware/myadc/simulation/.
Info: Regenerate these scripts whenever you make any change to any Quartus-generated IP in your project.
Info: Finished: Create Modelsim Project.
Info: Starting: Create block symbol file (.bsf)
Info: qsys-generate C:\Users\haas\Downloads\Haasoscope\max10_adc_firmware\myadc.qsys --block-symbol-file --output-directory=C:\Users\haas\Downloads\Haasoscope\max10_adc_firmware\myadc --family="MAX 10" --part=10M08SAE144C8GES
Progress: Loading max10_adc_firmware/myadc.qsys
Progress: Reading input file
Progress: Adding modular_adc_0 [altera_modular_adc 18.0]
Progress: Parameterizing module modular_adc_0
Progress: Building connections
Progress: Parameterizing connections
Progress: Validating
Progress: Done reading input file
Info: qsys-generate succeeded.
Info: Finished: Create block symbol file (.bsf)
Info:
Info: Starting: Create HDL design files for synthesis
Info: qsys-generate C:\Users\haas\Downloads\Haasoscope\max10_adc_firmware\myadc.qsys --synthesis=VERILOG --output-directory=C:\Users\haas\Downloads\Haasoscope\max10_adc_firmware\myadc\synthesis --family="MAX 10" --part=10M08SAE144C8GES
Progress: Loading max10_adc_firmware/myadc.qsys
Progress: Reading input file
Progress: Adding modular_adc_0 [altera_modular_adc 18.0]
Progress: Parameterizing module modular_adc_0
Progress: Building connections
Progress: Parameterizing connections
Progress: Validating
Progress: Done reading input file
Info: myadc: Generating myadc "myadc" for QUARTUS_SYNTH
Info: modular_adc_0: "myadc" instantiated altera_modular_adc "modular_adc_0"
Info: control_internal: "modular_adc_0" instantiated altera_modular_adc_control "control_internal"
Info: myadc: Done "myadc" with 3 modules, 9 files
Info: qsys-generate succeeded.
Info: Finished: Create HDL design files for synthesis
================================================
FILE: max10_adc_firmware/myadc/myadc_generation_previous.rpt
================================================
Info: Starting: Create block symbol file (.bsf)
Info: qsys-generate C:\Users\ahaas\Dropbox\documents\FPGA\QuartusII\serial_vga_pong_max10_adc_tdc\myadc.qsys --block-symbol-file --output-directory=C:\Users\ahaas\Dropbox\documents\FPGA\QuartusII\serial_vga_pong_max10_adc_tdc\myadc --family="MAX 10" --part=10M08SAE144C8GES
Progress: Loading serial_vga_pong_max10_adc_tdc/myadc.qsys
Progress: Reading input file
Progress: Adding modular_adc_0 [altera_modular_adc 15.0]
Progress: Parameterizing module modular_adc_0
Progress: Building connections
Progress: Parameterizing connections
Progress: Validating
Progress: Done reading input file
Info: ip-generate succeeded.
Info: Finished: Create block symbol file (.bsf)
Info:
Info: Starting: Create HDL design files for synthesis
Info: qsys-generate C:\Users\ahaas\Dropbox\documents\FPGA\QuartusII\serial_vga_pong_max10_adc_tdc\myadc.qsys --synthesis=VERILOG --output-directory=C:\Users\ahaas\Dropbox\documents\FPGA\QuartusII\serial_vga_pong_max10_adc_tdc\myadc\synthesis --family="MAX 10" --part=10M08SAE144C8GES
Progress: Loading serial_vga_pong_max10_adc_tdc/myadc.qsys
Progress: Reading input file
Progress: Adding modular_adc_0 [altera_modular_adc 15.0]
Progress: Parameterizing module modular_adc_0
Progress: Building connections
Progress: Parameterizing connections
Progress: Validating
Progress: Done reading input file
Info: myadc: Generating myadc "myadc" for QUARTUS_SYNTH
Info: modular_adc_0: "myadc" instantiated altera_modular_adc "modular_adc_0"
Info: control_internal: "modular_adc_0" instantiated altera_modular_adc_control "control_internal"
Info: myadc: Done "myadc" with 3 modules, 9 files
Info: ip-generate succeeded.
Info: Finished: Create HDL design files for synthesis
================================================
FILE: max10_adc_firmware/myadc/myadc_inst.v
================================================
myadc u0 (
.adc_pll_clock_clk (), // adc_pll_clock.clk
.adc_pll_locked_export (), // adc_pll_locked.export
.clock_clk (), // clock.clk
.command_valid (), // command.valid
.command_channel (), // .channel
.command_startofpacket (), // .startofpacket
.command_endofpacket (), // .endofpacket
.command_ready (), // .ready
.reset_sink_reset_n (), // reset_sink.reset_n
.response_valid (), // response.valid
.response_channel (), // .channel
.response_data (), // .data
.response_startofpacket (), // .startofpacket
.response_endofpacket () // .endofpacket
);
================================================
FILE: max10_adc_firmware/myadc/myadc_inst.vhd
================================================
component myadc is
port (
adc_pll_clock_clk : in std_logic := 'X'; -- clk
adc_pll_locked_export : in std_logic := 'X'; -- export
clock_clk : in std_logic := 'X'; -- clk
command_valid : in std_logic := 'X'; -- valid
command_channel : in std_logic_vector(4 downto 0) := (others => 'X'); -- channel
command_startofpacket : in std_logic := 'X'; -- startofpacket
command_endofpacket : in std_logic := 'X'; -- endofpacket
command_ready : out std_logic; -- ready
reset_sink_reset_n : in std_logic := 'X'; -- reset_n
response_valid : out std_logic; -- valid
response_channel : out std_logic_vector(4 downto 0); -- channel
response_data : out std_logic_vector(11 downto 0); -- data
response_startofpacket : out std_logic; -- startofpacket
response_endofpacket : out std_logic -- endofpacket
);
end component myadc;
u0 : component myadc
port map (
adc_pll_clock_clk => CONNECTED_TO_adc_pll_clock_clk, -- adc_pll_clock.clk
adc_pll_locked_export => CONNECTED_TO_adc_pll_locked_export, -- adc_pll_locked.export
clock_clk => CONNECTED_TO_clock_clk, -- clock.clk
command_valid => CONNECTED_TO_command_valid, -- command.valid
command_channel => CONNECTED_TO_command_channel, -- .channel
command_startofpacket => CONNECTED_TO_command_startofpacket, -- .startofpacket
command_endofpacket => CONNECTED_TO_command_endofpacket, -- .endofpacket
command_ready => CONNECTED_TO_command_ready, -- .ready
reset_sink_reset_n => CONNECTED_TO_reset_sink_reset_n, -- reset_sink.reset_n
response_valid => CONNECTED_TO_response_valid, -- response.valid
response_channel => CONNECTED_TO_response_channel, -- .channel
response_data => CONNECTED_TO_response_data, -- .data
response_startofpacket => CONNECTED_TO_response_startofpacket, -- .startofpacket
response_endofpacket => CONNECTED_TO_response_endofpacket -- .endofpacket
);
================================================
FILE: max10_adc_firmware/myadc/simulation/aldec/rivierapro_setup.tcl
================================================
# (C) 2001-2021 Altera Corporation. All rights reserved.
# Your use of Altera Corporation's design tools, logic functions and
# other software and tools, and its AMPP partner logic functions, and
# any output files any of the foregoing (including device programming
# or simulation files), and any associated documentation or information
# are expressly subject to the terms and conditions of the Altera
# Program License Subscription Agreement, Altera MegaCore Function
# License Agreement, or other applicable license agreement, including,
# without limitation, that your use is for the sole purpose of
# programming logic devices manufactured by Altera and sold by Altera
# or its authorized distributors. Please refer to the applicable
# agreement for further details.
# ACDS 18.0 614 win32 2021.05.28.12:56:47
# ----------------------------------------
# Auto-generated simulation script rivierapro_setup.tcl
# ----------------------------------------
# This script provides commands to simulate the following IP detected in
# your Quartus project:
# myadc
#
# Altera recommends that you source this Quartus-generated IP simulation
# script from your own customized top-level script, and avoid editing this
# generated script.
#
# To write a top-level script that compiles Altera simulation libraries and
# the Quartus-generated IP in your project, along with your design and
# testbench files, copy the text from the TOP-LEVEL TEMPLATE section below
# into a new file, e.g. named "aldec.do", and modify the text as directed.
#
# ----------------------------------------
# # TOP-LEVEL TEMPLATE - BEGIN
# #
# # QSYS_SIMDIR is used in the Quartus-generated IP simulation script to
# # construct paths to the files required to simulate the IP in your Quartus
# # project. By default, the IP script assumes that you are launching the
# # simulator from the IP script location. If launching from another
# # location, set QSYS_SIMDIR to the output directory you specified when you
# # generated the IP script, relative to the directory from which you launch
# # the simulator.
# #
# set QSYS_SIMDIR