Using A Jewelry Kit To Resin-Encase Electronics

clear-cast-squareSome of us have looked at clear resin jewelry casting kits online and started to get ideas. Hackaday’s own [Nava Whiteford] decided to take the plunge and share the results. After purchasing a reasonably economical clear resin jewelry casting kit from eBay, a simple trial run consisted of embedding a solar lantern into some of the clear resin to see how it turned out. The results were crude, but promising. A short video overview is embedded below.

The big hangup was lack of a proper mold. [Nava]’s attempt to use a plastic bag and a cup as an expedient stand-in for a proper mold was not without its flaws, and the cup needed to be broken before the cured resin could be removed. Despite this, the results were good; the mixing needed careful measurement and the curing process was lengthy but the cured resin is as attractive as the advertisements promise. Mixing introduced many air bubbles into the mixture, but most of them seemed to disappear on their own during the curing process. The results of this quick test may not be pretty, but the resin seems to have held up its end of the bargain and delivered the expected smooth, clear finish.

Continue reading “Using A Jewelry Kit To Resin-Encase Electronics”

DIY 3D Slicer Is A Dynamo

We all know that hacker that won’t use a regular compiler. If he’s not using assembly language, he uses a compiler he wrote. If you don’t know him, maybe it is you! If you really don’t know one, then meet these two. [Nathan Fuller] and [Andy Baldwin] want to encourage you to write your own 3D slicer.

Their post is very detailed and uses Autodesk Dynamo as a graphical programming language. However, the details aren’t really specific to Dynamo. It is like a compiler. You sort of know what it must be doing, but until you’ve seen one taken apart, there are a lot of subtleties you probably wouldn’t think of right away if you were building one from scratch.

Continue reading “DIY 3D Slicer Is A Dynamo”

Beefy 100 Amp Electronic Load Uses Two MOSFETs

[Kerry Wong] had some extreme MOSFETs (IXTK90N25L2) and decided to create a high current electronic load. The result was a two-channel beast that can handle 50 A per channel. Together, they can sink 400 W and can handle a peak of 1 kW for brief periods. You can see a demo in the video below.

An electronic load is essentially a load resistor you can connect to a source and the resistance is set by an input voltage. So if the load is set to 10 A and you connect it to a 12 V source, the MOSFET should look like a 1.2 ohm resistor. Keep in mind that’s 120 watts–more power than a common incandescent light bulb. So you are going to need to carry some heat away.

The circuit is pretty simple. The FETs accept a voltage on their gates that sets them to look effectively like a resistor that varies with the voltage. A very small source resistor develops a voltage based on current (only 75 mV for a 50 A draw). That voltage feeds a comparator which generates the gate voltage after looking at the input control voltage. Each millivolt into the comparator translates to an additional 1.33 A through the load.

Continue reading “Beefy 100 Amp Electronic Load Uses Two MOSFETs”

Looking Back At QRP Transmitters

When you get to a certain age, you get unsettled by people calling “your” music oldies. That’s how a few of us felt when we saw [Mikrowave1’s] video about Retro QRP – Solid Gold Years (see below). “QRP” is the ham radio term for low power operation, and the “solid gold” years in question are the 1960s to 1980. The videox has some good stuff, including some old books and some analysis of a popular one-transistor design from that time. He even tries a few different period transistors to see which works best.

[Mikrowave1] talks about the construction techniques used in that time frame, old transistors, and some vintage test equipment. You can even see an old ARC-5 command receiver in use to listen to the transmitter. These were made for use in military aircraft and were very common as surplus.

Continue reading “Looking Back At QRP Transmitters”

Reverse Engineering The Smart ForTwo CAN Bus

The CAN bus has become a defacto standard in modern cars. Just about everything electronic in a car these days talks over this bus, which makes it fertile ground for aspiring hackers. [Daniel Velazquez] is striking out in this area, attempting to decode the messages on the CAN bus of his Smart ForTwo.

[Daniel] has had some pitfalls – first attempts with a Beaglebone Black were somewhat successful in reading messages, but led to strange activity of the car and indicators. This is par for the course in any hack that wires into an existing system – there’s a high chance of disrupting what’s going on leading to unintended consequences.

Further work using an Arduino with the MCP_CAN library netted [Daniel] better results, but  it would be great to understand precisely why the BeagleBone was causing a disturbance to the bus. Safety is highly important when you’re hacking on a speeding one-ton metal death cart, so it pays to double and triple check everything you’re doing.

Thus far, [Daniel] is part way through documenting the messages on the bus, finding registers that cover the ignition and turn signals, among others. Share your CAN hacking tips in the comments. For those interested in more on the CAN bus, check out [Eric]’s great primer on CAN hacking – and keep those car hacking projects flowing to the tip line!

Microfluidic LEGO Bricks

Years ago, prototyping microfluidic systems was a long, time-intensive task. With inspiration from DIY PCB fabrication techniques, that time is now greatly reduced. However, even with the improvements, it still takes a full day to go from an idea to a tangible implementation. However, progress creeps in this petty pace from day to day, and in accordance, a group of researchers have found a way to use 3D printed molds to create microfluidic LEGO bricks that make microfluidic prototyping child’s play.

For the uninitiated, microfluidics is the study and manipulation of very small volumes of water, usually a millionth of a liter and smaller (nL-pL). Interestingly, the behavior of fluids at small scales differs greatly from its larger scale brethren in many key ways. This difference is due to the larger role surface tension, energy dissipation, and fluidic resistance play when distances and volumes are minimized.

By using 3D printed molds to create microfluidic bricks that fit together like LEGOs, the researchers hope to facilitate medical research. Even though much research relies on precise manipulation of minuscule amounts of liquid, most researchers pipette by hand (or occasionally by robot), introducing a high level of human error. Additionally, rather than needing multiple expensive micropipettes, a DIY biohacker only needs PDMS (a silicon-based chemical already used microfluidics) and 3D printed molds to get started in prototyping biological circuits. However, if you prefer a more, ahem, fluid solution, we’ve got you covered.

[via Adafruit]

Understanding DMA

In the world of computers, the central processing unit (CPU) is–well–central. Your first computer course probably explained it like the brain of the computer. However, sometimes you can overload that brain and CPU designers are always trying to improve both speed and throughput using a variety of techniques. One of those methods is DMA or direct memory access.

As the name implies, DMA is the ability for an I/O device to transfer data directly to or from memory. In some cases, it might actually transfer data to another device, but not all DMA systems support that. Sounds simple, but the devil is in the details. There’s a lot of information in this introduction to DMA by [Andrei Chichak]. It covers different types of DMA and the tradeoffs involved in each one.

Continue reading “Understanding DMA”