search for: q1

Displaying 20 results from an estimated 1098 matches for "q1".

2008 Jun 27
2
Megatec and Belkin F6H550-UPS
...0665/5161) (003/004) > - VendorID: 0665 > - ProductID: 5161 > - Manufacturer: Cypress Semiconductor > - Product: USB to Serial > - Serial Number: unknown > - Bus: 003 > Trying to match device > Device matches > Starting UPS detection process... > Asking for UPS status [Q1]... > Q1 => OK [(119.8 119.8 121.6 NNN 60.2 13.6 N/.A 00001001] > Asking for UPS status [Q1]... > Q1 => OK [(119.9 119.9 121.6 NNN 60.2 13.6 N/.A 00001001] > Asking for UPS status [Q1]... > Q1 => OK [(119.8 119.8 121.6 NNN 60.2 13.6 N/.A 00001001] > Asking for UPS status...
2012 Dec 25
1
Blazer_usb Permissions problem: Input/output error
...and ls -l /dev/usb shows: crwxrwx--- 1 uucp wheel 0, 147 Dec 24 23:36 5.2.0 So I tried to debug but strange: export USB_DEBUG=3 does not have effect on the output from blazer_usb. Here are few results: # /usr/local/libexec/nut/blazer_usb -DDDD -a eaton -u uucp .... 2470.388082 send: Q1 2470.647096 read: (225.4 225.4 225.4 019 49.8 13.6 25.0 00001001 2472.389079 send: Q1 2472.631093 read: (225.4 225.4 225.4 020 49.8 13.6 25.0 00001001 2474.390079 send: Q1 2474.647095 read: (225.4 225.4 225.4 020 49.8 13.6 25.0 00001001 2476.391092 send: Q1 2476.631100 r...
2007 Aug 08
1
Mustek PowerMust 1000AV USB feedbacks
...me especially in summer :) In debug mode i get, # /lib/nut/megatec -a mustekups -DDD Network UPS Tools 2.2.0-export? - Megatec protocol driver 1.5.4 [megatec] Carlos Rodrigues (c) 2003-2007 debug level is '3' Starting UPS detection process... Attempting to detect the UPS... Sending "Q1" command... "Q1" command successful. Attempting to detect the UPS... Sending "Q1" command... "Q1" command successful. Attempting to detect the UPS... Sending "Q1" command... "Q1" command successful. Attempting to detect the UPS... Sending &quot...
2007 Aug 08
1
Mustek PowerMust 1000AV USB feedbacks
...me especially in summer :) In debug mode i get, # /lib/nut/megatec -a mustekups -DDD Network UPS Tools 2.2.0-export? - Megatec protocol driver 1.5.4 [megatec] Carlos Rodrigues (c) 2003-2007 debug level is '3' Starting UPS detection process... Attempting to detect the UPS... Sending "Q1" command... "Q1" command successful. Attempting to detect the UPS... Sending "Q1" command... "Q1" command successful. Attempting to detect the UPS... Sending "Q1" command... "Q1" command successful. Attempting to detect the UPS... Sending &quot...
2008 Dec 05
2
Mustek PowerMust 848
...ing to match device > Device matches > DTR=1, RTS=0 > send_to_all: SETINFO driver.version.internal "1.5.18" > Starting UPS detection process... > Asking for UPS information [I]... > I => FAILED [short read] > I detail: (1 bytes) => 49 > Asking for UPS status [Q1]... > 00]_data_phoenix: got so far [Q1 > get_data_phoenix: (8 bytes) => 51 31 0d 2e 30 0d 30 30 > Q1 => FAILED [short read] > Q1 detail: (2 bytes) => 51 31 > Asking for UPS status [Q1]... > 00]_data_phoenix: got so far [Q1 > get_data_phoenix: (8 bytes) => 51 31 0d 2...
2008 Dec 05
2
Mustek PowerMust 848
...ing to match device > Device matches > DTR=1, RTS=0 > send_to_all: SETINFO driver.version.internal "1.5.18" > Starting UPS detection process... > Asking for UPS information [I]... > I => FAILED [short read] > I detail: (1 bytes) => 49 > Asking for UPS status [Q1]... > 00]_data_phoenix: got so far [Q1 > get_data_phoenix: (8 bytes) => 51 31 0d 2e 30 0d 30 30 > Q1 => FAILED [short read] > Q1 detail: (2 bytes) => 51 31 > Asking for UPS status [Q1]... > 00]_data_phoenix: got so far [Q1 > get_data_phoenix: (8 bytes) => 51 31 0d 2...
2006 Mar 15
2
Regarding aov Error()
The following dummy data frame has factor Q (with 2 levels) nesting factor P (with levels p1 and p2 nested under q1, and p3 and p4 nested under q2), but both crossing the random variate s, which has 8 levels. The dependent measure is dv. > # The data frame: > testnest dv s P Q 1 1 s1 p1 q1 2 2 s2 p1 q1 3 1 s3 p1 q1 4 2 s4 p1 q1 5 1 s5 p1 q1 6 3 s6 p1 q1 7 3 s7 p1 q1 8 4 s8 p1...
2009 Dec 06
1
Integra Tech (ePlus) support
...1, RTS=0 Starting UPS detection process... Asking for UPS information [I]... I => FAILED [short read] I detail: (1 bytes) => 49 Asking for UPS status [Q1]... ]et_data_phoenix: got so far [Q1 get_data_phoenix: (8 bytes) => 51 31 0d 00 00 00 00 00 ]et_data_phoenix: got so far [Q1 get_data_phoenix: (16 bytes) => 51 31 0d 00 00 00 00 00 00 00 00 00 00 00 00 00...
2011 Aug 10
2
join columns
...gestions in how to do a union join of two data frames as follow: -> union join the common column, and insert a 0 if one is missing. I made a function to perform the following, and I know it may not that quite welly written, but it works. Any suggestions are welcome, many thanks. Anthony > q1 = data.frame(a=1,b=2,c=3,row.names="q1") a b c q1 1 2 3 > q2 = data.frame(d=4,b=1,a=4, row.names="q2") d b a q2 4 1 4 -> myJoinColumns(q1,q2) a b c d q1 1 2 3 0 q2 4 1 0 4 myJoinColumns <- function(q1,q2){ allNames = sort(union(colnames(q1),colname...
2007 May 24
1
Megatec_usb driver
...Product: UPS - Serial Number: unknown - Bus: 005 Trying to match device Device matches failed to claim USB device, trying 2 more time(s)... detaching kernel driver from USB device... trying again to claim USB device... Starting UPS detection process... Attempting to detect the UPS... Sending "Q1" command... Wrong answer to "Q1" command. Attempting to detect the UPS... Sending "Q1" command... "Q1" command successful. Attempting to detect the UPS... Sending "Q1" command... "Q1" command successful. Attempting to detect the UPS... Sending...
2017 Mar 22
2
contineously receiving the same values
...r: unknown 0.179423 - Bus: 005 0.179454 - Device release number: 0100 0.179484 Trying to match device 0.179585 Device matches 0.179666 nut_usb_set_altinterface: skipped usb_set_altinterface(udev, 0) 0.179755 Trying megatec protocol... 0.179792 send: Q1 0.201201 received 47 (40) 0.201251 read: (230.0 000.0 231.0 012 50.0 27.2 29.0 00001000 0.201404 Status read in 1 tries 0.201439 Supported UPS detected with megatec protocol 0.201473 send: F 0.216208 received 22 (35) 0.216267 read: # . ....
2004 Apr 29
1
I'm trying to use package ts (decompose). How do you set up the data/ See attached. thanks
InDATA <-read.table("C:/Data/May 2004/season.txt",header=T) X <- decompose(InDATA) print(X) Period Connections Q1 67519 Q2 69713 Q3 68920 Q4 69452 Q1 70015 Q2 59273 Q3 57063 Q4 65596 Q1 73527 Q2 58586 Q3 69522 Q4 60091 Q1 51686 Q2 63490 Q3 55702 Q4 53200 Q1 51033 Q2 48175 Q3 52709 Q4 50106 Q1 50855 Q2 43466 Q3 48190 Q4 41702 Q1 48747 Q2 51441 Q3 42537 Q4 49145 Q1 41457 Q2 39306 Q3...
2008 Apr 11
1
[Bug 215389] [NEW] No battery charge percentage on belkin usb avr
...tor > - Product: USB to Serial > - Serial Number: unknown > - Bus: 001 > Trying to match device > Device matches > get_data_agiler: raw dump: (0 bytes) => > get_data_agiler: raw dump: (0 bytes) => > Starting UPS detection process... > Asking for UPS status [Q1]... > Q1 => OK [(225.4 225.4 225.4 042 50.1 13.6 25.0 00001001] > Asking for UPS status [Q1]... > Q1 => OK [(225.4 225.4 225.4 042 50.1 13.6 25.0 00001001] > Asking for UPS status [Q1]... > Q1 => OK [(225.0 225.0 225.0 042 50.1 13.6 25.0 00001001] > Asking for UPS s...
2008 Feb 07
1
Megatec serial UPS woes
...bit of confidence in cable etc! When I ran upsc after starting upsd to complained about stale data! Most unfair! I then shutdown upsd and upsdrv and ran megatec -a rossups -DDDDD I found horrid messages about UPS doesn't return any information about its status! Asking for UPS status ("Q1" command)... UPS doesn't return any information about its status. In an attempt to see if later megatec drivers solved the problem I unmasked nut-2.2 release and tried that megatec -a rossups -DDDDD produced the same result! gatekeeper drivers # /lib/nut/megatec -a rossups -DDDDD Netwo...
2008 Jan 25
3
Bug#462468: nut: megatec_usb ups not detected since 2.2.1 update anymore
Hi Sven, 2008/1/25, Sven Koch <haegar at sdinet.de>: > Package: nut > Version: 2.2.1-1 > Severity: normal > > I am using a Mustec PowerMust 1000 USB, connected with a USB cable to > the PC. > > With nut 2.2.0-2.1 everything works without problems - but since the > 2.2.1-1 update the "upsdrvctl start" from the init script just fails, > executing the
2010 Mar 11
4
Forecast
sample report data that i want to forecast quarter quarter_index Revenue 2007 Q1 1 $3,856,799 2007 Q2 2 $4,243,328 2007 Q3 3 $4,930,369 2007 Q4 4 $5,443,579 2008 Q1 5 $5,164,830 2008 Q2 6 $5,104,413 2008 Q3 7 $5,713,240...
2007 May 01
9
Trying to fix "Unsupported combination of battery voltage / nr. of batteries" error
Hi, everyone, I've recently bought a UPS from Mecer. This is a South African brand that basically resells Mustek hardware, and this UPS is no exception; it's a Mustek product. It does come with software for Linux, but that is terrible (the background process that monitors the UPS is written in Java and needs a terminal to start properly, so you can't run it from a startup script...
2007 May 01
9
Trying to fix "Unsupported combination of battery voltage / nr. of batteries" error
Hi, everyone, I've recently bought a UPS from Mecer. This is a South African brand that basically resells Mustek hardware, and this UPS is no exception; it's a Mustek product. It does come with software for Linux, but that is terrible (the background process that monitors the UPS is written in Java and needs a terminal to start properly, so you can't run it from a startup script...
2008 May 24
1
More info about Unitek UPS not working with Megatec driver
...2.2 to no avail, as it definitely never "sees" the UPS. Always getting : # drivers/megatec -DDD -a Alpha Network UPS Tools 2.2.2 - Megatec protocol driver 1.5.14 [megatec] Carlos Rodrigues (c) 2003-2008 debug level is '3' Starting UPS detection process... Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] 5 out of 5 detection attempts failed (minimum...
2011 Feb 16
3
Ippon Smart Winner 750/1000/1500/2000/3000
...model = "Smart Winner 750/1000/1500/2000/3000" # ./megatec -a IPPON -DDD Network UPS Tools - Megatec protocol driver 1.6 (2.4.1) debug level is '3' DTR=1, RTS=0 Starting UPS detection process... Asking for UPS information [I]... I => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] Asking for UPS status [Q1]... Q1 => FAILED [timeout] 5 out of 5 detection attempts failed (minimum...