Energi consumption difference
Posted: Sun Dec 05, 2010 1:57 pm
Hi all
Does the computer use more energy by connecting to the internet and checking mails than doing delay()?
In code:
Which one consumes the most?
Thank you
Does the computer use more energy by connecting to the internet and checking mails than doing delay()?
In code:
Code: Select all
Repeat
ConnectmailServer()
Check mails()
DisconnectMailServer()
ForEver
Vs.
Repeat
ConnectmailServer()
Check mails()
DisconnectMailServer()
Delay(10000)
ForEver
Thank you