Making Models With Lasers

Good design starts with a good idea, and being able to flesh that idea out with a model. In the electronics world, we would build a model on a breadboard before soldering everything together. In much the same way that the industrial designer [Eric Strebel] makes models of his creations before creating the final version. In his latest video, he demonstrates the use of a CO2 laser for model making.

While this video could be considered a primer for using a laser cutter, watching some of the fine detail work that [Eric] employs is interesting in the way that watching any master craftsman is. He builds several cubes out of various materials, demonstrating the operation of the laser cutter and showing how best to assemble the “models”. [Eric] starts with acrylic before moving to wood, cardboard, and finally his preferred material: foam core. The final model has beveled edges and an interior cylinder, demonstrating many “tricks of the trade” of model building.

Of course, you may wish to build models of more complex objects than cubes. If you have never had the opportunity to use a laser cutter, you will quickly realize how much simpler the design process is with high-quality tools like this one. It doesn’t hurt to have [Eric]’s experience and mastery of industrial design to help out, either.

Continue reading “Making Models With Lasers”

The Ultimate Hacker’s Compact 4WD!

If you’ve spent any time at one of the larger European hacker camps over the last few years you’ll have seen the invasion of little electric vehicles sporting hoverboard motors as an all-in-one propulsion system. German hackers, in particular, have incorporated them into the iconic Bobby Car children’s toy, and ca be seen whizzing around looking slightly incongruous as adults perched on transport designed for five-year-olds.

[Peter Pötzi] has created just such an electric Bobby Car, and his one is particularly well-executed with a 3D-printed steering column extender and four motors for full 4WD rather than the usual two. A steering wheel-mounted display has a neat enclosure, and is fed SPI from the ESP32 that runs the show via an RJ45 patch cable. Many of these builds use hoverboard motor controllers with hacked firmware, but this one instead takes a set of off-the-shelf VESCs. Control comes via a set of Xbox 360 trigger buttons mounted to the underside of the steering wheel.

The result is typically self-contained as are all the Bobby Car builds, with the added bonus of the extra power of four motors rather than two. We’re not so sure that 4WD gives it off-road capabilities though, but having seen these vehicles perform some nifty maneuvers in the past perhaps it’ll lend extra traction on corners.

2019 Superconference Is Streaming Live Right Now!

Perhaps Pasadena is a bit too far from home, or maybe you waited a few milliseconds longer than you should have and missed the tickets when they went on sale. Whatever the reason, the fact is that the vast majority of Hackaday readers won’t be able to join us at the 2019 Superconference. But thanks to the magic of the Internet, you’ll still be able to see the incredible talks we’ve got lined up.

Starting at 10 AM Pacific on both Saturday and Sunday, the live stream will allow you to virtually attend the ultimate hardware conference in glorious high definition. Many of the talks this year have a specific focus on FPGAs (and we’ve got an incredible badge to match), but you’ll also see presentations on subjects such as hacking quantum key distribution systems, the creation of free-form circuit sculptures, debugging PCBs with augmented reality, and using Peltier coolers for fermentation. Saturday evening we’ll reveal the winner of the Hackaday Prize live on stage, and come Sunday you can unwind with a look at the best and brightest badge hacks from the weekend.

We won’t lie to you, there’s more going on at Supercon than we can possibly fit into a live video stream. At an event where nearly every flat surface will be playing host to somebody fiddling with a piece of interesting hardware, there’s only so much you can do vicariously. If anyone knows how you can take part in the SMD Soldering Challenge over the Internet, we’re all ears. Whether you’ll be with us in corporeal form or otherwise, don’t forget to join the official 2019 Hackaday Superconference Chat and use the #supercon hashtag on your social media time sink of choice.

The Book Of Dreams Brings Back All Your Memories

The retro-facing side of British social media has been abuzz for the last few days with a very neat piece of marketing form the catalogue retailer Argos: they’ve digitised all their catalogues since 1975 and put them online. While this contains a cross-section of over four decades’ styles, fads, and ephemera, it also gives the browser a fascinating look at a host of retrotechnology from a contemporary viewpoint rather than through the rose-tinted glasses of 2019. It may not be a hack, but we guarantee you’ll spend a while browsing it!

Continue reading “The Book Of Dreams Brings Back All Your Memories”

Sow Your Seed Efficiently With This Multi-Way Drop Seeder

Anyone who has ever had to propagate small plants from seed will know that efficiently sowing seed can be a difficult process. Getting a consistent number of seed in each point while achieving any sort of speed is almost impossible, and as a result it becomes a tedious process. If only there were some means by which it could be automated, perhaps a way to do a whole tray at once!

Fortunately [Michael Ratcliffe] is at hand, with his tray-sized drop seeder. It consists of two sheets of acrylic each with a grid of holes, offset from each other by able to be brought into alignment with a lever. Seed is shaken over the upper surface until all the holes contain some, and then the lever is operated allowing it to drop through into the soil below. There is a matching dibber if required to push the required grid of holes in the soil.

It’s a simple yet ingenious gadget that genuinely will make the lives of horticulturalists a lot easier, even though it might not be perfect for all types of seed. He’s created a video which we’ve placed below the break, and should you wish to create the dibber we’ve already covered it.

Continue reading “Sow Your Seed Efficiently With This Multi-Way Drop Seeder”

Speeding Up IOTA Proof Of Work Using FPGAs

Blockchain has existed as a concept since the early 1990s, but keeping a distributed ledger for IoT transactions wasn’t widely implemented until IOTA developed Tangle. The blockchain company was initially founded as a hardware startup and pivoted to work on transactional settlement for IoT. The Tangle, their distributed ledger architecture based on a directed acyclic graph (DAG) works as a “blockchain without the blocks and the chain”.

As its name implies, the Tangle is a web of transactions that references its past two transactions and a subsection of other transactions. Rather than miners and stakers being responsible for overall consensus, all active participants are involved in the approval of transactions. The transaction process requires the client to sign with their private keys, select two random unconfirmed transactions to be referenced, and perform proof-of-work.

The proof-of-work has an unfortunately high difficulty as you might expect. The process is similar to finding a nonce in Bitcoin mining, although the difficulty is set at a lower threshold due to the transactions running on lower-power nodes. Even so, since IOTA transactions commonly occur on small embedded platforms this can take several minutes to complete, a relatively long time considering these are mere transactions.

Since Curl-P81 hashes should be computed in parallel, they can’t be computed efficiently on general purpose CPUs. The PiDiver 1.3, [Thomas Pototschnig]’s port of the IOTA Reference Implementation (IRI) PearlDiver, performs searches for nonces. Because it runs on FPGAs, it is able to speed up the proof-of-work by a factor of more than 140 when compared to a Raspberry Pi. The FPGA is able to calculate one round of the hash in a single clock cycle, and a complete hash in 85 cycles (as well as testing for a valid nonce). Seven parallel hashes can be calculated at once, giving 15.8MHash/s at a frequency of 188MHz. The proof-of-work takes ~300ms on the FPGA when compared to 90s on a Raspberry Pi, so this is a significant improvement in speed.

Since the project is open source, the core can be used by IRI for creating a modified version of their PearlDiver.  The board can be used as a Raspberry Pi HAT, although it can also be connected via USB to work without the Pi.

While this doesn’t address the security concerns of using IOTA with personal IoT devices, it is certainly a significant improvement on the speed of their proof-of-work process, and the software speedup is incredibly satisfying to watch.

Continue reading “Speeding Up IOTA Proof Of Work Using FPGAs”

This Is The Bike You Wanted Your Dad To Make You When You Were Eight Years Old!

The ever-resourceful [Turbo Conquering Mega Eagle] has an excellent excuse for starting on projects, he’s building them for his kids and making videos. We’re not so sure his little motorcycle wasn’t built because Dad also wants to have a go though, because it seems he had quite a lot of fun testing it.

The build starts with a Chinese petrol conversion kit for a bicycle. There’s a little twofour-stroke motor and a basic chain drive to a large sprocket intended to fit on the opposite side of a bicycle wheel to the pedal sprocket. He uses a pair of pneumatic wheelbarrow wheels for which he makes a new bush and to which he welds the sprocket. These go into a fairly simple hardtail frame for which he makes a padded motorcycle seat, and from then on he’s ready to go.

The result is a rather cool little non-road-legal motorcycle that we suspect most readers will have a hankering to own. We’re not so sure about its seeming lack of brakes though. Judge for yourself, the video is below the break.

This isn’t the first home made small bike we’ve brought you, though it’s a lot safer than the first one.

Continue reading “This Is The Bike You Wanted Your Dad To Make You When You Were Eight Years Old!”