hello, is there a way to wake up a PC with an AVR-USB device? I want to build a remote control to wake up my PC via USB.
As an alternative, I could connect my device to a Fritzbox DSL modem and create a WakeOnLan paket. But therefore I need the usblib on the fritzbox, would this be possible?
WakeOnUSB
When the PC is in sleep mode, you can wake it with an USB RESET status for a couple of CPU cycles. You could do this with:
If the PC is powered off, this won't help.
Code: Select all
usbDeviceDisconnect();
for(i=0;i<10;i++);
usbDeviceConnect();
If the PC is powered off, this won't help.