tags:

views:

1136

answers:

4

I want to be able to turn my PC on and off using an IR-remote sensor that is connected via USB to the PC. The sensor is a custom PCB implemented with an AVR microprocessor and V-USB software USB-implementation.

Now, turning off the PC is no problem with software, but is there any way to turn ON the PC using USB?

(Please note, I'm not talking about booting from USB-stick or USB-power supply ...)

+2  A: 

Here is the solution: http://www.my-irshop.de/catalog/product%5Finfo.php?products%5Fid=72
unfortunately, the page is in german, but I guess it will be no problem for you to translate it via google etc.

There seem to be two problems:

  • keeping the USB powered on while the PC is off. It seems that most mainboard have a jumper for this functionality.
  • bringing the PC back to life. There seems to be no standard functionality for this. The solution is to "press" the PCs power button through the AVR on the USB board. I know, this means extra cable from the USB to the PC, but it seems to be the easiest solution.

Another workaround could be to send the power-on signal to the PC over ethernet. But I guess this will be more complicated than the power button solution and it involves extra cables too.

HTH

Ralf
Keeping the USB device powered is no problem (a BIOS setting on my mainboard). I will go for a solution like yours, adding a transistor in parallell with the start button.
Jonatan
A relay might be cheaper than a transistor rated at the power you need... unless all you need is a control line that attaches to relays or power switching within the power supply.
Paul
it's only the start button, not the power switch. so a transistor should work.
Ralf
A: 

Hey, there must be a way to do this with USB, since some PCs can be switched on with the keyboard. I think this will be some looking whether your mainboard/BIOS support it (it may be you need to turn it on in BIOS, this will probably also ensure your device gets power from USB although the PC is switched off), and whether that V-USB (unknown to me) can send the "wakeup"-signal.

good luck !

lImbus
A: 

This Microsoft knowledgebase article describes how to enable "wake on USB" for a USB mouse. I just checked, and my keyboard device entry (on Windows Vista) has the same choice, already checked.

So, if you AVR is emulating a USB keyboard or mouse, it should be possible to wake the computer by sending the proper data.

unwind
A: 

How "off" does the PC need to be? Is waking from sleep/suspend enough? The USB standard describes "remote wake-up".

Aside from enabling remote-wakeup, like unwind mentions, software on the PC is not involved in making this work.

Ben Voigt