DIY Amplifier Minder Turns Off Your Stereo When You Forget

arduino_receiver_minder

[zmashiah] has a nice Nova tube amplifier in his living room, and he often forgets to turn it off once he’s done listening to music. He feels guilty when this happens, as it not only shortens the lifespan of his stereo, but it’s not exactly the greenest behavior either. Rather than let his receiver idle any longer, he built a simple device that automatically turns it off when he forgets.

He wired an Arduino to the line level output of the receiver, sampling the audio every two seconds. When five minutes pass without an audio signal, the Arduino sends an IR command to the receiver, turning it off.

He says he’s aware that it might be overkill to use an Arduino for this application, but that he would rather fork out an extra dollar or two instead of spending hours poring over AVR assembly code. While we’re all for efficiency, we can’t exactly argue with that logic – time is money!

[zmashiah] is kind enough to include his schematics as well as the code for his project, so be sure to check it out if you occasionally forget to turn off your IR-enabled appliances.

23 thoughts on “DIY Amplifier Minder Turns Off Your Stereo When You Forget

    1. How about using a diode to make an envelope detector, followed by a comparator driving a capacitor at the base of a FET and relay?

      No digital stuff needed at all. I use two of these just fine and the total cost of all parts was under $5.

      1. Hello,
        I am a beginner and don’t have much expertise in electronic circuitry , but could you please tell me in detail about assembling a ” diode to make an envelope detector, followed by a comparator driving a capacitor at the base of a FET and relay”.

        Thank you

        Regards,
        Yatin

  1. Agreed. Too many Arduino users seem clueless and misinformed about other ways of doing things, and that’s sad.

    But no doubt he still did save some time by using an Arduino, and it is a very useful project. I like it!

  2. In creating a one view instructable I wonder if zmashiah, is aware of the complaints of needing to be a “pro” user to view instructables as a single page? I also have noticed some instructable creators including a PDF file of their project within the instructable, thus bypassing the need to use the instructables’ download PDF feature to be able to view offline. I hope to get a glow in the dark HF receiver if/when one come available, at reasonable price when I can afford it. I’ll need to keep this idea in mind. This is a hack that require hacking to be usable with hollowstate equipment other than this remote controllable amp.

    1. If you use the “Autopager” extension for firefox, all pages are concatenated. Give it a try – works well for Hackaday too, along with other sites. I hate clicking “next page”, I just want to keep scrolling when I read!

  3. Many people are not aware that it is not all that much more difficult to use the entire line of attiny/atmega chips with C than it is to use the arduino environment. They just need to know where to look and how to get started.

    Smiley’s tutorials are a great place to start, especially this one.

    Nice build, btw. Add a small electret mic and you wouldn’t have to put any more load on the output channel.

  4. I’m pretty sure that turning a tube amp on and off is the fastest way to wear it out…most of the energy used in the lifetime of a device is in the manufacturing process. If you wear it out faster and have to buy a new one, I think you’re being largely counter-productive.

  5. You don’t need a microprocessor to build something like this at all.

    Take the audio, buffer it with an op-amp, and drive the reset pin on a one-shot. Set the timeout period to something fairly long… let’s say 5 minutes.

    The one-shot drives a transistor, which in turn, drives a relay to the control amplifier power source.

    A push button could be used to toggle the one-shot and turns the amp on. From that point on, as long as you don’t have more than 5 minutes of silence, the amp will stay on. If you have silence for more than 5 minutes, the one-shot times out and the amp is turned off.

    Come to think of it, this would be a nice application for a 555.

  6. I know some of you are critical of the “overkill” of using an Arduino but I must confess I have used them for projects at work. An Arduino nano can be had for less than $20 and it includes the microcontroller, the programmer and a voltage regulator all wired up. I attach the devices to be controlled and away I go. Time is money and doing anything more wastes time. Now if I was going to build 10,000 devices then maybe there is a more cost effective way.

    1. Are you talking about the overkill of using an Arduino compared to some other uC or the overkill of using a microcontroller for a job that could be effectively done by using by using an opamp and very small handful of passive components which can be had for less than $1 and require zero coding?

  7. I hacked something together for similar reasons to turn off a tv and an amp when my htpc went to sleep. In my case I needed the arduino for the serial control of the amp and the IR control of the tv, and since the htpc is a Mac mini I needed the outputs anyway. I wish I could have hooked it to the display signal (tv doesn’t sleep with no signal) but I didn’t know of a way to get to that when using hdmi

  8. 555’s and analog would work, as suggested. But would you really want to regularly shut off a $1,200 amp by cutting the AC power with a relay, which is essentially just pulling the plug?

    Turning it off with the IR code is no doubt gentler on the equipment. A microcontroller is the right choice here.

Leave a Reply to DaxCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.