Ed Nisley's Blog: Shop notes, electronics, firmware, machinery, 3D printing, laser cuttery, and curiosities. Contents: 100% human thinking, 0% AI slop.
A somewhat more detailed doodle of the end view prompted me to bore the PVC pipe out to 23 mm:
Amber running light – board layout doodle – end
The prospect of designing a 3D printed holder for the boards suggested Quality Shop Time combined with double-stick foam tape would ensure a better outcome.
So I bandsawed the remains of a chunky angle bracket into a pair of rectangles, flycut All The Sides to square them up, and tapped a pair of M3 holes along one edge of each:
The groove holds a length of 4 mm OD (actually 5/32 inch, but don’t tell anybody) brass tubing:
1 W LED Running Light – baseplate trial fit
The M3 button head screws are an admission of defeat, as I could see no way of controlling the width + thickness of the aluminum slabs to get a firm push fit in the PVC tube. The screws let me tune for best picture after everything else settled out.
A little more machining opened up the top of the groove:
1 W LED Running Light – baseplate dry assembly
A short M3 button head screw (with its head turned down to 4 mm) drops into the slot and holds the slab to the threaded hole in the LED heatsink. The long screw is holding the threaded insert in place for this dry fit.
I doodled a single long screw through the whole thing, but having it fall off the heatsink when taking the rear cover off seemed like a Bad Idea™. An M3 button head screw uses a 2 mm hex key that fits neatly through the threaded insert, thereby making it work.
Butter it up with epoxy, scrape off the excess, and let things cure:
Kibitzing on a project involving an Arduino Mega (properly MEGA, but who cares?) with plenty of spare I/O pins led me to slap together a block of LEDs:
Arduino Mega Debugging LEDs
The excessive lead length on the 330 Ω resistors will eventually anchor scope probes syncing on / timing interesting program events.
Not that you have any, but they’re antique HP HDSP-4836 tuning indicators: RRYYGGYYRR. If you were being fussy, you might use 270 Ω resistors on the yellow LEDs to brighten them up.
A simple test program exercises the LEDs:
/*
Debugging LED outputs for Mega board
Ed Nisley - KE4ZNU
Plug the board into the Digital Header pins 34-52 and GND
*/
byte LowLED = 34;
byte HighLED = 52;
byte ThisLED = LowLED;
//-----
void setup() {
pinMode(LED_BUILTIN,OUTPUT);
for (byte p = LowLED; p <= HighLED; p+=2)
pinMode(p, OUTPUT);
// Serial.begin(9600);
}
// -----
void loop() {
digitalWrite(LED_BUILTIN,HIGH);
digitalWrite(ThisLED, HIGH);
delay(100);
digitalWrite(ThisLED, LOW);
// delay(500);
ThisLED = (ThisLED < HighLED) ? (ThisLED + 2) : LowLED;
// Serial.println(ThisLED);
digitalWrite(LED_BUILTIN,LOW);
}
Nothing fancy, but it ought to come in handy at some point.
I noticed something out of place when I fired up the soldering iron:
Soldering Iron Spider
It’s not obvious in a flat photo without depth perception, but here’s a closer look:
Soldering Iron Spider – detail
A tiny spider had set up shop just over the tip cleaning port, with a delicate web linking the sponge to the iron holder.
I tried to deport her outdoors, as is our custom with helpful critters, but she jumped off the web and scurried to an unknown spot on the bench. She’ll surely rebuild in an equally productive spot.
Obviously, I’m not soldering enough electronic gadgetry …
The 15 Ω unswitched resistor sets the LED current at 53 mA = 0.8 V / 15 Ω, with the LED dissipating about 100 mW. The resistor dissipates 43 mW.
Closing the switch puts the two parallel 4.7 Ω resistors in parallel with the 15 Ω resistor to produce 2.0 Ω, which sets the LED current to 390 mA and runs it at 950 mW. Each of the 4.7 Ω resistors dissipates 140 mW.
That much power raises the aluminum body to 50 °C = 120 °F: definitely uncomfortable but probably survivable for the LED inside.
Eyeballometrically, a decimal order of magnitude difference in the LED current produces an obvious brightness difference. My first try ran the LED at 500 mW (a binary order of magnitude less than 1 W) and wasn’t visually different. Given that the LED will run from the Bafang’s headlight output, saving power isn’t all that important.
If this is the first time you’ve encountered parallel resistors, this is why your calculator has a reciprocal button: the total resistance is the reciprocal of the sum of the reciprocals of all the resistances:
A pleasant evening at a virtual Squidwrench meeting produced the raw shape of the front end from a 1 inch aluminum rod:
1 W LED Running Light – heatsink raw
Trace the outline of the LED’s PCB inside the cylinder just for comfort, align to the center, and drill two holes with a little bit of clearance:
1 W LED Running Light – heatsink drilling
For the 24 AWG silicone wire I used, a pair of 2 mm holes 8.75 mm out from the center suffice:
1 W LED Running Light – heatsink fit
Gnaw some wire clearance in the lens holder:
1 W LED Running Light – wiring
Tap the central hole for an M3×0.5 screw, which may come in handy to pull the entire affair together.
Epoxy the PCB onto the heatsink with the lens holder keeping it aligned in the middle:
1 W LED Running Light – heatsink clamp
Then see how hot it gets dissipating 900 mW with 360 mA of current from a 2.2 Ω resistor:
1 W LED Running Light – heatsink test
As you might expect, it gets uncomfortably warm sitting on the bench, so it lacks surface area. The first pass will use a PVC cylinder for easy machining, but a full aluminum shell would eventually be a nice touch.
A doodle with some dimensions and aspirational features:
Running Light – 1 W LED case doodle
Even without a lens and blinkiness, it’s attention-getting!
Mostly because I wanted to verify that it really worked:
MP1584 current – red LED – Arduino blinkiness
The Arduino Nano runs the default Blink program that all the knockoff manufacturers use as their final QC test.
The MP1584 specs say the Enable input can accept a logic signal up to 6 V, the Nano runs at 5 V regulated down from the 6.3 V from the bench supply, and the 1 W red LED now flashes 1 s ON / 1 s OFF.
The current feedback works as it did before, too, which is comforting.
The Nano adds 20 mA to the bench supply, so the whole affair runs at 220 mA = 1.4 W. Of course, it’s now at a 50% duty cycle, so that helps.