A Better Embroidery Machine, With 3D Printing And Common Parts

In concept, an everyday sewing machine could make embroidery a snap: the operator would move the fabric around in any direction they wish while the sewing machine would take care of slapping down stitches of colored thread to create designs and filled areas. In practice though, getting good results in this way is quite a bit more complex. To aid and automate this process, [sausagePaws] has been using CNC to take care of all the necessary motion control. The result is the DIY Embroidery Machine V2 which leverages 3D printed parts and common components such as an Arduino and stepper drivers for an economical DIY solution.

It’s not shown in the photo here, but we particularly like the 3D printed sockets that are screwed into the tabletop. These hold the sewing machine’s “feet”, and allow it to be treated like a modular component that can easily be removed and used normally when needed.

The system consists of a UI running on an Android tablet, communicating over Bluetooth to an Arduino. The Arduino controls the gantry which moves the hoop (a frame that holds a section of fabric taut while it is being embroidered), while the sewing machine lays down the stitches.

[sausagePaws]’s first version worked well, but this new design really takes advantage of 3D printing as well as the increased availability of cheap and effective CNC components. It’s still a work in progress that is a bit light on design details, but you can see it all in action in the video embedded below.

Continue reading “A Better Embroidery Machine, With 3D Printing And Common Parts”

The Bluetooth LCD Sniffer You Didn’t Know You Needed

At one time or another, we’ve all suffered through working with a piece of equipment that didn’t feature a way to export its data to another device. Whether it was just too old to offer such niceties, or the manufacturer locked the capability behind some upgrade, the pain of staring at digits ticking over on a glowing LCD display and wishing there was a practical way to scrape what our eyes were seeing is well known to hackers.

That was precisely the inspiration for DoMSnif, the dot matrix LCD sniffer that [Blecky] has been working on. Originally the project started as a way to record the temperature of his BRTRO-420 reflow oven, but realizing that such a device could have widespread appeal to other hardware hackers, he’s rightfully decided to enter it into the 2019 Hackaday Prize. If perfected, it could be an excellent way to bolt data capture capabilities to your older devices.

The first phase of this project was figuring out how to capture and parse the signals going into the device’s KS0108 LCD. Getting the data was certainly easy enough, he just had to hook a logic analyzer up between the display and the main board of the device. Of course, figuring out what it all means is a different story.

After running the oven for a bit with the analyzer recording, [Blecky] had more than enough data to get started on decoding it. Luckily, the layout of this fairly common 128×64 pixel display is well documented and easy enough to understand. With a little work, he was able to create a tool that would import the captured data and display it on a virtual LCD.

Unfortunately, the Bluetooth part is where things get tricky. Ultimately, [Blecky] wants to ditch the logic analyzer and use a Adafruit Feather nRF52 Bluefruit to capture the signals going to the LCD and pipe them to a waiting device over Bluetooth. But his testing has found that the nRF52’s radio is simply too slow. The display is receiving data every 14us, but it takes the radio at least 50us to send a packet.

[Blecky] is looking at ways around this problem, and we’re confident he’ll crack it. The solution could be in buffering and compressing the data before sending it out, though you’d lose the ability to monitor the display in real-time. Even if he has to abandon the Bluetooth aspect entirely and make the device wired, we still think there would be a market for an easy to use hardware and software solution for scraping LCD data.

Popstick Fan Car Is A Fun Bluetooth Build

Archer fans already know, but for the rest of the world it bears saying – boats are fine, but fan boats are better. It’s much the same with land vehicles, too. [tinkeringtech] felt the same way, and built a Bluetooth-controlled fan car to scoot around the floor. (YouTube, embedded below.)

Construction starts with a series of popsticks glued together to create a chassis. Twist ties are then used to act as axles for bottle cap wheels, while steering is handled by a cardboard rudder controlled by a servo. Propulsion is via a pair of pager-sized motors fitted with fans. An Adafruit Bluefruit Feather M0 runs the show, receiving commands over Bluetooth and driving the motors through an H-bridge chip in the center of the vehicle.

It’s a fun craft-style build that would be a great project for kids interested in electronics and making. It teaches basic electronics, as well as serving as a good introduction into the world of microcontrollers. It’s one of the smaller radio-controlled builds we’ve seen, but you can always go full-scale if that takes your fancy.

Continue reading “Popstick Fan Car Is A Fun Bluetooth Build”

A 3D Printed Micro:Bit Nunchuk

As [Paul Bardini] explains on the Thingiverse page for his “Micro:Bit Hand Controller”, the Bluetooth radio baked into the BBC’s educational microcontroller makes it an ideal choice for remotely controlling things. You just need to give it a nice enclosure, a joystick, a couple of buttons, and away you go. You can even use the integrated accelerometer as another axis of control. This is starting to sound a bit familiar, especially to gamers.

While it might not come with the Official Nintendo Seal of Quality, the 3D printable enclosure [Paul] has come up with for the Micro:Bit certainly takes more than a little inspiration from the iconic Wii “Nunchuck” controller. He’s jostled around the positions of the joystick and momentary buttons a bit, but it still has that iconic one-handed ergonomic styling.

In a particularly nice touch, [Paul] has built his controller around a Micro:Bit breakout board from SparkFun that allows you to plug the microcontroller in via its edge connector. This means you can pull the board out and still use it in other projects. The only other connection to the controller leads to the battery, which uses a two pin JST-PH plug that can easily be removed.

Thanks to this breakout board, the internal wiring is exceptionally simple. The joystick (the type used in a PS2 controller) and the buttons are simply soldered directly to pins on the breakout board. No passives required, just a few short lengths of flexible wiring to snake through the printed enclosure.

The Thingiverse page only has the STLs for the two halves of the controller, and no source code for the Micro:Bit itself. But it shouldn’t be terribly hard to piece together the basic functionality with example code that’s floating around out there. Especially since you can run Python on them now. Of course, you could also add Bluetooth to the original Wii version if you’re not looking to reinvent the wheel nunchuck.

Booting The Game Boy Advance Into Bluetooth

While it might not be quite as revered as its predecessor, the Game Boy Advance is arguably the peak of “classic” handheld gaming, before things got all 3D and dual screen on us. One of its best features is the so-called multiboot mode, which allows the GBA to download a program from its link port. Officially this feature was introduced so you could play multiplayer with your friends even if they didn’t have the game cartridge, but naturally it didn’t take long for hackers to realize you can use it to run arbitrary code on an unmodified system.

[Shyri Villar] has put this capability to excellent use with a plug-in board that allows a stock GBA to be used as a general purpose Bluetooth HID controller. Now you can emulate GBA games on your computer while using the real thing as your input device. Or if that’s a bit too redundant for you, then any 2D game you think could benefit from the classic Game Boy control layout.

An ATmega328P on the board initiates the multiboot sequence when the system powers up, and feeds it the GBA program that’s stored on a W25Q32 chip. Once the code is running on the GBA, it communicates with a common HC-05 Bluetooth module through the same link port. To perform this handoff, [Shyri] uses a HCF4066 switch IC to literally change the pin assignments in the connector from the SPI used to upload the ROM to the UART lines of the Bluetooth module.

With everything powered from the 3.3 V provided by the GBA’s link port, and some software niceties like the ability to store Bluetooth pairing information for subsequent device connections, this is actually a very practical gadget. The fact that you can do this on a completely stock GBA is very compelling, especially considering some of the previous Bluetooth Game Boy modifications we’ve seen. Granted the market might be somewhat limited, but with a custom PCB and a 3D printed enclosure, we could see this potentially being a popular accessory for the classic handheld. It’s not like it can be any more niche than using the GBA as a remote display for your multimeter.

Adding Bluetooth Control To A Benchtop Power Supply

In 2019, it’s possible to kit out a lab with all the essentials at an even cheaper price than it has ever been. The DPS3005 is one such example of low-cost equipment – a variable power supply available for less than $50 with a good set of features. [Markel Robregado] wanted a little more functionality, however, and got down to work.

The crux of [Markel]’s project is improved connectivity. A Texas Instruments CC2640R2F Launchpad is employed to run the show, with its Bluetooth Low Energy capability coming in handy. A custom smartphone app communicates with the Launchpad, which then communicates with the power supply over its Serial Modbus interface. Through the app, [Markel] can set the voltage and current limit on the power supply, as well as switch it on and off. This could prove useful, particularly for remote triggering in the case of working with dangerous projects. Sometimes it pays to take cover, after all.

We’ve seen power supplies modified before; this pot mod for higher precision is a particular treat. If you’ve hacked your bench hardware for better performance, let us know. Video after the break.

Continue reading “Adding Bluetooth Control To A Benchtop Power Supply”

A Stylish Solution For Bike Navigation

[André Biagioni] is developing an open hardware bicycle navigation device called Aurora that’s so gorgeous it just might be enough to get you pedaling your way to work. This slick frame-mounted device relays information to the user through a circular array of SK6812 RGB LEDs, allowing you to find out what you need to know with just a quick glance down. No screen to squint at or buttons to press.

The hardware has already gone through several revisions, which is exactly what we’d expect to see for an entry into the 2019 Hackaday Prize. The proof of concept that [André] zip-tied to the front of his bike might have worked, but it wasn’t exactly the epitome of industrial design. It was enough to let him see that the idea had merit, and from there he’s been working on miniaturizing the design.

So how does it work? The nRF52832-powered Aurora connects to your phone over Bluetooth, and relays turn-by-turn navigation information to you via the circular LED array. This prevents you from having to fumble with your phone, which [André] hopes will improve safety. When you’re not heading anywhere specific, Aurora can also function as a futuristic magnetic compass.

With what appears to be at least three revisions of the Aurora hardware already completed by the time [André] put the project up on Hackaday.io, we’re very interested in seeing where it goes from here. The theme for this year’s Hackaday Prize is moving past the one-off prototype stage and designing something that’s suitable for production, and so far we’d say the Aurora project is definitely rising to the challenge.

Continue reading “A Stylish Solution For Bike Navigation”