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: Home Ec

Things around the home & hearth

  • RCA Alarm Clock: Recapping

    RCA Alarm Clock: Recapping

    A power failure apparently pushed the ancient RCA alarm clock over the edge into a mode where it ignored its pushbuttons and displayed a time based on a hitherto unknown exoplanet. Popping the case revealed it’s been simmering in its own juices for quite a while:

    RCA Alarm Clock - PCB overheat
    RCA Alarm Clock – PCB overheat

    There’s nothing obviously scorched on the underside of the PCB, although a large SMD resistor might be the source of the problem.

    Having been around this block a few times, I unsoldered that big electrolytic cap with its guts protruding from the overwrap:

    RCA Alarm Clock - failed cap value
    RCA Alarm Clock – failed cap value

    Nope, that’s not really an electrolytic cap any more.

    Lacking a 2200 µF cap of suitable voltage rating, but knowing cap tolerances allow for considerable windage, this worked out well enough:

    RCA Alarm Clock - replacement caps
    RCA Alarm Clock – replacement caps

    Two smaller caps measuring on the low side of OK now reside in the e-waste box.

    The white diffuser over the last digit improves it in ways I do not profess to understand, but am pleased to implement:

    RCA Alarm Clock - in place
    RCA Alarm Clock – in place

    It’s held in place by two strips of LSE tape to see how it reacts to prolonged shear force, no matter how gentle.

  • Shoulder PT Pulley: Last 10% Manufacturing

    Shoulder PT Pulley: Last 10% Manufacturing

    Mary’s PT requires a Shoulder Pulley, so I got one that seemed better constructed than the cheapest Amazon crap. In particular, this view suggested the pulley ran on a bearing:

    Slim Panda Shoulder Pulley - detail view
    Slim Panda Shoulder Pulley – detail view

    Which turned out to be the case, but, also as expected, the whole thing required a bit of finishing before being put in service.

    It’s intended to hang from a strap trapped between an interior door and its frame. The strap was intended to attach to the block (a.k.a. “Thickened base”) through a breathtakingly awkward pair of low-end carabiners:

    Slim Panda Shoulder Pulley - carabiners
    Slim Panda Shoulder Pulley – carabiners

    Which I immediately replaced with a simple, silent, sufficiently strong black nylon cable tie:

    Shoulder PT Pulley - block hardware
    Shoulder PT Pulley – block hardware

    Rather than let the metal block clunk against the door, it now sports a pair of cork-surfaced bumper plates:

    Shoulder PT Pulley - side plates installed
    Shoulder PT Pulley – side plates installed

    A doodle of the block dimensions:

    Shoulder Pulley - dimension doodle
    Shoulder Pulley – dimension doodle

    Which turned into a simple LightBurn layout:

    Shoulder PT Pulley Side Plates - LB layout
    Shoulder PT Pulley Side Plates – LB layout

    The blue construction lines represent the actual block & pulley, with the red cut lines offset 2 mm to the outside to ensure the metal stays within the bumpers. It’s possible to pick the block up and whack the pulley against the door, so don’t do that.

    Cut out two pieces of 3 mm MDF, two pieces from a cork coaster (covered with blue tape and cut with the paper backing up), peel-n-stick the cork to the MDF, put double-sided foam tape on the block, peel-n-stick the bumpers, then hang on the attic door.

    Now it works the way it should!

    The LightBurn SVG layout as a GitHub Gist:

    Loading
    Sorry, something went wrong. Reload?
    Sorry, we cannot display this file.
    Sorry, this file is invalid so it cannot be displayed.

  • Toilet Flush Valve Re-chaining

    Toilet Flush Valve Re-chaining

    I don’t think I flushed the pot any more vigorously than usual, but the plastic chain snapped off at the flush valve:

    Flush valve chain - broken plastic
    Flush valve chain – broken plastic

    Some rummaging in the Chain Locker produced a steel chain from a long-ago flush valve that snapped into place:

    Flush valve chain - steel
    Flush valve chain – steel

    Despite what you may think, I do not enjoy fiddling with this stuff, so I locked the link in place with a dab of hot melt glue:

    Flush valve chain - steel glued
    Flush valve chain – steel glued

    Having recently repaired the other pot in the house, perhaps they’ll stay fixed for a while. It could happen!

  • Tailor’s Clapper: CNC Pocketing

    Tailor’s Clapper: CNC Pocketing

    Separating the interior contour of the finger grip from its overall shape let me reduce the woodworking to a simple pocketing operation:

    Ironing Weight Finger Grip
    Ironing Weight Finger Grip

    Start by aligning the finished block to put the joint between the pieces parallel to the X axis, then touch off at the center:

    Ironing Weight - alignment
    Ironing Weight – alignment

    A pair of clamps screwed to the tooling plate act as fixtures to align the block when it’s flipped over to mill the other pocket.

    Just to see how it worked, I set up a GCMC program to produce a trochoidal milling pattern using the sample program:

    Tailors Clapper - Pocket Milling Path
    Tailors Clapper – Pocket Milling Path

    Now, most folks would say the Sherline lacks enough speed and stiffness for trochoidal milling:

    Ironing weight - trochoidal milling
    Ironing weight – trochoidal milling

    Aaaand I would agree with them: chugging along at 24 in/min = 600 mm/min doesn’t put the 10 k RPM spindle speed to good use. Fortunately, oak doesn’t require much in the way of machine stiffness and the trochoid path does ensure good chip clearance, so there’s that.

    If I had to do a lot of trochoid milling, I’d tweak the GCMC sample code to short-cut the return path across the circle diameter, rather than air-cut the last half of every circumference.

    The code starts by emptying a circular pocket so the trochoid path begins in clear air, rather than trenching into solid wood.

    Eventually it finishes the pocket:

    Ironing weight - grip pocket
    Ironing weight – grip pocket

    After the trochoid finishes, one climb-milling pass around the perimeter clears the little ripple between each trochoid orbit.

    Flip it over, clamp it down, touch off the middle, and do it all again.

    The next step is filling those pockets with a pair of comfy grips.

    The GCMC source code as a GitHub Gist:

    // Ironing weight pocketing
    // Ed Nisley KE4ZNU – 2023-01
    //—–
    // Library routines
    include("/opt/gcmc/example/cc_hole.inc.gcmc");
    include("varcs.inc.gcmc");
    include("tracepath_comp.inc.gcmc");
    include("trochoidal.inc.gcmc");
    /*
    include("tracepath.inc.gcmc");
    include("engrave.inc.gcmc");
    */
    //—–
    // Useful constants
    SafeZ = 10.0mm; // above all obstructions
    TravelZ = 2.0mm; // within engraving / milling area
    BlockHome = [0.0mm,0.0mm,TravelZ]; // Origin on surface at center of pocket
    FALSE = 0;
    TRUE = !FALSE;
    //—–
    // Overall values
    Socket = [160.0mm,25.0mm,7.0mm]; // raw grip recess into block
    RoundEnds = TRUE; // TRUE for smooth rounded endcaps
    SocketRadius = RoundEnds ? Socket.y/2 : 10.0mm;
    comment("SocketRadius: ",SocketRadius);
    CutterDia = 6.32mm – 0.15; // actual cutter diameter – windage
    MillStep = 0.25 * CutterDia; // stepover in XY plane
    comment("CutterDia: ",CutterDia," MillStep: ",MillStep);
    MillClean = MillStep/2;
    PlungeSpeed = 150.0mm; // cutter Z plunge into work
    MillSpeed = 600.0mm; // XY speed
    if (CutterDia > SocketRadius) {
    error("Cutter too large for corner radius");
    }
    CornerOC = head(Socket,2) – 2*[SocketRadius,SocketRadius];
    comment("CornerOC: ",CornerOC);
    Corners = RoundEnds ? // rear left CCW around slot
    {-CornerOC/2, CornerOC/2} :
    {[-CornerOC.x,CornerOC.y]/2, [-CornerOC.x,-CornerOC.y]/2, [CornerOC.x,-CornerOC.y]/2, CornerOC/2};
    comment("Corners: ", Corners);
    if (RoundEnds) {
    SlotPerimeter = {[0.0mm,Socket.y/2,-Socket.z]}; // entry point at center rear
    SlotPerimeter += {Corners[0] + [0.0mm,SocketRadius]};
    SlotPerimeter += varc_ccw([-SocketRadius,-SocketRadius],SocketRadius) + SlotPerimeter[-1];
    SlotPerimeter += varc_ccw([+SocketRadius,-SocketRadius],SocketRadius) + (Corners[0] + [-SocketRadius,0.0mm]);
    SlotPerimeter += {Corners[1] + [0.0mm,-SocketRadius]}; // across front
    SlotPerimeter += varc_ccw([+SocketRadius,+SocketRadius],SocketRadius) + SlotPerimeter[-1];
    SlotPerimeter += varc_ccw([-SocketRadius,+SocketRadius],SocketRadius) + (Corners[1] + [+SocketRadius,0.0mm]);
    }
    else {
    SlotPerimeter = {[0.0mm,Socket.y/2,-Socket.z]}; // entry point at center rear
    SlotPerimeter += {Corners[0] + [0.0mm,SocketRadius]};
    SlotPerimeter += varc_ccw([-SocketRadius,-SocketRadius],SocketRadius) + SlotPerimeter[-1];
    SlotPerimeter += {Corners[1] + [-SocketRadius,0.0mm]};
    SlotPerimeter += varc_ccw([+SocketRadius,-SocketRadius],SocketRadius) + SlotPerimeter[-1];
    SlotPerimeter += {Corners[2] + [0.0mm,-SocketRadius]}; // across front
    SlotPerimeter += varc_ccw([SocketRadius,SocketRadius],SocketRadius) + SlotPerimeter[-1];
    SlotPerimeter += {Corners[3] + [SocketRadius,0.0mm]};
    SlotPerimeter += varc_ccw([-SocketRadius,SocketRadius],SocketRadius) + SlotPerimeter[-1];
    }
    //— Begin cutting
    goto([-,-,TravelZ]);
    goto(BlockHome);
    if (!RoundEnds) { // clear corners outward of main pocket
    foreach(Corners; xy) {
    comment("Plunge corner at: ",xy);
    feedrate(PlungeSpeed);
    goto(xy);
    move([-,-,-Socket.z]);
    comment(" pocket");
    feedrate(MillSpeed);
    cc_hole(xy,(SocketRadius – MillClean),CutterDia/2,MillStep,-Socket.z);
    goto([-,-,TravelZ]);
    comment(" done!");
    }
    }
    comment("Open slot");
    TrochRadius = (Socket.y – CutterDia)/2 – MillClean;
    TrochPath = {[-(Socket.x/2 – TrochRadius – CutterDia/2 – MillStep),TrochRadius],
    [ (Socket.x/2 – TrochRadius – CutterDia/2 – MillStep),TrochRadius]};
    comment(" clear landing zone");
    xy = [TrochPath[0].x,0.0mm];
    feedrate(PlungeSpeed);
    goto(xy);
    move([-,-,-Socket.z]);
    feedrate(MillSpeed);
    cc_hole(xy,Socket.y/2 – MillClean,CutterDia/2,MillStep,-Socket.z);
    goto([-,-,TravelZ]);
    comment(" trochoid pocket milling");
    feedrate(MillSpeed);
    trochoid_move(TrochPath[0],TrochPath[1],
    -Socket.z, TrochRadius, MillStep);
    goto([-,-,TravelZ]);
    comment("Clean slot perimeter");
    feedrate(MillSpeed);
    goto([-,-,-Socket.z]);
    tracepath_comp(SlotPerimeter,CutterDia/2,TPC_CLOSED + TPC_LEFT + TPC_ARCIN + TPC_ARCOUT);
    goto([-,-,TravelZ]);
    goto(BlockHome);
    #!/bin/bash
    # Ironing weight finger grip pocketing
    # Ed Nisley KE4ZNU – 2023-01
    Flags='-P 4 –pedantic' # quote to avoid leading hyphen gotcha
    # Set these to match your file layout
    LibPath='/opt/gcmc/library'
    Prolog='prolog.gcmc'
    Epilog='epilog.gcmc'
    #—–
    gcmc $Flags \
    –include "$LibPath" –prologue "$Prolog" –epilogue "$Epilog" \
    "Ironing weight grip pocket.gcmc" > "Grip pocket.ngc"
    view raw pocket.sh hosted with ❤ by GitHub

  • Tailor’s Clapper: Laser-Cut Woodwork

    Tailor’s Clapper: Laser-Cut Woodwork

    Creating the rounded-rectangle shape of a tailor’s clapper in LightBurn, then cutting it out, doesn’t pose much of a challenge:

    Ironing weight - cutting oak plank
    Ironing weight – cutting oak plank

    That was a prototype cut from an oak plank with some fairly obvious splits. It turned out OK, but ¾ inch oak is obviously right at the limit of my 60 W laser’s abilities:

    Ironing weight - laser cut edges
    Ironing weight – laser cut edges

    The “production” clappers came from a nicer plank that was just barely long enough:

    Ironing weight - laser cuts - top
    Ironing weight – laser cuts – top

    The cut, at 2 mm/s and 70% power, just barely penetrates the plank:

    Ironing weight - laser cuts - bottom
    Ironing weight – laser cuts – bottom

    Unlike the top picture, I put the plank on the knife-edge supports, resulting in the small charred lines perpendicular to the cut.

    The edges came out thoroughly charred:

    Ironing weight - laser cuts - edges
    Ironing weight – laser cuts – edges

    Spread yellow wood glue smoothly on one piece, stick another to it, then align and clamp:

    Ironing weight - clamping
    Ironing weight – clamping

    I offset the cut 1 mm outside the nominal shape to allow Mr Belt Sander to remove the char while reducing the block to size. Obviously, there is no real tolerance, other than that it must fit Mary’s hand, and they all came out nice and straight.

    Some of the char seems embedded deep in the wood grain and leaves a dark mark despite removing the extra millimeter:

    Ironing weight - seam ironing B
    Ironing weight – seam ironing B

    Contrary to what I feared, the characteristic wood-stove odor dissipated after a day or two: they’re entirely inoffensive. Which was fortunate, as the slightest odor would cause them to fail incoming inspection.

    The longer weight on the far left came from a plank with a conspicuous knot on one end. The stress from supporting that branch while the tree grew apparently made the wood much denser, as the same 2 mm/s 70% cut setting barely made it halfway through the plank. I finished the job by cutting the outline with Tiny Bandsaw™, which didn’t proceed any faster than the laser and left a much less uniform path for Mr Belt Sander.

    I’d definitely consider making any future tailor’s clappers by laminating three half-inch oak planks that would be much easier to cut, but my woodpile doesn’t have anything like that.

    The wood remains unfinished, as part of its job is to absorb moisture from steam-ironed fabric (which is not happening in the photo). Applying stains / sealers / finishes would definitely improve the wood’s appearance, but wreck its performance. Around here, function always outweighs form.

  • Ironing Weight, a.k.a. Tailor’s Clapper: Overview

    Ironing Weight, a.k.a. Tailor’s Clapper: Overview

    Mary wanted some ironing weights, formally known as tailor’s clappers, to produce flatter seams as she pieced fabric together:

    Ironing weight - flattened seam
    Ironing weight – flattened seam

    The weights are blocks of dense, hard, unfinished wood:

    Ironing weight - seam ironing A
    Ironing weight – seam ironing A

    One can buy commercial versions ranging from cheap Amazon blocks to exotic handmade creations, but a comfortable grip on a block sized to Mary’s hands were important. My lack of woodworking equipment constrained the project, but the picture shows what we settled on.

    The general idea is a rounded wood block with 3D printed grips:

    Ironing Weight Finger Grip
    Ironing Weight Finger Grip

    All other clappers seem to have a simple slot routed along the long sides, presumably using a round-end or ball cutter, which means the cutter determines the shape. This being the age of rapid prototyping, I decided to put the complex geometry in an easy-to-make printed part inserted into a simple CNC-milled pocket.

    The first pass at the grip models:

    Ironing Weight Finger Grip - slicer preview
    Ironing Weight Finger Grip – slicer preview

    Both recesses came from spheres sunk to their equators with their XY radii scaled appropriately, then hulled into the final shape. Customer feedback quickly reported uncomfortably abrupt edges along the top and bottom:

    Ironing Weight - maple prototype
    Ironing Weight – maple prototype

    We also decided the straight-end design didn’t really matter, so all subsequent grips have rounded ends to simplify milling the pocket into the block.

    With the goal in mind, the next few posts will describe the various pieces required to make a nice tailor’s clapper customized to fit the user’s hand.

  • Vintage Oven Floor Pan: Write It Where You Need It

    Vintage Oven Floor Pan: Write It Where You Need It

    Crawling around on the floor under the oven reminded me of the bottom pan we salvaged from the hulking oven that Came With The House™:

    Vintage oven floor pan - overview
    Vintage oven floor pan – overview

    A closer look:

    Vintage oven floor pan - detail
    Vintage oven floor pan – detail

    I can’t vouch for their accuracy, but finding recommended baking temperatures and times printed exactly where they will come in handy seems like a great idea.

    It’s another example of the rule Eks taught me: When you must look up something, write it where you will need it the next time.