Louis Rossmann tored a fake Hakko soldering station down and was stunned to see the IC leads not trimmed, a clear sign of lousy manufacturing.
I noticed the long pins of through-hole a crystal oscillator on a 54810-66501 acquisition board, coming from a well-made Agilent/HP 54810A/54815A/54820A/54825A oscilloscope (I know people complained about these oscilloscopes, but most of the failures is in the computer section, not on the acquisition board side. I know the computer section very well, so no problem for me.)
I have a few worn attenuators and one that I received that was fried by high voltage and I tried to swap the relays. Turns out it’s not really about swapping the coil, but a near impossible precision task if you want to swap the entire block without opening up the contacts and magnet gliders. If you desolder the coil pins, you can release them and expose the inner workings:
Usually the relay coil is not the problem. It’s either the magnetic shuttle (the black stuff between the two coils) that’s not moving smoothly or the contact metal spring does not naturally bend to make good contact anymore. I fixed the first one with WD-40 (the magnet glides on a custom plastic rail), so some vertical divisions that used to be capacitively coupled (i.e. there’s an air gap instead of good electrical contact) were fixed, but it still won’t pass calibration because of the worn metal spring. Here is what the spring(s) looks like:
Spring (top)
Spring (side)
Spring (bottom)
To put the motor coils back, I slightly pushed it down to the board while guiding the shuttle (that has a tiny piece of magnet in it) with a strong magnet outside the coil housing. It will fall in place easily.
Given how reasonable watronics (Bill Watry) is charging for the attenuators, it’s not worth the time, effort, and uncertainty trying to perform the surgery. He basically serves any HP/Agilent instruments that uses this attenuator hybrid that looks like this.
Bill Watry is a veteran of the 54500 series, which is the main consumer of this kind of hybrids. He’s the first person to talk to if you have any problem with HP 54500 series oscilloscopes. Please contact him directly rather than through eBay if you can, as eBay charges hefty fees (it eats up 13% of the transaction amount, not what he earned after costs).
54610B/54615B/54616B/54616C as well as first generation Infiniium uses this kind of attenuator too. I have everything needed to service 54615B/54616B/54616C except attenuators. If it boils down to attenuators, I don’t stock them and you’ll have to order it from Bill (I can do that on your behalf if I’m the one doing the repairs).
If you have an HP Infinium or Agilent Infiniium and your situation likely involves the computer section, I should be the first person to talk to, since I got nearly all the nasty quirks down over the last decade so you don’t have to spend months navigating through this minefield. The learning curve is really steep if anybody tries to figure it out on their own for the first time.
EDIT: Due to bloody competition amongst a few business un-savvy players that under-priced 500Mhz range scopes for the last few years, Bill Watry was squeezed out so bad that he closed his HP (Pre-Agilent) digital oscilloscopes sale/service business. I’m really sorry to see him go because I already moved out of it long ago and just passively selling the leftovers.
Despite I have the expertise, I’m reluctant to service these models given how little people are willing to pay. I actually passed a bunch of folk-knowledge about these scopes that I figured out to him hoping he’ll continue the legend and save the scopes from landfills. Too bad.
If you are desperate and are willing to pay at least $500, I can consider helping given that Bill Watry is no longer available. If it happens to be a tiny part that I have in the storage bin that doesn’t require work, you can have it for less. It might still be worthwhile to fix if you have 1Ghz or above (54835A/54845A/54846A), but not the 500Mhz models.
I recently bought a 1lb grab-bag of logic analyzer grabbers, predominantly Agilent grabbers. There are HP, Tektronix, EZ-Hook, ZeroPlus, Rigol and Hantek as well, plus a few random pieces like ground leads and micro-test (hook) clips.
The EZ-Hook grabbers looks very suspiciously identical to Agilent/HP grabbers, so I looked it up to see if there are rumors about EZ-Hook OEM-ing for them. In the process, I found this very useful website that tells you almost everything you can find about logic grabbers produced:
Back in the days, we use “net send” to display dialog boxes (I used it to chat with my friend after we dial up to the other’s computer).
Since Windows XP, there’s a more intuitive tool to do the same. It’s convenient if you want to add GUI interactions so that the user won’t ignore the text on the command prompt screen:
Over the last decade I was wondering if I did something wrong or my computer was infected by some rootkit that some random installation files shows up in the root folder.
Turns out it’s a stupid bug (didn’t expect something this low from Microsoft) that it unpacks temporary files of Visual C++ 2008 redistributables to whatever’s that’s largest storage space’s ROOT folder!
It’s fixed in SP1, but some old programs distributing the first revision will crap all over the root folder of seemingly random drives (actually, it’s the one with the most free space). Nasty!
I made a batch file to clean it up. It’s not robust or up to any good programming standards (should have checked the hash signature before deleting if I was paid to write that, but I wasn’t). This batch file accepts an input like where the drive letter was littered (like E:\), or without input arguments, it will just pick the root folder of the current location.
@ECHO OFF
echo.Clean up Visual C++ 2008 temporary files (due to a bug)
set "old_dir=%cd%"
if "%~1" == "" goto Main
cd /d %1
:Main
REM must be a root folder of some drive
cd /
REM Display current drive
echo.%cd:~0,1% drive is going to be cleaned. Press Ctrl+C now to abort now or any other key to continue.
pause
del install.exe
del install.res.1028.dll
del install.res.1031.dll
del install.res.1033.dll
del install.res.1036.dll
del install.res.1040.dll
del install.res.1041.dll
del install.res.1042.dll
del install.res.2052.dll
del install.res.3082.dll
del vcredist.bmp
del globdata.ini
del install.ini
del eula.1028.txt
del eula.1031.txt
del eula.1033.txt
del eula.1036.txt
del eula.1040.txt
del eula.1041.txt
del eula.1042.txt
del eula.2052.txt
del eula.3082.txt
del VC_RED.MSI
del VC_RED.cab
echo.Done
cd /d %old_dir%
No warranty or support of any sort if you use it. That’s why I wouldn’t even make it downloadable. Just copy and paste it to a batch file yourself, and keep in mind that you are on your own.