The Chemistry And Engineering Of DIY Photochromic Glass

[Ben Krasnow] is no stranger to exploring the more arcane corners of hackerdom, and the latest video on his “Applied Science” channel goes into a field few DIYers have touched: homemade glass, including the photochromic variety.

That DIY glassmaking remains a largely untapped vein is not surprising given what [Ben] learned over the last months of experimenting. With searing temperatures bordering on the unobtainable, volatile ingredients that evaporate before they can be incorporated, and a final product so reactive that a platinum crucible is the best vessel for the job, glassmaking is not easy, to say the least. Glassmaking doesn’t scale down from an industrial process very well, it seems. Nonetheless, [Ben] came up with a process that could be replicated using common enough ingredients and a simple electric kiln modded with a PID controller for pinpoint temperature setting. And while Luxottica has nothing to worry about yet, he did manage to get some clearly if subtly photochromic samples, despite the challenges.

Without a doubt, [Ben] crossed over into “mad scientist” territory a while back, and we think it’s great. What other way is there to describe a guy who has an electron microscope, a high-power ruby laser, a CT scanner, and a cookie making robot in his basement? Whatever you call it, we like the results.

Continue reading “The Chemistry And Engineering Of DIY Photochromic Glass”

Hackaday Prize Entry: Reflowduino, The Open Source Reflow Oven Controller

Face it — you want a reflow oven. Even the steadiest hands and best eyes only yield “meh” results with a manual iron on SMD boards, and forget about being able to scale up to production. But what controller should you use when you build your oven, and what features should it support? Don’t worry — you can have all the features with this open source reflow oven controller.

Dubbed the Reflowduino for obvious reasons, [Timothy Woo]’s Hackaday Prize entry has everything you need in a reflow oven controller, and a few things you never knew you needed. Based on an ATMega32, the Reflowduino takes care of the usual tasks of a reflow controller, namely running the PID loop needed to accurately control the oven’s temperature and control the heating profile. We thought the inclusion of a Bluetooth module was a bit strange at first, but [Timothy] explains that it’s a whole lot easier to implement the controller’s UI in software than in hardware, and it saves a bunch of IO on the microcontroller. The support for a LiPo battery is somewhat baffling, as the cases where this would be useful seem limited since the toaster oven or hot plate would still need a mains supply. But the sounder that plays Star Wars tunes when a cycle is over? That’s just for fun.

Hats off to [Timothy] for a first-rate build and excellent documentation, which delves into PID theory as well as giving detailed instructions for every step of the build. Want to try lower-end reflow? Pull out a halogen work light, or perhaps fire up that propane torch.

Control System Fundamentals By Video

If you’ve had the classic engineering education, you probably have a hazy recollection of someone talking about control theory. If you haven’t, you’ve probably at least heard of PID controllers and open loop vs closed loop control. If you don’t know about control theory or even if you just want a refresher, [Brian Douglas] has an excellent set of nearly 50 video lectures that will give you a great introduction to the topic. You can watch the first lecture, below.

You might think that control systems are only useful in electronics when you are trying to control a process like a chemical plant or a temperature. However, control theory shows up in a surprising number of places from filters to oscillators, to the automatic gain control in a receiver. You’ll find the background behind many familiar results inside control theory. Sort of like when you take calculus and you discover how they came up with all the formulas you memorized in geometry.

Continue reading “Control System Fundamentals By Video”

PID Controlled Charcoal BBQ – Put An Arduino On It!

At Maker Faire Milwaukee this past weekend, [basement tech]  was showing off his latest build, a PID controlled charcoal grill. While it hasn’t QUITE been tested yet with real food, it does work in theory.

PID (a feedback loop with some fancy math used to adjust the input to get a consistent output) controlled cooking is commonly used for sous vide, where one heats up a water bath to a controlled temperature to cook food in plastic bags. Maintaining water temperature is fairly easy. Controlling a charcoal barbecue is much more difficult. [basement tech] accomplishes this with controlled venting and fans. With the charcoal hot and the lid on, there are two ways to control temperature; venting to let hot air out, and blowing air on the coals to make them hotter. A thermocouple sensor stuck through the grill gives the reading of the air inside, and an Arduino nearby reads that and adjusts the vents and fans accordingly.

The video goes into extensive detail on the project, and describes some of the challenges he had along the way, such as preventing the electronics and servos from melting.

Continue reading “PID Controlled Charcoal BBQ – Put An Arduino On It!”

Pouring 1200° Tea: Foundry In A Fire Extinguisher

Let’s face it — the design of most home foundries leaves something to be desired. Most foundries are great at melting metal, but when it comes to pouring the melt, awkward handling can easily lead to horrific results. That’s why we appreciate the thought that went into this electric melting pot foundry.

Sure, electric foundries lack some of the sex-appeal of gas- or even charcoal-fueled foundries, but by eschewing the open flames and shooting sparks, [Turbo Conquering Mega Eagle] was able to integrate the crucible into the foundry body and create what looks for all the world like a Thermos bottle for molten aluminum.

The body is a decapitated fire extinguisher, while the crucible appears to just be a length of steel pipe. An electric stove heating element is wrapped around the crucible, PID control of which is taken care of by an external controller and solid state relay. Insulated with Pearlite and provided with a handle, pours are now as safe as making a nice cup of 1200° tea.

You’ll perhaps recall that [Turbo Conquering Mega Eagle] has a thing for electric foundries, although we have to say the fit and finish of the current work far exceeds his previous quick-and-dirty build using an old electric stove.

Continue reading “Pouring 1200° Tea: Foundry In A Fire Extinguisher”

PLC Vs Arduino Show Down

Hackaday readers don’t need an introduction to the Arduino. But in industrial control applications, programmable logic controllers or PLCs are far more common. These are small rugged devices that can do simple things like monitor switches and control actuators. Being ruggedized, they are typically reasonably expensive, especially compared to an Arduino. [Doug Reneker] decided to evaluate an Arduino versus a PLC in a relatively simple industrial-style application.

The application is a simple closed-loop control of flow generated by a pump. A sensor measures flow for the Arduino, which adjusts a control valve actuator to maintain the specified setpoint. The software uses proportional and integral control (the PI part of a PID loop).

Continue reading “PLC Vs Arduino Show Down”

Derek Schulte: Path Planning For 3D Printers

[Derek Schulte] designed and sells a consumer 3D printer, and that gives him a lot of insight into what makes them tick. His printer, the New Matter MOD-t, is different from the 3D printer that you’re using now in a few different ways. Most interestingly, it uses closed-loop feedback and DC motors instead of steppers, and it uses a fairly beefy 32-bit ARM processor instead of the glorified Arduino Uno that’s running many printers out there.

The first of these choices meant that [Derek] had to write his own motor control and path planning software, and the second means that he has the processing to back it up. In his talk, he goes into real detail about how they ended up with the path planning system they did, and exactly how it works. If you’ve ever thought hard about how a physical printhead, with momentum, makes the infinitely sharp corners that it’s being told to in the G-code, this talk is for you. (Spoiler: it doesn’t break the laws of physics, and navigating through the curve involves math.)

Continue reading “Derek Schulte: Path Planning For 3D Printers”