search for: s00r0000

Displaying 8 results from an estimated 8 matches for "s00r0000".

2015 Jan 03
0
nutdrv_qx and Best Power equipment
...ds to the LED pattern for the first entry in the table. When I incremented it a few times, it increased. > Implemented: https://github.com/zykh/nut/tree/bestups Before I merge it (well.. provided that it works..), I'd like to know a couple of things more: 1. does the load.off command ('S00R0000') work? 2. does the 'C' command (mapped as shutdown.stop and load.on) turn the load on if executed while the ups.delay.start time elapses after having fired a shutdown.return? 3. (OK, I lied - 3 things more) does the shutdown.stayoff command ('SnR0000') work? Thanks for your pa...
2014 Nov 09
3
nutdrv_qx and Best Power equipment
On Nov 7, 2014, at 5:31 PM, hyouko at gmail.com wrote: >> Sure enough, it turned off after about 30 seconds (t=228). I unplugged it for about five seconds, and it came back on three minutes after I plugged it back in. However, the bypass bit inversion might be responsible for this: >> >> 228.304623 send: 'Q1' >> 228.515426 read: '(119.0 119.0 000.0 000
2015 Jan 18
2
nutdrv_qx and Best Power equipment
On Fri, Jan 2, 2015 at 7:31 PM, hyouko at gmail.com <hyouko at gmail.com> wrote: > Before I merge it (well.. provided that it works..), I'd like to know > a couple of things more: > 1. does the load.off command ('S00R0000') work? load.off works. > 2. does the 'C' command (mapped as shutdown.stop and load.on) turn the > load on if executed while the ups.delay.start time elapses after > having fired a shutdown.return? I only tested the following case, but yes: 1) removed power 2) ran shutdown....
2012 Apr 27
2
HCL: Zigor Danubio 2000 supported(ish) by blazer_usb
http://www.zigor.com/uk/index.php/en/products/upssystems/danubioseries Ships with UPSilon 2000 software, and appears to work with blazer_usb to a certain extent with the following config: [danubio] driver = blazer_usb langid_fix = 0x409 port = stupidly, I seem to have to set this even though it's ignored vendorid=0001 productid=0000 Yes, vendor 0001,
2015 Jan 18
0
nutdrv_qx and Best Power equipment
...les Lepple <clepple at gmail.com> wrote: > On Fri, Jan 2, 2015 at 7:31 PM, hyouko at gmail.com <hyouko at gmail.com> wrote: >> Before I merge it (well.. provided that it works..), I'd like to know >> a couple of things more: >> 1. does the load.off command ('S00R0000') work? > > load.off works. > >> 2. does the 'C' command (mapped as shutdown.stop and load.on) turn the >> load on if executed while the ups.delay.start time elapses after >> having fired a shutdown.return? > > I only tested the following case, but yes:...
2015 Jul 10
2
[HCL] <Fideltronik INIGO> <Viper 1200> supported by <nutdrv_qx>
...e when command is issued the beep never ends... - the beeper can not be switched off if UPS is on line. 396.231354 instcmd(beeper.toggle, [NULL]) 396.231400 send: Q 396.231414 command index: 0x07 396.250914 read: UPS No Ack 396.250947 instcmd: FAILED load.off (S00R0000) - load are switched off after 30s, - "C" command will not break the shutdown. - nutdrv_qx output: http://bpa.ksu.pl/pub/nutdrv_qx_load.off.txt (4kB) load.on or shutdown.stop (C) - load are switched on after 10s, - stop olny "shutdown.return", - nutdrv_qx out...
2007 Feb 01
2
Re: [Nut-upsuser] Ablerex 625L USB version
...gt; *** 657,666 **** > } > > if (strcasecmp(cmdname, "load.off") == 0) { > ! ser_send_pace(upsfd, SEND_PACE, "C%c", ENDCHAR); > watchdog_enabled = 0; > > ! ser_send_pace(upsfd, SEND_PACE, "S00R0000%c", ENDCHAR); > > upslogx(LOG_INFO, "Turning load off."); > > --- 665,674 ---- > } > > if (strcasecmp(cmdname, "load.off") == 0) { > ! comm->send("C%c", ENDCHAR); >...
2006 Dec 05
3
megatec over USB - new driver patch
...ot;, ENDCHAR); + comm->send("C%c", ENDCHAR); upslogx(LOG_INFO, "Turning load on."); @@ -612,8 +606,8 @@ } if (strcasecmp(cmdname, "load.off") == 0) { - ser_send_pace(upsfd, SEND_PACE, "C%c", ENDCHAR); - ser_send_pace(upsfd, SEND_PACE, "S00R0000%c", ENDCHAR); + comm->send("C%c", ENDCHAR); + comm->send("S00R0000%c", ENDCHAR); upslogx(LOG_INFO, "Turning load off."); @@ -686,21 +680,19 @@ void upsdrv_banner(void) { - printf("Network UPS Tools - Megatec protocol driver %s (%s)\n",...