search for: on_battery

Displaying 5 results from an estimated 5 matches for "on_battery".

Did you mean: low_battery
2006 May 17
1
upsmon/upssched shutdown problem
...'t look like upsmon calls upssched or starts a timer. Perhaps I'm mistaken in how I think the slave should act? What I'd like to be able to do, is have a ranking of machines such that one class of machine shut themselves down after some very short amount of time (~30 seconds?) of on_battery; another class shuts themselves down at some low battery level, and the master shut itself and the UPS itself down last. Any pointers/help would be GREATLY appreciated. Thanks! Paul
2009 Jan 26
1
ups emerson liebert GTX2 ESP-II serial protocol demo
...ME: GXT2-10000T230 > FW_VER: GXT2-00896V04 > SN: 08009R0056BW932 > MANUF_DATE: 04JAN08 > PFC_ON: YES > DC_DC_CONVERTER_STATE: NO > ON_INVERTER: YES > UTILITY_STATE: NO > INRUSH_LIMIT_ON: NO > OVERTEMP_WARNING: NO > BATTERY_TEST_STATE: NO > INPUT_OVERVOLTAGE: NO > ON_BATTERY: NO > ON_BYPASS: NO > BATTERY_CHARGED: YES > BATTERY_LIFE_ENHANCER_ON: NO > REPLACE_BATTERY: NO > BOOST_ON: NO > DIAG_LINK_SET: NO > BUCK_ON: NO > UPS_OVERLOAD: NO > BAD_INPUT_FREQ: NO > SHUTDOWN_PENDING: NO > CHARGER_FAIL: NO > LOW_BATTERY: NO > OUTPUT_UNDERV...
2013 Jun 19
0
[HCL] StarPower PCF-800va supported by richcomm_usb
...ductid: 1234 ups.serial: unknown ups.status: OL ups.vendorid: 0925 //// ....shutdown test....works -- signal of low battery received from UPS, system shutdown cleanly, no apparent issues here... NB: rudimentary support only..ie; no additional information displayed from UPS in nutmon, just online/on_battery/low battery -> shutdown Unit was purchased in .AU -- there are several models of different capacity. They are sold under the 'StarPower' branding, but manufactured by Sako ... see; http://www.sako.com.cn/products01.asp?Id=29&proid=53 Configuration of nut was straightforward, no su...
2009 Oct 18
3
liebert GTX2 ESP-II serial support
2009/10/15 Farkas Levente <lfarkas at lfarkas.org> > hi, > i read your thread at: > > http://lists.alioth.debian.org/pipermail/nut-upsdev/2009-January/003772.html > > http://lists.alioth.debian.org/pipermail/nut-upsdev/2009-January/003775.html > we've got exactly the same problem that we need a nut driver for liebert > ups. is there any progress in this field?
2010 Apr 02
7
Liebert GXT2 NUT driver
Hi guys, I found the troblue and fix it! I attached the patch. The trouble was in the command reply buffer use. You compute the value that value = reply[6]*256+reply[5] <- it's wrong The right solution: value = reply[5] * 256 + reply[6]; And other bug, battery.runtime compute, you divide this value 60 <- it's wrong right value: divide 1.0 I continue the work on this