Networking: Pin The Tail On The Headless Raspberry Pi

Eager to get deeper into robotics after dipping my toe in the water with my BB-8 droid, I purchased a Raspberry Pi 3 Model B. The first step was to connect to it. But while it has built-in 802.11n wireless, I at first didn’t have a wireless access point, though I eventually did get one. That meant I went through different ways of finding it and connecting to it with my desktop computer. Surely there are others seeking to do the same so let’s take a look at the secret incantations used to connect a Pi to a computer directly, and indirectly.

Continue reading “Networking: Pin The Tail On The Headless Raspberry Pi”

Up, Up, Up: $2k More Seed Funding For Projects That Matter

Getting a project off the ground often means an up-front investment in parts. Hackaday is upping our efforts to smooth out that obstacle for those who want to Build Something That Matters. Seed funding for the 2017 Hackaday Prize is simple, enter your design plans, share it far and wide so that a lot of people will show their admiration with a ‘like’ on the project page. You get a dollar for each like to help jump-start the build phase.

This year has started off like a rocket. Last week we passed the $4000 seed funding limit even though there’s still two weeks left in the Design Your Concept round. We’re raising the pot to a total of $6000. That means there’s more up for grabs. Enter your project now. If you’ve already done that, polish up your presentation and show it around to your friends and on social media. You’ll get a dollar for every like up to $200 max, or until we undoubtedly reach the new limit once again. Don’t delay, it’s time to Build Something that Matters!

Electronifying A Horror Fraught Hydraulic Press

[Josh] is replacing the springs in his car’s suspension. He wanted to know the travel rates of these springs, but apparently, this is a closely guarded trade secret in the industry. One company did manage to publish the spring rates, but they weren’t believable. Instead of taking this company’s word, [Josh] built a spring tester.

The theory behind a spring tester is pretty simple: apply a force to a spring, measure it, then measure how much the spring has traveled. Or compress a spring an inch or so, measure the force, and compress it some more. Either gets you the same data.

This spring tester is built around a Harbor Freight hydraulic press. Yes, the spring is completely captured and won’t fly out of the jig if you look at it wrong. The bottom of the press contains a few load cells, fed into an ATmega8, which displays a value on an LCD. For the displacement measurement, a ruler taped to the side of the press will suffice, but [Josh] used a Mitutoyo linear scale.

What were the results of these tests? You shouldn’t buy coils from Bilstein if these results are correct. The rates for these springs were off by 70%. Other springs fared better and won’t bind when going over bigger bumps. That’s great work, and an excellent application of Horror Fraught gear.

The Surface Area To Volume Ratio Or Why Elephants Have Big Ears

There are very few things that are so far reaching across many different disciplines, ranging from biology to engineering, as is the relation of the surface area to the volume of a body. This is not a law, as Newton’s second one, or a theory as Darwin’s evolution theory. But it has consequences in a diverse set of situations. It explains why cells are the size they are, why some animals have a strange morphology, why flour explodes while wheat grains don’t and many other phenomena that we will explore in this article.

Continue reading “The Surface Area To Volume Ratio Or Why Elephants Have Big Ears”

Making Tension Based Furniture

[Robby Cuthbert,] an artist and designer based out of Fort Collins, Colorado is creating stable cable tables that are simultaneously a feat of engineering and a work of art.

[Cuthbert’s] tables are held together by 1/16″ stainless steel cables that exert oppositional tensions that result in a structurally stable and visually appealing coffee table. In his video, [Cuthbert] leads us through his process for creating his tables, step by step. [Cuthbert] starts by cutting out bamboo legs on his CNC mill. He then drills holes in each leg for cables and mounts each leg on his custom table jig. Then, he attaches the stainless steel cabling taking care to alternate tension direction. The cables are threaded through holes in the legs and affixed with copper crimps. After many cables, he has a mechanical structure that can support his weight that also looks fantastic. All in all, [Cuthbert’s] art is a wonderful example of the intersection of art and engineering.

If we’ve whet your appetite, fear not, we have featured many tension based art/engineering hacks before. You might be interested in these computer-designed portraits or, if the thought of knitting by hand gives you the heebie-jeebies, the Autograph, a string art printer might be more your style.

Video after the break.

Continue reading “Making Tension Based Furniture”

Brazil Wins The Raspberry Pi Overclocking Olympics

[Alex Rissato] proudly reports that he now holds the record for highest benchmark score on HWBOT (machine translation); something he sees not only as a personal achievement but admirably, of national pride. Overclocking a Raspberry Pi is not as simple as achieving the highest operational clock rate. A record constitutes just the right combination of CPU clock, memory clock, GPU clock and finally the CPU core voltage. If you’ve managed to produce that special sauce, the combination must be satisfactorily cooled and most importantly be stable enough to pass an actual performance benchmark.

More POWAAA to the CPU!

[Alex] realized that the main hurdle to achieving the desired CPU clock was the internally generated and hence restricted, CPU core voltage; This is externally LC filtered and routed back to the CPU on a stock Pi. [Alex] de-soldered the filter on the PCB and provided the CPU with an externally generated core voltage.

Next, the cooling had to be tended to. Air cooling simply wouldn’t cut it, so a Peltier based heatsink interface had to be devised with the hot side immersed in a bucket of salt water. All of this translated to a comfy 16C at a clock speed of 1600 MHz.

Was all the effort justified? We certainly think it was! Despite falling short of the Pi zero CPU clock rate record, currently set at 1620MHz,  [Alex] earned the top spot in the HWBOT Prime overclocking benchmark. Brazil can now certainly add this to its trophy cabinet, arguably overshadowing the 129 Olympic medals.

A Real Hacker’s IDE

We don’t use a GUI IDE, but if we did, it would most certainly be something along the lines of [Martin]’s embedded-IDE project. We’ve always felt that most IDEs are just fancy wrappers around all the tools that we use anyway: Makefiles, diff, git, ctags, and an editor. [Martin]’s project makes them less fancy, more transparent, and more customizable, while retaining the functionality. That’s the hacker’s way — putting together proven standard tools that already work.

The code editor he uses is QScintilla, which uses clang for code completion. The “template” system for new projects? He uses diff and patch to import and export project templates. Because it uses standard tools all along the way, you can install the entire toolchain with sudo apt-get install clang diffutils patch ctags make on an Ubuntu-like system. Whatever compiler you want to use is supported, naturally.

We can’t see a debugger interface, so maybe that’s something for the future? Anyway, if you want a minimalistic IDE, or one that exposes the inner workings of what it’s doing rather than hiding them, then give [Martin]’s IDE a try. If you want more bells and whistles that you’re not going to use anyway, and don’t mind a little bloat and obscuration, many of our writers swear by Eclipse, both for Arduino and for ARM platforms. We’ll stick to our butterflies.