A good hacker hates to throw away electronics. We think [Matt Gruskin] must be a good hacker because where a regular guy would see a junky old 1980’s vintage Fisher Price cassette player, [Matt] saw a retro stylish Bluetooth speaker. His hack took equal parts of electronics and mechanics. It even required some custom 3D printing.
You might think converting a piece of old tech to Bluetooth would be a major technical challenge, but thanks to the availability of highly integrated modules, the electronics worked out to be fairly straightforward. [Matt] selected an off the shelf Bluetooth module and another ready-to-go audio amplifier board. He built a custom board to convert the stereo output to mono and hold the rotary encoder he used for the volume control. An Arduino (what else?) reads the encoder and also provides 3.3V to some of the other electronics.
The really interesting part of the hack is the mechanics. [Matt] managed to modify the existing mechanical buttons to drive the electronics using wire and hot glue. He also added a hidden power switch that doesn’t change the device’s vintage look. Speaking of mechanics, there’s also a custom 3D printed PCB holder allowing for the new board to fit in the original holder. This allows [Matt] to keep the volume control in its original location





The most simple piece of logic is inversion; making a high change to low or a low change to high. Shown are a couple of ways to write an inversion including the ubiquitous “bubble” that we can apply almost anywhere to imply an inversion or a “True Low”. If it was a one it is now a zero, where it was a low it is now a high, and where it was true it is now untrue.
Moving on to the AND gate we see a simple truth table, also known as a Boolean Table, where it describes the function of “A AND B”. This is also our first opportunity to see the application of an alternate symbol. In this case a “low OR a low yields a low”
Most if not all of the standard logic blocks come in an inverted form also such as the NAND gate shown here. The ability to invert logic functions is so useful in real life that I probably used at least three times the number of NAND gates as regular AND gates when doing medium or larger system design. The useful inversion can occur as spares or in line with the logic.
