search for: lowvolt

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

2005 Aug 18
1
Help with Fenton model capability table
Hi, I am working on a patch for FENTON.H to support some more ups models, I wonder if someone can help with further information,meaning and importance for the following values that are beeing set in the model capability table: float lowvolt; float voltrange; float chrglow; float chrgrange; int lowxfer; int lownorm; int highnorm; int highxfer; Thanks, Nadav
2008 Feb 06
2
Problem with bestfcom and old Ferrups
I have an old (1997) Best Ferrups (model FE18KVA) that I am trying to monitor for the first time, but all the Best drivers fail to communicate with it. In ups_sync() in bestuferrups.c and bestfcom.c, the "time" command is sent and a one-line response is read. However, on my UPS, that command returns the current time and then prompts for a new time setting. I worked around that by just
2006 May 12
1
Fwd: RE New xanto driver for NUT
Dear Andreas, some googling revealed, you created a driver for the xanto series of online-usv.de. In what state it is currently? I've to manage a S2000 and would like to use nut for it, is it usable by now? Do you need another tester? TIA, Pete
2006 Jul 24
2
fentonups driver patch for Effekta MHD3000 UPS
...entonups.c 2005-05-26 14:22:27.000000000 +0200 --- /usr/src/redhat/BUILD/nut-2.0.3/drivers/fentonups.c 2006-07-24 16:20:19.000000000 +0200 *************** *** 30,38 **** --- 30,52 ---- #define DRV_VERSION "1.22" static int cap_upstemp = 0; + static int is_online = 0; static float lowvolt = 0, voltrange, chrglow = 0, chrgrange; static int lownorm, highnorm; + static void sendcr_and_clear_buf(void) + { + int ret; + + ret = ser_send(upsfd, "\r"); + + usleep(300000); + + if (ret != 1) + upslog(LOG_ERR, "sendcr_and_clear_buf: ser_send failed"); + ser_f...
2006 Apr 26
1
RE nut 2.0 fentonups and Xanto S3000R
...t.voltage: 230.0 ups.load: 052 ups.mfr: Online ups.model: Xanto S3000R ups.status: OL ups.temperature: 28.0 $OpenBSD$ --- drivers/fentonups.c.orig Tue Apr 25 23:33:03 2006 +++ drivers/fentonups.c Wed Apr 26 00:11:06 2006 @@ -33,14 +33,17 @@ static float lowvolt = 0, voltrange; static int lownorm, highnorm; /* handle devices which don't give a properly formatted I string */ -static int check_mtab2(const char *raw) +static int check_mtab2(const char *raw, int israw) { int i; char...