The Smell of Molten Projects in the Morning

Ed Nisley's Blog: Shop notes, electronics, firmware, machinery, 3D printing, laser cuttery, and curiosities. Contents: 100% human thinking, 0% AI slop.

Category: Machine Shop

Mechanical widgetry

  • Monthly Image: CD Diffraction

    Just to see how it worked, I engraved the Tek Circuit Computer scales on scrap CDs:

    CNC 3018-Pro - front overview
    CNC 3018-Pro – front overview

    At first, I hadn’t correctly scaled the text paths, but the diffraction patterns caught my eye:

    Tek CC on CD - bottom - unscaled text
    Tek CC on CD – bottom – unscaled text

    The illumination comes from two “daylight” T8 LED tubes in a shoplight fixture, running left-to-right, so it seems I held the camera rotated 1/4 turn in landscape mode. The pix look OK either way.

    Bottom deck:

    Tek CC on CD - bottom
    Tek CC on CD – bottom

    Middle deck:

    Tek CC on CD - middle
    Tek CC on CD – middle

    Top deck, with the camera held portrait-style:

    Tek CC on CD - top
    Tek CC on CD – top

    I’m a sucker for diffraction patterns …

    The tiny engravings don’t photograph well, because they’re floating atop the transparent disc and the rainbow patterns from the data layer, but they still come out OK even when scaled to fit on a hard drive platter:

    Tek CC - bottom deck - scaled to HD platter
    Tek CC – bottom deck – scaled to HD platter

    Looking good!

  • eBay Drop-Ship Addressing

    So I bought some LM12UU linear bearings from a nominally US-based eBay seller and received a suitably marked bag:

    eBay - LM8UU bearings in LM12UU bag
    eBay – LM8UU bearings in LM12UU bag

    They looked a bit on the skinny side:

    eBay - LM8UU bearing
    eBay – LM8UU bearing

    It seems somebody in the supply chain wasn’t paying attention, which isn’t surprising given the its ability to deliver ten hunks of reasonably precise machining to my mailbox for a buck-and-a-half apiece.

    As it happens, I already have far too many LM8UU bearings and, after some unavailing back-and-forth with the seller, eBay customer service determined neither of us was “at fault” and refunded the whole order.

    Being in no particular hurry, I ordered the next lot from halfway around the planet. Apparently, I’m now known throughout the land:

    eBay - drop-ship addressing
    eBay – drop-ship addressing

    Another label atop that one sported my actual address, with a matching Orange Connex tracking number barcode. Turns out OC is a “a joint venture between a leader in Chinese private equity investment, CITI CPE, and the a [sic] pioneer of global e-commerce platform, ebay”.

    AFAICT, containers of “direct from China” packages arrive in the belly of a cargo airplane, get a sticker with their final destination, and enter the US postal system. It’s not clear buying from a “US seller” changes anything, as many of those packages come from addresses matching a building next to an airport.

  • Mini-Lathe, Maxi-OD

    This came about while tinkering up a shade for a repurposed LED downlight:

    PVC fitting - boring setup
    PVC fitting – boring setup

    It’s a 4 inch DWV pipe coupling I bored out to fit the LED housing, which was ever so slightly larger than the pipe OD.

    Cutting it off required as much workspace as the poor little lathe had:

    PVC fitting - cutoff setup
    PVC fitting – cutoff setup

    Ignore the toolpost handle across the top. What’s important: the cutoff blade poking out of the QCTP, above the orange carriage stop lock lever, extending just far enough to cut through the coupling’s wall before the compound hits the coupling. The compound slide is all the way out against the cross-slide DRO, rotated at the only angle putting the tool where it needs to be and clearing the end of the coupling.

    It ended reasonably well:

    PVC fitting - LED floor lamp
    PVC fitting – LED floor lamp

    But, in retrospect, was hideously bad practice. Next time, I’ll make a fixture to hold the fitting on a faceplate.

  • MPCNC Drag Knife Holder: Showing More Blade

    Attempting to cut laminated cardstock decks for the Homage Tektronix Circuit Computer required a bit more blade extension than my LM12UU holder made available:

    Drag Knife - LM12UU ground shaft - assembled
    Drag Knife – LM12UU ground shaft – assembled

    Shortening the 12 mm shaft wasn’t going to happen, so I knocked a little bit off the blade holder to give the knurled lock ring slightly more travel:

    Drag Knife Holder - shortening stop
    Drag Knife Holder – shortening stop

    The lathe cutoff blade is a bit to the right of the new cut, but you get the general idea: not a whole lot of clearance in there.

  • Mini-Lathe DRO Battery Life

    The Mini-Lathe DROs eat a 390 alkaline coin cell a year, more or less:

    Mini-Lathe DRO - battery life
    Mini-Lathe DRO – battery life

    The other DRO’s cell was 10 mV higher, so it might have survived another few weeks. I’ll call it a year, as the OEM cells failed half a year after I got the thing and these are the second set.

    The last time I did this, I wedged a thin foam sheet below the display PCB to put a bit more pressure on the (+) contact tab sticking down from the middle of the plate:

    Mini-Lathe DRO - battery compartment
    Mini-Lathe DRO – battery compartment

    The (-) contact is a pad on the PCB below the battery compartment. The glaring metal reflector is part of the curved cell retainer.

    I still wish the DROs didn’t collide with the compound slide, but you can get used to anything if you do it long enough.

  • Tek Circuit Computer: Drag Knife Deck Cutting

    Creating a paper version of the Tektronix Circuit Computer requires nothing more than a drag knife to cut the deck outlines:

    Tek Circuit Computer - cursor hairline
    Tek Circuit Computer – cursor hairline

    The middle deck is a disk with a notch exposing the FL scale, a cutout window exposing the inductive time constant / risetime scale, and a wee circle for the Chicago screw in the middle:

    Tek CC - middle deck outline
    Tek CC – middle deck outline

    Three angles define the notch:

      FLNotchArc = 85deg;                   // width exposing FL scale
      FLRampArc = 7deg;                     // … width of entry & exit ramps
      FLNotchOffset = 2deg;                 // … start angle from 0°

    Given those, along with the deck radius and notch height (equals the underlying scale height), calculate four points defining the start and end of the ramps and connect the dots:

      local a0 = FLNotchOffset;
      local p0 = DeckRad * [cos(a0),sin(a0),-];
    
      local a1 = a0 + FLNotchArc;
      local p1 = DeckRad * [cos(a1),sin(a1),-];
    
      goto(p0);
      move([-,-,KnifeZ]);
      arc_cw(p1,-DeckRad);          // largest arc
    
      local r = DeckRad - ScaleHeight;
      local a3 = a1 - FLRampArc;
      local p3 = r * [cos(a3),sin(a3),-];
    
      local a4 = a0 + FLRampArc;
      local p4 = r * [cos(a4),sin(a4),-];
    
      move(p3);
      arc_cw(p4,r);                 // smallest arc
    
      move(p0);                     // end of notch
    
      arc_cw([DeckRad,0,-],DeckRad);      // round off corner

    The arc_cw() functions draw arcs, as you’d expect, with a positive radius tracing the shortest arc and a negative radius for the longest arc. Although I know how that works, I must still preview the result to verify the G-Code does what I want, not what I said.

    The unhappy result of a wrong sign:

    Tek CC - middle deck outline - wrong arc sign
    Tek CC – middle deck outline – wrong arc sign

    GCMC uses the (signed) radius to generate the XY coordinates and IJ offsets for G2 commands in the preferred center format:

    G0 X88.846 Y3.103
    G1 Z-2.000
    G2 X4.653 Y88.778 I-88.846 J-3.103

    Cutting the window starts from its angular width and offset, which are hardcoded magic numbers from the Tek artifact, and proceeds similarly:

      local WindowArc = 39deg;
    
      local ac = -6 * ScaleArc;                  // center of window arc
      local r0 = DeckRad - ScaleHeight;         // outer
      local r1 = DeckRad - 2 * ScaleHeight;     // inner
    
      local aw = WindowArc - to_deg(atan(ScaleHeight,(r0 + r1)/2));    // window arc minus endcaps
    
      local p0 = r0 * [cos(ac + aw/2),sin(ac + aw/2),-];
      local p1 = r0 * [cos(ac - aw/2),sin(ac - aw/2),-];
      local p2 = r1 * [cos(ac - aw/2),sin(ac - aw/2),-];
      local p3 = r1 * [cos(ac + aw/2),sin(ac + aw/2),-];
    
      goto(p0);
      move([-,-,KnifeZ]);
    
      arc_cw(p1,r0);                          // smallest arc
      arc_cw(p2,ScaleHeight/2);               // half a circle
      arc_ccw(p3,r1);
      arc_cw(p0,ScaleHeight/2);

    Trust me on this: incorrect radius signs generate unrecognizable outlines. Which, of course, is why you preview the G-Code before actually cutting anything:

    Tek CC - MPCNC drag knife
    Tek CC – MPCNC drag knife

    A similar hunk of code cuts the top deck; the bottom deck is a simple circle.

    The workflow, such as it is:

    • Tape a sheet of paper (Index stock, Basis 110 = 10 mil = 0.25 mm) at the center of the 3018-ProXL platform
    • Plot (“engrave”) the scales with a pen
    • Affix paper to a Cricut sticky mat taped to the MPCNC platform
    • Touch off the origin at the middle
    • Drag-cut (“mill”) the outlines

    Less complex than it may appear, but the GCMC file now spits out two G-Code files per deck: one to engrave / draw the scales on the 3018 and another to mill / cut the outlines on the MPCNC.

  • American Standard Elite Kitchen Faucet: Spout Bearing Improvement

    Removing the failed hot limit stop ring from the kitchen faucet reminded me of a fix I’d done a few months ago. The faucet spout eats the O-rings sealing it to the column rising out of the sink, as evidence by the far-too-many replacements I’ve installed over the years.

    The O-ring replacement kit includes a pair of nylon (?) split rings which should provide bearing surfaces for the spout, but the upper ring sits in a groove putting its OD almost flush with the column:

    Faucet column
    Faucet column

    This may be tolerance creep or just a design screwup, but the spout squashes the O-ring much more than (IMO) it should and wears it out entirely too soon.

    This time around, I cut a strip of 0.4 mm thick polypropylene (from the Big Box o’ Clamshell Packages) long enough to wrap around the column and narrow enough to fit inside the groove, with the split ring holding it in place. The strip expands the ring’s OD to just barely fit inside the spout, so the spout now bears mostly on the ring, not the O-ring.

    Despite measuring the groove OD and the spout ID, I had to cut-and-try several strips to find the proper thickness. Your mileage will certainly differ.

    The spout now turns smoothly and freely, without leakage. We’ll see whether the new O-rings last longer than before.