This is one of my favourite ambient projects. Converting traditional tungsten fairy light strings into LED ones that run directly from wall power, but with the whole string using less power than just one of the original tungsten lamps.
You can mix and match just about any LED you can find into the set and it is 100% serviceable and future proof. If you have the facilities to do so, you can also 3D print caps for the LEDs in various styles.
This project does involve mains power, and is only recommended for those experienced in that area. With the two resistors per leg the shock risk is actually much lower than the original set and definitely lower than the rogue imported sets.
The intensity is deliberately low, making these excellent for ambient decoration and night light use. The running cost is virtually nothing, even when left on 24/7, and the LEDs are running at such low current they will last a very long time.
If you enjoy these videos you can help support the channel with a dollar for coffee, cookies and random gadgets for disassembly at:- http://www.bigclive.com/coffee.htm
This also keeps the channel independent of YouTube's algorithm quirks, allowing it to be a bit more dangerous and naughty.
Here's the script for the simple power supply tube. This can be made in flame resilient plastic if you can actually afford it. I made mine out of generic PLA.
//PSU cup
$fn=50; //(cylinder facets)
difference(){
union(){
//main body
cylinder(h=40,d=11.6);
}
//inner hollow
translate([0,0,1])
cylinder(h=40,d=10);
}
The custom lamp cap script is below. Copy and paste the whole thing to OpenSCAD.
The default settings below are for low voltage LED strings. Adjust the diameters and sizes to suit your holders.
//Globe fairy light cap generator - bigclivedotcom
//Generates an LED cap based on a top and bottom
//diameter with connecting sides.
//Suggested default values are in brackets.
//ADJUST THESE VARIABLES FOR GLOBE SHAPE AND SIZE
top=6; //Diameter of globe at top (6)
bottom=20; //Diameter of globe at base (20)
height=40; //length of lamp (40)
facets=12; //Number of facets around lamp (12 at first)
//More facets equals MUCH longer processing time!
//ADJUST THESE VARIABLES FOR BASE DIMENSIONS
baselen=4; //Length of base outside globe (4)
inside=5.5; //Internal diameter of base (5.5)
led=5; //LED HOLE diameter (5)
//Don't touch variables below this line
$fn=facets;
toprad=top/2;
botrad=bottom/2;
outside=inside+2;
base=baselen+5;
difference(){
union(){
difference(){
union(){
//Outside shell of globe
hull() {
//base of globe
sphere(r=botrad);
//top of globe
translate([0,0,height-toprad-botrad])
sphere(r=toprad);
}
}
//Inside hollow of globe
hull() {
//base of globe
sphere(r=botrad-1);
//top of globe
translate([0,0,height-toprad-botrad])
sphere(r=toprad-1);
}
}
//LED base cylinder
translate([0,0,0-botrad-(base-5)])
cylinder(h=base,d1=outside,d2=outside,$fn=100);
//LED base dome
translate([0,0,0-botrad+5])
cylinder(h=(outside-led)/2,d1=outside,d2=led+1,$fn=100);
}
//LED base interior
translate([0,0,0-botrad-(base-5)-.01])
cylinder(h=base+.02,d1=inside,d2=inside,$fn=100);
//LED dome interior
translate([0,0,0-botrad+5])
cylinder(h=(outside-led)/2-1,d1=inside,d2=led,$fn=100);
//LED hole
translate([0,0,0-botrad+5])
cylinder(h=10,d1=led,d2=led,$fn=100);
//x-ray cube
//translate([-50,-50,-40])
//cube([100,50,100]);
}
You can mix and match just about any LED you can find into the set and it is 100% serviceable and future proof. If you have the facilities to do so, you can also 3D print caps for the LEDs in various styles.
This project does involve mains power, and is only recommended for those experienced in that area. With the two resistors per leg the shock risk is actually much lower than the original set and definitely lower than the rogue imported sets.
The intensity is deliberately low, making these excellent for ambient decoration and night light use. The running cost is virtually nothing, even when left on 24/7, and the LEDs are running at such low current they will last a very long time.
If you enjoy these videos you can help support the channel with a dollar for coffee, cookies and random gadgets for disassembly at:- http://www.bigclive.com/coffee.htm
This also keeps the channel independent of YouTube's algorithm quirks, allowing it to be a bit more dangerous and naughty.
Here's the script for the simple power supply tube. This can be made in flame resilient plastic if you can actually afford it. I made mine out of generic PLA.
//PSU cup
$fn=50; //(cylinder facets)
difference(){
union(){
//main body
cylinder(h=40,d=11.6);
}
//inner hollow
translate([0,0,1])
cylinder(h=40,d=10);
}
The custom lamp cap script is below. Copy and paste the whole thing to OpenSCAD.
The default settings below are for low voltage LED strings. Adjust the diameters and sizes to suit your holders.
//Globe fairy light cap generator - bigclivedotcom
//Generates an LED cap based on a top and bottom
//diameter with connecting sides.
//Suggested default values are in brackets.
//ADJUST THESE VARIABLES FOR GLOBE SHAPE AND SIZE
top=6; //Diameter of globe at top (6)
bottom=20; //Diameter of globe at base (20)
height=40; //length of lamp (40)
facets=12; //Number of facets around lamp (12 at first)
//More facets equals MUCH longer processing time!
//ADJUST THESE VARIABLES FOR BASE DIMENSIONS
baselen=4; //Length of base outside globe (4)
inside=5.5; //Internal diameter of base (5.5)
led=5; //LED HOLE diameter (5)
//Don't touch variables below this line
$fn=facets;
toprad=top/2;
botrad=bottom/2;
outside=inside+2;
base=baselen+5;
difference(){
union(){
difference(){
union(){
//Outside shell of globe
hull() {
//base of globe
sphere(r=botrad);
//top of globe
translate([0,0,height-toprad-botrad])
sphere(r=toprad);
}
}
//Inside hollow of globe
hull() {
//base of globe
sphere(r=botrad-1);
//top of globe
translate([0,0,height-toprad-botrad])
sphere(r=toprad-1);
}
}
//LED base cylinder
translate([0,0,0-botrad-(base-5)])
cylinder(h=base,d1=outside,d2=outside,$fn=100);
//LED base dome
translate([0,0,0-botrad+5])
cylinder(h=(outside-led)/2,d1=outside,d2=led+1,$fn=100);
}
//LED base interior
translate([0,0,0-botrad-(base-5)-.01])
cylinder(h=base+.02,d1=inside,d2=inside,$fn=100);
//LED dome interior
translate([0,0,0-botrad+5])
cylinder(h=(outside-led)/2-1,d1=inside,d2=led,$fn=100);
//LED hole
translate([0,0,0-botrad+5])
cylinder(h=10,d1=led,d2=led,$fn=100);
//x-ray cube
//translate([-50,-50,-40])
//cube([100,50,100]);
}
It is time for an ambient project and one of my favorite projects at this time of year which is round about the Christmas season is hacking the strings of tungsten fairy lights uh to convert them to LED What happens when you do that is you end up with the whole string taking less power than one original tongue slam did. Plus you get to choose the color of LEDs you put in and if you choose later on if well, if the set runs for a long time and they gradually lose intensity, although they'll not run at high current, you can just swap in new LEDs It's extremely serviceable and it's one of these things. You can just leave it lit 24 7 without worrying about the power consumption Because it's less than a dollar a year, it's much less than a dollar a year or pound or Euro whichever your currency is. So this is a 20 tungsten lamp set I won't plug it in because I've actually cut it down from a 100 lamp set and that would be catastrophic.
The lamp catastrophic with the lamps and I do want to keep them. but uh, what? I'm going to do is I'm going to add a little current limiter and a bridge rectifier now. was going to use a you know you get the standard little redirect fires that basically look like a cylinder with the four wires coming out I was going to use one of those, but I can't find him anywhere I know I've got them here somewhere I've got lots of different rectifiers I just couldn't find them. so instead I have improvised a little roughed up redirect fire, but that's a straightforward thing to make and it just means that you can make stuff out of junk and that is also good.
So we have four series resistors now in the past. I've just for ease when I've been using this I've put a resistor on each of the legs, but there is a slight downside to that. Um, if you were to put a resistor here and there, then it means if something terribly catastrophic wrong with the bridge rectifier, which is extremely unlikely. It means that the two resistors that were in this side of it would potentially be overloaded and would go up and smoke.
So instead, I'm putting both resistors on the AC side and I've chosen the resistors so that even with a full dead short circuit basically speaking, four resistors connected across the means, the power dissipation is half roughly half the rating, so they could sit there and simmer gently forever if that went wrong. but it's the current limiting with the resistors, a bridge right far and then literally it's just across. LEDs You do have the option to put a capacitor and another resistor and if you want but you don't need it with a small number of LEDs there is that slight bit at the bottom of the sine wave. if that's the field, we've rectified sine wave down there that they will go out, but the flicker is not really noticeable as you will hopefully see later on.
Certainly, I've got to sit next to me that I've been lit for about eight years 10 years and they're fine. There's no really perceivable flicker of them. So the resistor value in the the countries that have 220 to 240 volt, let me Zoom down. This This is this is going to be better. Let me Zoom down a more controlled man that let me actually Focus down onto that. that would be better. 220 to 240 volt use for 22k quarter watt resistors. What are what? Uh, if you've got 100 120 volt Supply used for 6800 ohm resistors with the added Advantage you get twice the current because it's much easier to drop.
uh, using a resistive dropper in the lower voltage. So what? I've done I've started off by making a bridge rack bar just by twisting diodes together. Let me get this out the way and show you this. I'll bring it up closer so you can see that and I'll Zoom down on it even further.
So I've literally Twisted the wires with the two banded ends towards each other, the two non-bounded ends towards each other and then Twisted them together at the sides and that means this is positive. This is negative and that's the two AC inputs and then to make it easier to fit into a suitable enclosure and a half meter suitable enclosure, it doesn't have to be 3D printed, but I still have the 3D print mine. It's a very simple print, but you can also just use the cap of a pen or whatever. Yeah, they're combustible that way, but it's not going to get that hot.
But what I did was uh, if this is the positive, this is negative. What I did was I grabbed the positive and negative in these fingers and the AC in these and just pulled it like that and then got the AC ones and connected the resistors to them so they run off in parallel. like that, it just means it's taking much less space and I marked this one a little red dot to make it visible that it is the positive. Now let me just zoom down here and focus on that and then Zoom back out again, right? So what I'm going to do now is I'm going to solder some leads onto these and I'm going to also use heat shrink, heat, shrink sleeving.
So I'm going to cut the plug off. Don't do this with the power on. Some people have done that. It makes a very loud bang.
Very, very scary. Quite funny though. I've marked this one here so this is going to be where I cut the cable these Snips I've been abusing these sidecars. I'm gonna have to get more.
You know what? They're so cheap off eBay just by tons. It's fine. and I'm going to strip these wires. These are double insulated wires.
by the way. They've got two layers of insulation. white and inside and green in the outside. This is something that's very sadly missing on cheap Chinese lights.
And it's quite dangerous actually, because it means that you can. Well, it's behind enough. There's quite often with the cheap Chinese lights, there's just bits of copper sticking through. Anyway, they're so dangerous.
They just don't don't have standards. That's fine. We know what to look for. We won't die. So I'm stripping these and I'm going to twist them. They are most likely real copper. Kind of suddenly doubting that as a as I try and twist them and they don't twist. Maybe they're not.
Maybe they're cupcoded I mean I think they are real copper of these ones. which is nice. And as such, they will take soda admirably. So let's start with the AC connections.
Where's my soda? I should Zoom down a little bit and we'll tin these in Readiness for sorting them onto my current limiting device. I Have these little strings everywhere in the house. just lit 24 7. they're very nice.
At night they just cast a very gentle glow which is nice. and they are fully serviceable. And if you have a 3D printer or not, everybody has a 3D printer and that's fine. If you have a 3D printer, you can also make caps for them.
I have a a video showing with the script the Caps don't actually use them at tungsten lamps. they're too hot for these caps probably, and they probably make them malform. But you can print caps in a selection of shapes and sizes, right? So I'm going to solder these on I'm going to put a bit of sleeing across first because these are going over the resistors onto the resistors. I'm going to put long enough leaving because, uh, the sleeving will also slide over the resistors.
It's just extra protection against Kabooms I had another bit of sleeping there is so I shall slip that over there I Will be abbreviating this video as much as possible so it's not too long now. I'm going to put the first AC wire onto there and Reflow because I've tinned them both, reflew them together. It would be quite nice to apply the solder directly to this because one of the important things about soldering is a The Liberation of flux into the joint. It keeps it makes things better together, but it doesn't really matter too much if you've already pre-tinned them so they're both coated in soda as I've done, hold it there, let it cool.
Okay, now, I shall Slide the heat shrink sleeving down. once that's cool enough so it doesn't instantly try shrinking. Uh, before I'm ready to shrink, it should nudge that back I Just want it a little bit over the green, but I'm not too much over the green of the cable because I want to pot this in resin afterwards just to insulate it. It is mainly bang prevention to prevent adjacent bars shorting together looking good.
I might just shrink them down there in Flight Hold on. here comes the heat pen. So I shall just apply a bit of heat and Shrink them down. That's the AC connection made to my bridge rectifier my crude hand assembled Bridge rectifier foreign the ends going to the LEDs I'm going to Tin those Splash So we're in that this is one of these projects that, uh, if I made the full video, it would be enormous.
and I've generally found that when I make huge long videos, this bar is not twisting. That's making me very suspicious. These these might be new cover-coated eye minimums I could be wrong am I I'm so tempted to get a bit of this and just give it the aluminum test. It doesn't really matter too much as long as it takes the soda on the copper and outside. that's fine. a bit. extra. load it up a little bit and then I shall put a bit of heat shrink smoothing on that.
I shall cool it down with my fingers with the blood flow taking the heat away from the solder as one does, right? So one of these I put a little blank don't to remind me it doesn't really matter too much I probably can't see the black dot I've probably cut it off. Oh I think I have black dot and green. It's not really a good idea. is it a tail art? I Do want to find that because otherwise it's going to Nuke the first Led I put in.
When you put the LEDs in these, they have to be in the correct polarity. Obviously, otherwise they won't light. And in the case of the gallium nitride type LEDs they seem very intolerant of reverse voltage. It tends to damage them right.
Tell you what? one moment please sorted a little red dot in this one just to show it is the positive and that will be going to the positive which the bands Point towards. So I shall just fold that out a little bit. I shall fold them both out just to make them more accessible and also to stop me damaging the adjacent connections with the heat from the sojourn. and they are already tinned though.
so I should be able to just flow them together. so I shall flow that one onto there, pause momentarily till it sets until it cools and then that one onto here quite time to put a bit more solder in that as a precaution I will put a bit more solder in that as a precaution. let's see if I can make everything go wrong at some point in this project that sometimes happens, it's the Peril of projects. Much better if it's just a fun project than if it's something at work and things go terribly wrong because that is bad.
Much more pressure when things are going wrong at work, when things don't work as planned and you have to redo things. So now that that has, uh, cooled at that side, I'm going to put the sleeving down over that one. if it will fit, it's a close fit. It has gone wrong, It's fine.
and then this one I shall sleeving down over that well that fits a lot better and I shall shrink them on things have gone wrong at work. Actually a Disney innocent comes to mind when we're testing a ride called Armageddon and it had these air Jets of air, liquid nitrogen and reciprocated steam that actually came that was actually liquid nitrogen distributed steam. Disney It does that a lot to clean. well.
definitely at Disney Paris and I was standing over one of the Jets just because they said right, we're going to test and I said right. I'll stand up one and see if it feels like you know getting hit by the jet and the pipes. The silver heated steam pipes were actually full of water and I got drenched. water was dripping out my pants. It was very impressive and then the sudden horror of the person who'd come up that effect realizing that was not going to work and he was going to have to find some way of draining the water at them. These things happen. Okay This is ready to actually partner. So I'm just going to make sure that these are kept separate and are going to mix up some resin, pour it into here about halfway up, and then I'm going to put it in and then if Nessa Suresh will Top up a bit further.
Well, I will have the top up a bit further. Me: I Have to fill it a lot Fuller than that because it's going to get displaced out by the stuff that's being put into it, right? Tell you what? One moment, please. I'm just mixing the resin. Okay, let's mix the resin up.
Two-part resin I Quite like two-part resonance. Very useful. I've mixed up plenty because it's better looking at it than looking for it. Incidentally, this: Arrangement the diodes.
The first time it came across the folded diodes like this was actually in a commercial lighting product was inside the end of the LED Rope Light connector. You know you get the plug that goes to the little cap that goes onto the end of the rope light and as the rectifier built into it, that's what it was nowadays. they often put it in Lane as a blob and it's a much beefier rectifier, but back then it was literally just four, one n four double O7 diodes. but they're also had little plastic spacers between them before the injection molded them into the plug.
Very simple I Think they switched to the bigger rectifier is due to theories at the end because people used to drive quite long lengths of it, right? What's the chance of me making a huge mess? It's Huge I Will make a huge mess. Let's try and pour this into my little pink plastic tube. The 3D printed tube here, by the way, is literally the it's an open scad I'll put there I'll put the file in the description. That's the best bet.
It's literally a outer cylinder um, and then an inner recess. Just two cylinders. The inner recess is subtracted from, but before it's subtracted, it's a bit thinner to make the inner core. and uh, it's also lifted up by one millimeter to make a one millimeter base.
If I filled this up to the brim. No, it's not. It's still. it's fine.
This is going to squirt out everywhere, isn't it? Do I have something to deal with the huge mass when I make it? No. I don't actually. Oh dear, not to worry, it's fine. I shall do with it when it happens.
I'm kind of intrigued to see this is ple. It's quite a low temperature plastic. I'm intrigued to see is the two-part resin going to actually get hot enough to actually make this melt? That is another thing that's going to be interesting to see. I Think that's enough I Think that looks all right I should put this stuff out the way and then plunge my mess entered like this. Oh plunging I Want it to squat up enough? Oh, let's hit the bottom and it's not squirted out enough. That's okay. I Shall get my vice the Vase of Knowledge up. Hold on.
Where's the Vase of knowledge? Where is the voice of knowledge? it's hiding one moment. Thank you. There is the Vice of knowledge. I shall gently clamp this in the vice of knowledge and then attempt to drizzle more resonant to fill it up to the brim.
Have I got raising my fingers yet? I've not. This is a surprise. Okay I'm going to skip some resin and just drizzle it down the side here. Oh almost.
It just tried to escape there off my little wooden stick. The wooden stick is stolen from uh Conrad's coffee shop in Ramsay We usually drink coffee when I'm up at sociable hours. Oh I'm making a huge mess here. Oh look at the mess I am making it's just it's going everywhere.
This is the this is what happens with resin. It goes everywhere. Handy hint of it's too stiff. because your ambient temperature is low.
You can heat it up gently and it will tend to flow a bit better. I'm going to lift this out because it's starting to pour over the side. Yet resin. It's uh.
fantastic. One of the best things you can do with resin is just make last minute changes to something and then regret it horribly. That is the nature of resin. I Should pause because I'm gonna have to pause because this is going to have to have time to cure and you definitely don't want to watch the resin curing.
but I'd say what? I Think that's okay I think that's enough. That is my little module radio one moment please. The resin has now cured and it is time to test it by plugging it in at this point in time. I'm going to cut that cable tie off at this point in time being careful not to actually cut the wires in the process.
These Snips are wrecked I should get new side Cutters I Shall order some more right after this video. One can never have enough little sight cutter. Uh, if I plug this in, it's either going to go bang or nothing's going to happen. Nothing happened.
This is a good result. If it does go bang, that's just a moment. Now you'll notice these lights have not lit. There is a reason for that.
it's because the current flowing through the circuit is now absolutely minuscule. but this is where we put the LEDs in. So you unplug one of the lamps, you can leave it plugged in while you do this, and you pull the lamp out of the holder before you even start this. It's worth checking because sometimes these lamps are actually glued into these holders and that's rubbish when they do that.
Now there's another thing to note. some LEDs you buy online have very short leads and if I put one of these shortly LEDs in, it doesn't even protrude through the back. you're going to have to get the ones with the long leads. So look for the eBay listings that show long leads and then hope that that's actually what you get. So you put the LED in. Let me Zoom down this. You put the LED through the with the leads, going through the two holes and then you fold it back like this. Then you get a sharp pair of Cutters and you turn it with the blade pointing up the way with the open end down the way and you rest on the little ledge here and you just cut in at an angle.
The main thing is that you want to cut it just a little bit short so it doesn't actually right up the side of this because if it does, it can actually make the lamps very hard to put in and also very almost impossible to get back out again and you do want to make it surfaceable. Now this dot I put in this should theoretically be negative. The little anvil inside the LED should be negative. There's no harm in marking it with the what was the shorter lead, but if I put this in the LED has lit up.
That's a good start now. I'm going to do the same with all the other ones and I'll be back in a moment. One moment please! The LEDs are now all in and lit. Let's do some experiments.
Let's turn the light off for a start and take the exposure off. And yeah, you can see a slight Shimmer there. They're not super mega bright, but that is by Design. Oh, there's a bit of variation in color as well between them, so let's do some experiments.
Let's put in some alternative. LEDs Actually, you know what? let's start by accidentally deliberately reversing one of these. LEDs So I think this is the negative hold on I'm just trying to see through the housing. Is it easier to see this one? One of these LEDs is about to meet its maker.
Uh, just. I'm going to shine light through just to see the and there it is the Anvil of the Led. The bit that holds the chip is a negative. If you're going to swap LEDs a lot, make a mark on each lamp holder with a sharpie just to remind you what's negative and I'll show you why.
I'm going to unplug this led. if I can it's unplugged, then I'm going to turn it around and put it in Back to Front The other LEDs have lit. This one is not. uh, quite often with gallium nitrode.
This Led will now be dead. Just you know that there it's just a weaker technology. Oh, look at the slight fuzz. there.
is the beard bouncing up and down. Let's put in some other LEDs So this one is I Don't know what this one is red. This is a color changing one. The color changing ones might not work stabily on this because it is passing through a zero crossing point that is going out.
but this one is working. But you may find that they suddenly randomly reset. but you can use the color changing ones. What else have we got here? We've got this one of which.
uh, let's get the right way around. This one is a red. LED The red LED is a much more. It's the older technology I Think it will survive being put in back to front so it's being put in back to front. Turn it round. it has survived. Next, a candidate for experimentation is a very popular LED in China and India it's the alternating color LED I Think red and green may not be stable, but in this case it does seem to be okay. Sometimes they require a little capacitor just to provide a Persistence of current over the air.
when it's spring through zero crossing point of the same wave. the next LED are not so sure, but I've not tried this yet. This is a flashing LED but because when it's off, it goes open circuit, It might not like the voltage across it. What's it going to do? It's not going to flash all the LEDs but it is Flash on and off.
That's quite interesting. Um, what happens if we stick it in back to front? I'm surprised that's working. The other LEDs are fluctuating intensity with that. but it's not an ideal thing because when it goes open circuit, the voltage across it could be quite High It will be causing some to Avalanche What happens? You put it in Back to Front If you can get in back to front, hold on.
it doesn't light. turn it the right way around. Oh, it still works. That's quite good.
Uh, and that just leaves covers. You can put these. You can make these covers. Uh.
as I said, there's a I'll provide a link to it. There's a video showing you how to make these covers in a 3D printer. You can make them. You can scale them up any shape inside you want.
Uh, I've put the files up for that. Uh, and you'll be able to download the Open Sky script for that and uh. As before mentioned, the open Sketch script. for this very simple shape, I'll just stick it in the description down below, but this is it.
now. watch your eyes, the light is coming back and the light is back. One other thing worth mentioning: This originally started off as a 100 LED set, but I wanted to make it abbreviate it down to a smaller number. but you can particularly if you had not adding a capacitor and a bit of extra circuitry, you can actually run very long strings of Lights.
It's limited, but because they're on the series by the typical Ford voltage of an LED at this level is about 2.5 volts at this current, so it's limited by what your local Supply voltage is on 240 volt supplies. We have the benefit. we can run longer strings, but you can. Basically with these lamp holders, you can push the little strain relief down at the back here by putting a fine screwdriver between them and being careful not to actually damage the insulation as you do so you can push it out and then you can actually physically detach the contacts in here from them and you can actually splice sections in or out as desired.
Uh, the disadvantage for us in the UK is that in America another 110 volt countries, you'd have twice then tends to because it's just that easier to drop uh, current over resistors when you've got a lower voltage to start off with or that one is going berserk. Did you see that? Did you see it going berserk? It is. It's being affected by the light from these uh lights here, but it's pointed directly at one of the bench lights. It goes berserk because it's got a light sensitive chip in it, and because it's in the sort of on the borderline of operation ever. That is it. It's a nice project. It's a fun project. Um, and uh, you can just swap colors as desired.
When an LED feels, just swap a new one in change covers change LEDs That's entirely up to you. So another thing that's worth mentioning is because the high value of the resistors in these certainly on the 22. Let's work it out because there's uh, two resistors in each leg. Uh, the current.
If you were to actually touch a bear connection, the maximum could be 240 volts divided by the two resistors 44 000 on each leg. The maximum current could be five milliamps, which would give you a very noticeable shot, but it wouldn't go much beyond the sort of wrist in terms of the current density. You wouldn't really. You wouldn't get locked on around that.
It wouldn't be life-threatening in America 120 volts. But what's the what did I say for America Uh, 6800 Ohms 6800 Ohms times two equals say 13 600 120 divided by Thirteen thousand Six hundred um equals about eight milliamps. That would be more severe. That would be a really quite a Zing but that's only in extreme instances.
Uh, depending on where you touched it in the string and if you actually touched a live wire in the first place. So that said that. I Actually pretty safe, and the use of two resistors instead of just one also makes it even safer because that's a built-in sort of failure prevention to do that to put multiple resistors in series, but that's it. It's a good project and these all Let's test the power.
One moment the power is 0.5 watts per factor is near Unity because it is mainly a resistive load and this will get warm, but it won't get super hot, it will just get gently warm. Uh current is 2 milliamps. uh, just as predicted in fact, which is quite nice. It's a very simple circuit and that is it.
So uh, it's quite a fun project to do. It's quite therapeutic changing the LEDs you'll see if you've got the color changing ones that they do go a bit unstable, but that's uh, just a quirk of these. uh, of the fact it's not smooth, um, smooth, DC it's getting, but that's quite neat the fact it's doing those weird things as well, but that's it. Nice fun project, very easy to do and of course you can print off the Caps to make it your very own custom.
Set of Lights.
Just for the record…. I loathe all aluminium cored cables. Twist the end, ends fall off in your hand. Fold the end to put it into a terminal, the folded bit falls off. Try to solder it, the solder just laughs, drips off and makes shiny nuggets beneath where you were working, the cable looks back at you says "And…..".
Some evil beancounter thought it best to pre-fit certain components I have to wrangle in the dark, by torchlight, on my knees, in the pissing rain with this stuff to urgent fix stuff. It's 0.25m of cable per unit FFS. Add an extra hour of my time, plus vehicle, plus liability insurance for being on customer site to tit about with it – where is that on the spreadsheet?
Annoyed does not come close to describing my level of loathing. Incensed is notching closer.
Strangely no-one will give me a name of who made the decision….. can't think why.
Only 1 LED meet it's maker while the rest faced a certain death with no fear.
Brian Eno, approves. ๐
W10 bridge rectifier from cricklewood ๐
A few years ago after one of your previous versions of this I got some tungsten sets from Poundland and a bunch of 10mm diffuse LEDs in different colours, used the power supply out of one of those light bulb kits to run it.
"They don't have standards" … Where do you think the good wire comes from? China manufactures to the price point their customers demand. No more, no less. When your clients are constantly trying to whittle down the price, are you just going to start giving away your labors for free? Remember, China didn't steal our manufacturing base, our dear leaders handed it to them at the behest of their corporate overlords.
Do they make Aluminium coated copper with transparent Aluminium as well?
Do you know it makes a big bang when you cut the plug off with the power on because you have done it?
Reversed LEDs that exceed their reverse voltage spec but do not die immediately most likely still have had their life reduced.
Need some injection tools for the resin.
When did the HOPI replacement meter appear? What are the buttons for?!?! Where did you get it from?
I'm sure I'm not the only one thinking the 3D printed caps look like they could have uses in illuminating other "dark areas"…… ๐
Hey Clive sir what a great vid and well explained big thank you
I wonder if the resistors and rectifier would fit in the plug.
Candle flicker bulbs for me please! They come in different colours now too.
Maybe swirling the rectifier bundle in the epoxy before sticking it in the pen cap would help by filling some of the air gaps.