How can a device reboot itself? Like how does it know to turn on again when it’s off?

782 views

How can a device reboot itself? Like how does it know to turn on again when it’s off?

In: Technology

3 Answers

Anonymous 0 Comments

[deleted]

Anonymous 0 Comments

It doesn’t turn off. It just sets the essential values to an initial setting, and tells the CPU ( or whetever is controlling it) to start running from its initial start position.

Anonymous 0 Comments

The other answers are great, but to give some greater detail: computers have a system known as [ACPI](https://en.wikipedia.org/wiki/Advanced_Configuration_and_Power_Interface) that allows the Operating System to directly control the machine’s power state. ACPI works at the firmware level, which is why it’s able to have such intimate control over the hardware. When you give your OS a command like “shutdown” or “reboot” it sends a command through the ACPI in order to fulfill the request.

ACPI is also the reason why your operating system is able to put the computer to sleep when it’s been idle for too long or because you close the lid.