Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

In "contact" with UPS device ?

Status
Not open for further replies.

VBakias

MIS
May 24, 2005
219
GR
Hi there,

suppose that a pc has also a UPS device connected. This comes also with a program to install, that after some time (depending on UPS' capacity) the program will start the procedure to turn off the pc.

My question is, (apart from the program and its functionallity): can i somehow detect if the pc is on by the UPS' current? This could help me propably with a timer control to store some unfinished settings and last to terminate the program.
Then the pc after some time will be turned normally off by the UPS' program.


Tnx!
 
Interactive UPS systems usually come with a USB or Comm-port connection. The UPS application communicats with the UPS over that connection and if the UPS does not have a power supply and it's levels are draining, the software will send shutdown commands to all of the processes and the shut down the computer.

-Rick

VB.Net Forum forum796 forum855 ASP.NET Forum
[monkey]I believe in killer coding ninja monkeys.[monkey]
 
Often the program supplied by the UPS vendor will have the ability to shut down running applications.

If not, you would then monitor for the WM_POWERBROADCAST windows message, which has parameters like:
PBT_APMPOWERSTATUSCHANGE and PBT_APMBATTERYLOW.

For the power status change message, you would call the GetSystemPowerStatus function to find out what happened (on battery, power restored, etc).

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
Forgot to mention that those are all win32 functions.

In the .net framework v1.1, this is only exposed by the ServiceBase class, which is inherited by Windows Services (not available to your typical winform application program, in other words).

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
I know that the UPS is connected to the pc through usb or com1-2. So i can't detect in a win app and not with a widows service that the power is off and the power supply is from the UPS ?
 
Assume that there is a voltage breakdown. The pc will shut down immediately unless there is a UPS device. Can I detect if the UPS does the power supply for the pc ?
 
The software that communicates with the UPS should be able to tell you if the UPS is powered. There is likely an API for that software that will tell you. The software may even try to update the windows settings to tell the machine that it is running off of battery power. if that's the case, then you can use the wind32 api to get the power state.

-Rick

VB.Net Forum forum796 forum855 ASP.NET Forum
[monkey]I believe in killer coding ninja monkeys.[monkey]
 
Can you provide some more help about this win32 API ?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top