Welcome to the Industrial Automation website!

NameDescriptionContent
XING-Automation
E-mail  
Password  
  
Forgot password?
  Register
当前位置:

YASKAWA DX200 Feature Pack Complete Guide

F: | Au:FANS | DA:2026-05-19 | 742 Br: | 🔊 点击朗读正文 ❚❚ | Share:

YASKAWA DX200 Feature Pack Complete Guide

Introduction: Why is the DX200 software package the core of robot systems?

The YASKAWA DX200 controller is a backbone force in the field of industrial robots, and its openness and modular software design enable it to adapt to various complex applications from arc welding, handling, spraying to precision assembly. However, many engineers only use the basic motion commands of the controller, ignoring its built-in powerful single functions and packages. These feature packages - from multitasking independent control to sensor based real-time path correction - can significantly improve production efficiency, simplify programming, and reduce downtime risks.

This article will take the perspective of engineering practice to systematically review the key software functions of the DX200 controller, and provide troubleshooting and optimization suggestions based on typical application scenarios. Whether you are a system integrator, production line maintenance engineer, or robot programmer, you can find ways to improve equipment utilization.


Communication and Data Management: Connecting Robots with the External World

2.1 Standard Interface and Protocol Selection

DX200 comes standard with Ethernet (RJ-45, 10/100 Mbps) and RS-232C interface. When communicating with external devices (PLC, vision system, upper computer), it is necessary to choose the appropriate protocol based on real-time performance and data volume:

High Speed Ethernet Server (SAP 164062): Based on UDP, it is currently recommended as a "general-purpose" protocol that can read robot position, alarm status, servo status, control start/stop/servo power on, read and write variables, I/O, and files. Compared to traditional BSC or EServer, it is faster and supports multiple clients.

Ethernet Server (164063): Based on TCP/IP, similar in functionality to BSC, supports multiple clients, and is suitable for use with MotoCom SDK.

FTP Server/Client (164060): Used for batch uploading/downloading of job files, parameters, and system files, and can achieve single file backup. Note that client and server modes cannot be used simultaneously.

MotoLogix (176052): Revolutionary PLC controlled robot interface. Simplify the robot into a motion actuator, with all logic written in functional blocks in the PLC, without the need to learn INFORM language. Supports up to 4 robots.

Troubleshooting prompt: If communication with the High Speed Ethernet Server is interrupted, first check the network cable connection and IP address settings (DX200 can be set through the teaching pendant by default). Use Wireshark to capture packets and confirm if the UDP port (default 10040) is blocked by the firewall. Additionally, running multiple communication tasks simultaneously may consume CPU resources, resulting in response delays.

2.2 Data Backup and Recovery: Avoiding Catastrophic Loss

DX200 provides a multi-layer backup mechanism:

Automatic Backup (163928): It can set periodic backup, backup during mode switching, backup during controller startup, or backup triggered by external signals. The backup targets include the teaching pendant CF card, controller internal CF card, or internal RAM area (accessible through High Speed EServer). Multiple backup files can be retained.

CMOS Save with FTP (163947): Enhanced feature for automatic backup, allowing any FTP client to access the generated CMOS backup file and send notification messages when a new backup is available.

Logging Function (163937): Record 200 data editing histories (job, ladder diagram, parameter, variable modification) and 200 teaching pendant operation histories (start, hold, emergency stop, external memory loading, etc.). It is extremely useful for investigating the question of 'who changed which position at what time'.

Typical scenario: A robot suddenly collides on a car parts welding line. By using the log function to retrieve the operation records of the previous 10 minutes, it was found that the operator manually modified the tool coordinate system file without exiting the automatic mode. By utilizing automatic backup, normal parameters were restored within 3 minutes.


Multi task and multi robot control: maximizing the utilization of a single controller

3.1 Independent Control (163902/163903)

The DX200 single controller can control up to 8 robots and multiple workstations (external axes). The independent control function allows multiple robots or robots to execute different programs simultaneously with the workstation.

The standard version supports decoding and executing 8 tasks simultaneously, while the advanced version can be extended to 16 tasks.

The button layout of the teaching pendant can be switched according to the main application (arc welding, handling, etc.) without interfering with each other.

The external shaft must use a YASKAWA motor.

Application case: A dual robot welding unit, where robot A welds workpieces and robot B simultaneously transports both unwelded and welded workpieces. Two tasks are completely parallel and do not wait for each other.

Attention: When controlling independently, it is necessary to pay attention to the interference of each robot's workspace. It is recommended to cooperate with the "Cube Region Interference Check" (163945) function to predefine prohibited entry areas to prevent collisions.

3.2 Coordinated Motion (163904)

Coordinated motion is divided into two modes:

Workstation coordination: The workstation (positioner) holds the workpiece, and the robot holds the tool. The two move in coordination to maintain the ideal posture of the tool relative to the workpiece.

Jigless system: The first robot holds the workpiece, and the second robot holds the welding gun, coordinating the two. The essence is the same as workstation coordination.

Coordinated Jobs require specialized teaching and support for coordinated interpolation (master-slave relative interpolation) and individual interpolation (independent operation).

Debugging suggestion: When enabling coordinated motion for the first time, it is necessary to manually verify whether the "master-slave tracking" direction is correct at low speed. Wrong coordination direction may result in collision between the workpiece and the welding gun. The "Master Tool User Frame" (163932) function can be used to define a user coordinate system based on the main tool, simplifying offset calculations.

Precise Motion and Path Correction: From Search to Servo Float

4.1 Search Function (163905&163927)

Standard search function: The robot moves in a straight line while monitoring sensor input signals. Stop immediately when the signal arrives and record the current position. Suitable for aligning the edges of workpieces, detecting in place, etc.

Continuous motion search (163927): Without stopping the robot, up to 50 sensor trigger positions can be detected in one motion (such as detecting the spacing between a row of workpieces on a conveyor belt). The NSRCHON instruction is used in the program to greatly simplify programming and shorten the pace.

Typical application: On a conveyor belt, the spacing between workpieces is inconsistent. The robot moves along the direction of the conveyor belt once, sequentially records the position of each workpiece and stores it in a position variable, and then processes them one by one.

4.2 Servo Float (163911/163912/167527/163913)

Under conventional position control, the robot will strive to maintain its position unchanged when external force is applied. The servo floating function allows the robot to adapt to external forces and achieve force control.

Link Servo Float: Independently control each axis of the robot. Suitable for situations where external force acts on a specific axis or the direction of the external force cannot be determined.

Linear Servo Float: Control in the direction of the coordinate axis of the coordinate system (base, user, tool). Suitable for known external force directions (such as pushing along the X direction).

Multi robot version: can be independently enabled for each robot.

Typical applications: precision assembly (bearing pressing), polishing (maintaining constant contact force), deburring.

Safety warning: When servo floating is enabled, the robot may move accidentally due to external forces. Be sure to set safety zone restrictions in the program and keep emergency stops available.

4.3 Real time path correction of sensors (Sensor Function, 163991/163992)

Real time correction of robot path and speed during playback operation using analog displacement sensors, torque sensors, etc. Up to 3 directions can be corrected.

Path correction: Sensors detect deformation or positional deviation of the workpiece, and the robot adjusts the trajectory in real time.

Speed correction: Automatically adjust the operating speed based on the processing progress (such as the amount of weld filling).

Offset value generation: calculates the distance to the target workpiece, which is used by subsequent instructions in the job.

Wiring reminder: In a multi robot system, sensor functions cannot be used for all robots simultaneously; It is necessary to determine in advance which robots will use sensors and configure universal files during the debugging phase.


Welding specific function package: from arc tracking to laser positioning

5.1 COMARC Arc Sensor (163982/163983)

Utilizing the constant voltage characteristics of gas metal arc welding (GMAW) - changes in welding current caused by changes in dry elongation. When the robot swings the welding gun, it compares the current difference on both sides of the swing and automatically corrects the horizontal deviation; Simultaneously correct the vertical deviation based on the preset current value.

Limitations: Only applicable for simple swing welding, does not support CMT or aluminum welding. In multi pass welding, the first weld seam can be compensated using arc sensing, and the corrected path can be recorded through "Memo Play" (163920), and subsequent weld seams can be directly reproduced.

5.2 MotoEye LT Laser Tracking (178267)

Connect the laser camera (located in front of the welding gun) via Fast Ethernet for real-time weld seam tracking and process parameter optimization. The software processes camera images and adaptively adjusts robot paths, speeds, and wire feeding speeds.

Pre configured macros make programming extremely simple.

Provide 40 files for individually adjusting tracking parameters.

Support starting point search, target point search, and adaptive welding.

The calibration of sensors and TCP is very simple.

Standard CIO program (digital/analog power control) is required. If process parameters need to be adjusted online, an analog output card (YEW) is needed.

Common problem: Communication interruption of laser camera. Firstly, check if the Ethernet cable is well shielded (strong interference from welding environment), confirm that the camera IP is on the same network segment as the controller, and use the PING command to test the connection. If the image quality is poor, clean the camera lens and protective lenses.

5.3 Welding Condition Guidelines and Monitoring

Welding Condition Guide (168316): Automatically calculates estimated values of current and voltage based on welding position and joint form, assisting beginners in quickly setting parameters. Note that actual welding adjustments are still required.

Graphical Arc Monitoring (163946): Samples welding data and displays it in graphics and numerical form on the teaching pendant. Trigger conditions can be set to automatically save the data to external storage. Only supports analog power supply and YASKAWA Weldcom interface.


Tools and Homework Management: Improving Programming Efficiency

6.1 Relative Job (163897)

The standard homework stores pulse data for each axis; Relative homework stores X, Y, and Z position data based on coordinate systems (base, user). By using the 'Relative Homework Offset' function, the same motion mode can be translated as a whole to different coordinate systems.

Practical scenario: A set of sealing and gluing trajectories was taught in the user coordinate system. When the workpiece position moves, only the user coordinate system needs to be redefined, and there is no need to re teach the trajectory.

6.2 Structured Language (163934)

The INFORM language extension of DX200 supports advanced programming structures:

IF-THEN-ELSEIF-ELSE-ENDIF

WHILE-ENDWHILE, FOR-NEXT

SWITCH-CASE-ENDSWITCH

These structures make the program more compact and easy to read, especially suitable for complex logic such as multi branch selection, loop waiting for multiple signals.

Example: Check the status of three sensors and execute different subroutines based on their combinations. Using SWITCH instead of multi-layer IF reduces code volume by 40%.

6.3 Macro Commands and Long Names (163926&176009)

Macro instructions allow users to encapsulate multiple INFORM instructions into a custom instruction, which can take parameters (obtained through GETARG). Support interrupt macros (perform cleanup tasks when a macro is paused).

The additional feature "Macro Name Extension to 16 Characters" (176009) solves the problem of standard macro names being up to 8 characters long and difficult to recognize, such as WeldPartA_In being much clearer than WPA-IN.

6.4 Online Editing Does Not Stop Production (Job Editing during Play, 163938)

While the robot is performing production tasks, it can simultaneously edit other tasks. Suitable for adjusting signal signals, working conditions, and other modifications without stopping the machine. Significantly reduce beat loss.

Risk warning: When editing online, be careful not to modify the currently executing job line, otherwise it may cause pointer confusion. Suggest editing on the copy first, testing for accuracy before covering.

Safety and Monitoring: The 'Second Eye' for Preventing Accidents

7.1 Arm Interference Check (163951&163945)

Cube area interference (163945): Define up to 8 cube areas, and when TCP or an arm enters these areas, trigger the system output signal "CUBE INTERFERENCE" or directly alarm and stop the machine. The tool shape (TOOL INTERFERE file) must be registered.

Cylinder approximation interference (163951): Approximate each axis arm and tool as a cylinder+two end spheres, and check if they intersect with each other. In a multi robot system, collisions between robots, robots and tools, and tools can be prevented. The cylindrical parameters of the arm are set at the factory, and users only need to set the tool shape (up to 5 cylinders/spheres).

Debugging technique: Use the "Pendant Oscilloscope" (163952) on the teaching pendant to monitor the speed and torque of each axis, while simulating the boundaries of the interference area. The oscilloscope function does not require external hardware and supports channel triggering, cursor measurement, scaling, and CSV data saving.

7.2 Password Protection (163941)

System administrators can register up to 100 user accounts, assign security levels and timeout settings. Account information can be stored as a USRINFO.DAT file. The alarm history will record the username logged in at that time, making it easier to trace responsibility.

Best practice: Set at least three permission levels - administrator (full access), programmer (can modify jobs and parameters), and operator (only start/stop and switch programs). In the production line, it is recommended to enable automatic cancellation to prevent unauthorized modifications.

7.3 STO (Servo Torque Off) (Integrated Function)

The independent control function of the servo power supply allows the servo power to be turned off by the control group unit without stopping the entire system. For example, in a multi robot unit, one robot's servo is turned off for maintenance, while the other robots continue production. This function achieves Performance Level d (PLd) and uses redundant safety signals.


Collection of common troubleshooting cases

Case 1: High Speed Ethernet Server connection frequently drops

Phenomenon: The upper computer reads the robot's position through UDP and updates it once per second, but there is no response after a few minutes.

Troubleshooting: Check if the network switch supports full duplex and try a direct connection test. Use Netstat - s to view UDP packet loss statistics. The packet loss rate was found to be as high as 5%.

Solution: Replace with an industrial grade switch, place the robot controller and upper computer in the same VLAN, and turn off unnecessary broadcast traffic. At the same time, add a heartbeat mechanism in the program to automatically resend the connection request if no response is received within 3 seconds.

Case 2: Occasional collision between two robots during independent control

Phenomenon: Robots A and B are running simultaneously, but occasionally collide in the common working area.

Troubleshooting: Check if the interference detection function is enabled. Although cube area interference was enabled, only TCP was checked and the upper arm was ignored.

Solution: Use the "Arm Interference Check" function to set cylindrical models for the upper and lower arms of two robots, and define the overlapping area as the interlock zone. Meanwhile, use the WAIT instruction in the homework to implement software interlocking based on shared registers.

Case 3: Arc tracking COMARC not corrected

Phenomenon: During the welding process, the robot swings but fails to correct the weld deviation.

Troubleshooting: Check if the welding power supply has constant voltage characteristics and if the current feedback signal is correctly connected to the controller input port. Confirm that the sensor parameters (such as swing amplitude, frequency, and correction gain) in the ARCSON instruction are set appropriately.

Solution: Adjust the "correction gain" from 0.5 to 1.2 and confirm that there is no fluctuation in the welding current baseline. If pulse welding is used, it may be necessary to reduce the pulse frequency to ensure stable current signal.

Case 4: Automatic backup files cannot be accessed through FTP

Phenomenon: The CMOS Save with FTP function is enabled, but the directory is empty after the FTP client connects.

Troubleshooting: Confirm that the Ethernet FTP function (164060) has been installed simultaneously and that the FTP server mode is activated (the controller can only be in either Client or Server mode). Check FTP user permissions.

Solution: Switch the FTP mode to Server in the controller settings and set the username and password (default is anonymous readable). Use FileZilla client to connect in active mode, with the path/CAMOSBACK UP.

Case 5: MotoLogix controls robot to remain stationary

Phenomenon: The PLC sends motion commands, but the robot does not respond, but the communication diagnosis shows normal.

Troubleshooting: Check if DX200 is in "remote mode" (with the teaching pendant key in the REMOTE position). Confirm that the MotoLogix Runtime has started (can be viewed in the system information). Monitor the Enable and Busy signals in the PLC function block.

Solution: The usual reason is that the robot is not in servo mode. In the PLC program, first call the MC-Power function block to enable the servo, and then send MC_SoveAbsolute. In addition, ensure that the fieldbus (ProfiNet/DeviceNet) mapping is correct and the I/O data length is consistent with the MotoLogix definition.


Performance optimization and programming best practices

Use System Job (163901) to handle background loop tasks. For example, continuously monitoring the collision detection status, and immediately alerting when in PLAY mode and collision detection is unexpectedly turned off. The system job runs automatically after the controller is started, independent of the operating mode and servo state.

Utilize Interrupt Job (163908) to quickly respond to external events. For example, when the safety light barrier is triggered, the current movement is interrupted and the evacuation procedure is immediately executed. Interrupting tasks can occur during motion and timer commands, minimizing response latency. Each robot can define up to 8 interrupt tasks.

Combining relative homework with user coordinate system: Write the welding trajectory as a relative homework and attach the origin of the user coordinate system to the reference point of the workpiece. When changing the workpiece type, only the new reference point is measured and the user coordinate system is redefined, and the original trajectory does not need to be re taught.

TCP function (163910) reduces duplicate teaching: If multiple tools (such as primer gun and topcoat gun) need to follow the same trajectory, first use tool A to teach the trajectory, and then insert the TCPON command in the job to switch to tool B. The trajectory will automatically switch without the need for re teaching.

Regular backup and version management: Use the automatic backup function to backup the entire system data to the FTP server every morning. At the same time, manually save a dated. cmos file after each major modification. It is recommended to keep a backup history of at least 30 days.

  • Atlas Copco PF3000-C-HW Tensor S4 S7 RBU Controller
  • Atlas Copco PPBE0613 24VAC Control Panel
  • Atlas Copco PF3000-C-HW Tensor S4 S7 Controller
  • Atlas Copco Neos ARC-D130-S+ Inverter Drive
  • Atlas Copco Power Focus SL PF4002-G-HW Controller
  • Atlas Copco 8436 6770 00 ILT Base Station
  • Atlas Copco 1900520400 Air Compressor Control Panel
  • Atlas Copco 1900-0711-51 Display Keypad Unit
  • Atlas Copco 1900-0710-52 Communication Control Board
  • Atlas Copco 1900-0701-04 Control Interface Module
  • Atlas Copco 8092 1143 40 SRTT Transducer 180Nm
  • Atlas Copco MT Focus 6000 Controller with Pump and Screwdriver
  • Atlas Copco Elektronikon GraphicPlus Controller PPBE0622 PPBE0633
  • Atlas Copco PF3109-G-DN-HW Tensor 8-9 Power Focus Nutrunner Control
  • Atlas Copco Elektronikon P1900520440 Touch Controller
  • Atlas Copco Power Focus 8 Controller 8436280002
  • Atlas Copco 8436 1500 03 FlexCarrier 3-Slot Torque System Component
  • Atlas Copco Power Focus 6000 PF6000 Industrial Controller
  • Atlas Copco TC-4000-P-PB-ES Power Macs Controller
  • Atlas Copco 8433-0015-20 8433001520 Cable Assembly
  • Atlas Copco 49X10301AB Pressure Transducer Sensor
  • Atlas Copco 8436180002 Replacement Filter Element
  • Atlas Copco C4700A01V216 Compressor Control Module
  • Alcatel-Lucent 3HE01019AAAA01 High-Speed Interface Module
  • Alcatel-Lucent 111381 Power Distribution Module
  • Alcatel TN 2523 1:1 CDN III Module – MRPQAE3
  • Alcatel-Lucent 3he06151aaac01 8-Port Interface Module – IPUIBKB3AA
  • Alcatel-Lucent LNW46 DMX Metro OC12 Interface Module – 108694878
  • Alcatel-Lucent 41A12C FT-2000 Optical Transponder Unit – 108188053
  • Alcatel-Lucent 8DG02607AA POW100 DC-DC Converter Module
  • Alcatel-Lucent LambdaXtreme WWBQ21 40G Optical Transponder
  • Alcatel-Lucent TN1891 5ESS Protocol Handler PHV5 Commcode 108747064
  • Alcatel-Lucent 300-0303-900 T1D3PDL1AE Digital Matrix Card
  • Alcatel-Lucent G-821M-A Module
  • Alcatel Lucent MPT-GC Eth 1G+ARM TX 81-86GHz 3DB80005AAAAO1
  • Nokia 3KC48990AB 1830PSS 16FAN2 Fan Unit
  • Alcatel 3EC17041AA PSPC-G4 PCB CP011200552
  • Alcatel 300-0437-906 Rev F DEXCS DMC T1D1L0S Module
  • Alcatel-Lucent 3DW03697ABBA01 TFD64A Module
  • Alcatel-Lucent AWR12 S1-1 UN Interface T3PQAC3AAA
  • ALCATEL LUCENT 9500-MPR ODU RADIO MPT-HC V2 9558HC 3DB20914BAAA03 6GHZ
  • Alcatel-Lucent 9500-MPR ODU 300 11GHz Microwave Radio MPT 3DB23035AEAA01
  • Alcatel 2C7-1005-000 Teflon Bell Jar Holder Ring – 146111
  • Alcatel-Lucent BNJ118 S1:4 Circuit Board – Interface Module
  • Alcatel-Lucent 9500-MPR ODU 300 6GHz Microwave Radio MPT 3DB23215AFAA01
  • Alcatel 3EM04001AA Signal Processing Unit with Accessory Cards
  • Alcatel VAUCAL5KAB AA1418FE2BG 3FE67437AAD02 Interface Card
  • Alcatel-Lucent 1642 Edge Multiplexer N1217P YF – Access Node
  • Alcatel-Lucent 3HE07158BA 7750 SR-12 12-Port 10GIGE MultiCore IMM IPUCA741AA
  • Alcatel 101200429000 Power Divider 746-776 MHz with Heatsinks
  • Alcatel-Lucent 9500-MPR ODU 300 MPT 6GHz 3DB23215ADAA01 High Power Radio
  • Alcatel-Lucent 9500-MPR MPT-HC 23GHz 2/2P ODU Radio 3DB20474BA
  • Alcatel-Lucent 9500-MPR ODU 300 MPT 6GHz 3DB23215AAAA01 Low Power Radio
  • Alcatel 3BA52126ABAA OmniPCX 4400 Compact Cabinet
  • Alcatel-Lucent 3HE12300AA 7750 SR-1 Subrack with Licenses
  • Alcatel 300-1368-903 Rev C DEXCS SPA-1 T1PQAC1 Line Card
  • Alcatel-Lucent 408977981 WOWUAB6HAA 10G XPR OTU2 XPonder Card
  • Alcatel-Lucent-Nokia 3HE08423AARC01 7750 SR Control Processor Module IPUCBGZ1AA
  • Alcatel-Lucent 9500-MPR ODU 300 MPT 6GHz 3DB23215ABAA01 Low Power Radio
  • Alcatel-Lucent CPU7-2 3BA23259ABJE 05 Control Processor Module
  • Alcatel WTM11AD 3DW03915DABA01 Optical Transponder Module
  • Alcatel-Lucent 1340FMPK Card Chip BA5IVY6BAA – Processor Module
  • Alcatel-Lucent 3HE06151ACAC01 Control Fabric Module
  • Alcatel-Lucent 9500-MPR 18GHz 1P-1 Protection ODU Radio 3DB20433BA AA04
  • Alcatel-Lucent 9500-MPR ODU MPT-HC 18GHz Radio 3DB20433BAAA04
  • Alcatel-Lucent SM269 LMPQ04KAXX Circuit Pack – Interface Module
  • Alcatel OME25HP Filter Cartridge – 107494
  • Alcatel-Lucent ALU-BZ74 99BC-4 –48V Battery Cabinet
  • Alcatel-Lucent WWAA37 Optical Amplifier WMAPZNZAAB – CP Series
  • ALCATEL LUCENT 9500-MPR ODU RADIO MPT-HC V2 9558HC MPT-XP 3DB20476BAAA04 23GHZ
  • Alcatel Tyco Yukon ES760A Rectifier
  • Alcatel-Lucent 9500-MPR ODU 300 MPT 23GHz 3DB23045HMAA02 Microwave Radio
  • Alcatel-Lucent 9500-MPR ODU MPT-HC 11GHz 3DB20548ACAA01 Microwave Radio
  • Alcatel Lucent 3DH03173AKAA Module
  • Alcatel-Lucent 76-0300-02 CSM-V2 PCB
  • Alcatel 9400 UX ODU Module 3CC06729ABAA
  • Alcatel-Lucent 408981363 Jigsaw A Band Block 24/-48V KS24624L58
  • Alcatel 3BA53095 PCB Card
  • Alcatel 2C7-1005-000 Bell Jar Holder Ring Teflon PC7-1005-000
  • Alcatel-Lucent ES640 PWDQAGKUAA 5ESS 48V DC Alarm Control Unit
  • Alcatel-Lucent 9500-MPR ODU 300 23GHz Microwave Radio MPT 3DB23045HM
  • Alcatel-Lucent KFA720 WMOTCMVLAB Optical System Interface Carrier
  • Alcatel-Lucent 9500-MPR ODU MPT-HC V2 15GHz Microwave Radio 3DB20373BAAB04
  • Alcatel-Lucent AKM70 S1-7 SMUX1 Sub-Multiplexer – T3PQWAEAAH
  • Alcatel-Lucent 107486490 DDM-2000 SONET DS3 Circuit Pack – BBG4B
  • Alcatel-Lucent SBEVM BNJ82 1:12 Module – AV950-01168
  • Alcatel-Lucent 938A Optical Loss Set – Test & Measurement Kit
  • Alcatel-Lucent MS1025-25O16-ED Fiber Optic Unit – 48VDC
  • Alcatel-Lucent 9500-MPR ODU MPT-HC 23GHz 1/1P Microwave Radio 3DB20473BA AA04
  • Alcatel-Lucent bCEM-U Control Module – 3BK28676ABAC01
  • Alcatel ASI20 Detector Control Module
  • Alcatel Lucent 130B S-1 PWPQ08B Power Unit
  • Alcatel-Lucent 9500-MPR ODU MPT-HC V2 9558HC 6GHz 3DB20441BBAA02
  • Alcatel-Lucent 9500-MPR ODU MPT-MC 15GHz 3DB20824AAAA02 Microwave Radio
  • Alcatel-Lucent 9500-MPR ODU MPT-MC 15GHz 3DB20822AAAB02 Microwave Radio
  • Alcatel-Lucent 3AL92111AA 1P10GSO Interface Module
  • Alcatel 8220 CTT 450 Turbo Pump Controller 127821
  • Alcatel-Lucent 3AL78823AAAE 02 Module
  • Alcatel-Lucent 90-0413-01 Universal Card
  • Alcatel-Lucent BRMA 10Base-T/100Base-TX Connecting Box 3BA56170ACAB010842
  • Woodward Micronet 5453-279 Rev E Chassis Rack for TMR Control
  • Alcatel-Lucent KFA632 WMOTBUKLAA 10G Optical Interface Carrier
  • Alcatel-Lucent 9500-MPR ODU MPT-HC V2 3DB20474BAAB04 23GHz Microwave Radio
  • Alcatel-Lucent KFA720 WMOTCMVLAB SFP/XFP Optical Interface Carrier
  • Alcatel-Lucent 3AL00114AB Universal Interface Module
  • Alcatel-Lucent BBG9 S1:1 OHCTL Optical Hardware Control Module
  • Alcatel-Lucent FB16401-A-I03 GTD-5 Analog Master/Slave Control Board
  • Alcatel-Lucent MCR1721B Control Module
  • Alcatel-Lucent 9500-MPR 3DB20547ACAA01 ODU MPT-HC 11GHz Microwave Radio
  • Alcatel-Lucent 3HE01014AAAA02 Interface Module
  • Alcatel-Lucent 244-2091-005 High Density Digital Line Card V1.5
  • Alcatel-Lucent LAMBDAXTREME WWAA36 Optical Amplifier Module
  • Alcatel-Lucent 9500-MPR ODU MPT-HC 6GHz 2P-2 Radio 3DB20444BAAA05
  • Alcatel-Lucent 9500-MPR ODU MPT-HC V2 9558HC MPT-XP 6GHz 3DB20442BBAA02
  • Alcatel-Lucent 9500-MPR ODU MPT-HC 23GHz 3DB20476ABAA01 Microwave Radio
  • Alcatel Lucent 3HE01019AAAA01 Module
  • Alcatel CPU5 3BA23071 PCB Card with IO2 3BA23050 Set
  • Alcatel-Lucent 9500-MPR ODU MPT-HC V2 9558HC 6GHz 3DB20443BBAA02
  • Alcatel Lucent 500-1113-211 Rev H Channel Bank Assembly
  • Alcatel Lucent 89-0419-B-2 BA9ATS0FAB Frontal Compute Module
  • Alcatel-Lucent LambdaXtreme 1625 WWAF31 Optical Amplifier CP Module
  • Alcatel Z24 3BA53065 Analog Extension Card 3BA52065 AAAA KAZZB-01
  • Alcatel 3EH08263AAXX000448 OmniPCX Office Large PBX System
  • Alcatel Lucent VSEM-C 3FE62453 XA VAUCAJZKAA 7330 DSLAM Line Card
  • Alcatel-Lucent 9500-MPR ODU MPT-HC 3DB20432BAAA04 18GHz Microwave Radio
  • Alcatel-Lucent 9500-MPR ODU MPT-HC 3DB20546ACAA01 11GHz Microwave Radio
  • Alcatel-Lucent 3DB04823AAAA Circuit Board
  • Alcatel-Lucent 3DB04530AAAA Circuit Board