Standing waves are one of those topics that lots of people have a working knowledge of, but few seem to really grasp. A Ham radio operator will tell you all about the standing wave ratio (SWR) of his antenna, and he may even have a meter in the shack to measure it. He’ll know that a 1.1 to 1 SWR is a good thing, but 2 to 1 is not so good. Ask him to explain exactly what a standing wave is, though, and chances are good that hands will be waved. But [Allen], a Ham also known as [W2AEW], has just released an excellent video explaining standing waves by measuring signals along an open transmission line.
Year: 2015
Build A Baby Plasma Cutter–Right Now!
What hacker doesn’t want a plasma cutter? Even if you aren’t MacGyver, you can probably build this one in a few minutes using things you have on hand. The catch? You probably can’t cut anything more than tin foil with it, and it is probably more a carbon-air arc gouger (which uses plasma) than a true plasma cutter. Still, as [Little Shop of Physics] shows on the video, it does a fine job of slicing right through foil.
If you are like us, you are back now after getting four 9V batteries, some tin foil, a pencil lead, and some clip leads and trying it. If you have more self-restraint than we do, you might want to think about what you are going to put the tin foil over. In the video, they used a laundry basket and a rubber band, but anything that keeps the foil suspended would do the trick.
Although it isn’t really a practical plasma cutter, we were thinking about strapping something like this to a 3D printer and cutting foil stencils. The jagged edges on the video are, hopefully, more from being operated by hand and less from the jagged mini-lightning bolt vaporizing the foil.
Hackaday Prize Entry: Detecting New Meteor Showers
Go out to a field on a dark night, far away from city lights, and you might just see a shooting star. A single meteor is just a tiny fraction of all the space dust that hits our atmosphere every day; most of it goes completely unnoticed. To get a better idea of where these meteoroids come from, [Dario] and [Denis] have come up with a network of meteor-detecting ground stations to search for these extraterrestrial visitors and make it possible to retrieve the largest of these fallen stars.
This project started at the Croatian Meteor Network, a team with about two dozen surveillance cameras pointed skyward as an unblinking eye, looking for meteoroids entering the Earth’s atmosphere over the Balkans and the Adriatic sea. When two cameras detect a meteor, the path it came from – and its orbit around the Sun – can be computed. The team has already found a possible new meteor shower (PDF) that is active from late August to the middle of September.
With hundreds of cameras scattered around the globe, it’s possible to triangulate the position of these meteors and their orbit around the Sun, just like what was done with the innumerable Russian dash cams after the Chelyabinsk meteor. It’s a great project, and also one that requires a lot of computer image processing – a favorite around these parts.
Hack Your C++ With LLVM
Have you ever wanted to analyze or mutate some C or C++ code? You can do some simple pattern matching with regular expressions, but there’s always some special case or another that will break your logic. To do it right, you need to develop an entire parser, perhaps using a formal grammar and a tool like Yacc. That’s a big job, though, just to change all the floats to doubles.
[Adrian Sampson] wrote a blog entry to make you go from “mostly uninterested in compilers to excited to use LLVM to do great work.” LLVM – the Low Level Virtual Machine compiler infrastructure — provides tools for a lot of languages, including CLANG for C and C++. [Adrian] points out a few key differences between LLVM and other compilers and tools you might use for a similar purpose:
- LLVM uses a consistent intermediate representation that is human-readable
- It is extremely modular
- It is both highly hackable and an industrial-strength, well-supported compiler
He points out that compiler tools aren’t just for compiling. You can use them to analyze source code, build simulators, and inject code for security or testing, among other things (speaking of security testing, check out the use of LLVM to analyze binaries for security issues in the video after the break). The high hackability of LLVM is due to its modular nature. By default, a front end chews up the C or C++ code into the intermediate representation. Then multiple passes can modify the representation before handing it off for the next pass. The final pass does actual code generation for the target processor.
Cute Countdown Timer Reminds You Of Impending Doom
As things get busy, whether it be an upcoming product launch, a pregnancy, or even the release of your favorite game (or movie!) sometimes it’s nice to have a little countdown timer. Not an app on your phone, but a tangible, physical timer to set on your desk. Which is why SevenSeg is such a cute idea.
[Mohit] wanted to design something that was simple, but aesthetically pleasing — he’d seen free-form electronic projects before and wanted to give it a shot. What he came up with is pretty elegant! A seven segment display is connected via 1/32″ brass rods to the controller, a Particle Photon — which is kind of like a Teensy with WiFi for the internet of things. After putting a few resistors in line with the display, and a bit of frustrating bending of wire later, and SevenSeg was complete.
Continue reading “Cute Countdown Timer Reminds You Of Impending Doom”
Retrotechtacular: The Trautonium Was Elemental To Electronic Music
Electrical engineer and music enthusiast [Freidrich Trautwein] was dissatisfied. He believed that the equal tempered scale of the piano limited a player’s room for expression. And so in 1930, [Trautwein] and an accomplished pianist named [Oskar Sala] began work on an electro-mechanical instrument that would bring the glissando of the string section’s fretless fingerboards to the keyboard player. [Trautwein] called his creation the Trautonium.
Sound is produced in the instrument by sawtooth frequency generators. It is then passed through filters and manipulated by the resistive string-based manuals. Frequency and intonation are varied relative to the position of the player’s finger along a length of non-conductive string and to the amount of pressure applied. This resistive string is suspended above a conductive metal strip between a pair of posts. A small voltage is applied to the posts so that when the string touches the metal strip below, the player manipulates a voltage-controlled oscillator. A series of metal tongues, also non-conductive, hover above the string. These are placed at scale intervals and can be used like keys.
This early synthesizer is capable of producing many kinds of sounds, from crisp chirps to wet, slapping sounds and everything in between. In fact, all of the sound effects in Alfred Hitchcock’s thriller The Birds were produced on a modified Trautonium by the instrument’s one and only master, [Oskar Sala]. He went on to score hundreds of films by watching them with the Trautonium at his fingertips, recording and layering his compositions into an eerie wall of sound.
Continue reading “Retrotechtacular: The Trautonium Was Elemental To Electronic Music”
BeagleBone Green Hands-On: Lower Price, Same Horsepower
Although the BeagleBone Green was announced at the Bay Area Maker Faire last May, there hasn’t been much said about it on the usual forums and IRC channels. Now, it’s finally out and I got my hands on one of them. Through a cooperation between the BeagleBoard foundation and Seeed Studios, the best small Linux board for doing real work with small Linux boards is now cheaper, a little more modern, and green.
The BeagleBone Green is an update to the venerable BeagleBone Black, the dev board based on a TI ARM Cortex-A8. It’s an extremely capable machine with a few interesting features that make it the perfect device for embedded applications. With the BeagleBone Green, the BB Black gets a small hardware refresh and a drastic reduction in price. If you want to do real work on a Linux board, this is the one to get. Check out the review below for everything that’s been updated, everything that’s the same, and why this is one of the most interesting developments in small Linux boards in recent memory.
Continue reading “BeagleBone Green Hands-On: Lower Price, Same Horsepower”