[Nut-upsdev] Help with USB support for a Kebo UPS-650D

Peter Selinger selinger at mathstat.dal.ca
Mon Sep 26 16:31:49 UTC 2005


Andrew Dancy wrote:
> 
> I'm fairly new to this whole Linux UPS thingie, but I'd quite like
> to have a look at getting my UPS to work under Linux and would be
> grateful for any help in getting a driver. I have a reasonable
> working knowledge of Linux and software development, and thus am
> happy to modify config files, alter kernel settings, etc, although
> I'm no C guru.
> 
> I have a Kebo UPS-650D, which was a popular no-brand budget UPS sold
> here in the UK for a while. I've traced the manufacturer back to
> http://www.dianxing-kebo.com <http://www.dianxing-kebo.com/> . The
> UPS has a USB port on the back, but no serial port. It's currently
> connected via USB to my Linux box.
> 
> There is Windows software supplied with the UPS which purports to provide
> information on input/output voltage, load, battery status, etc. The software
> is called PowerManager and is made by a company called RichComm (website
> appears to be at www.richcomm.com <http://www.richcomm.com/>  ). According
> to their website, the PowerManager software can control various UPS brands.
> I've seen reference on Google to it working specifically with Starpower and
> UPguardS UPS devices as well as the Kebo ones.

My instinct is to ignore the Windows software for now and try to probe
this device under Linux. Chances are it's a HID device and then it can
be easily added to newhidups.

> I have been able to get Linux to detect the USB device. Catting
> /proc/bus/usb/devices provides the following output:
> 
> T:  Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12  MxCh= 2
> B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
> D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS= 8 #Cfgs=  1
> P:  Vendor=0000 ProdID=0000 Rev= 2.06
> S:  Manufacturer=Linux 2.6.10-1.770_FC3smp uhci_hcd
> S:  Product=UHCI Host Controller
> S:  SerialNumber=0000:00:07.2
> C:* #Ifs= 1 Cfg#= 1 Atr=c0 MxPwr=  0mA
> I:  If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
> E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms
>  
> T:  Bus=01 Lev=01 Prnt=01 Port=01 Cnt=01 Dev#=  3 Spd=1.5 MxCh= 0
> D:  Ver= 1.10 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs=  1
> P:  Vendor=0925 ProdID=1234 Rev= 0.01
> S:  Manufacturer=     N/A
> S:  Product=   N/A
> C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=100mA
> I:  If#= 0 Alt= 0 #EPs= 1 Cls=03(HID  ) Sub=00 Prot=00 Driver=usbhid
> E:  Ad=81(I) Atr=03(Int.) MxPS=   6 Ivl=10ms

That information is useful. It shows your device's vendor ID (0x0925)
and Product ID (0x1234).

> The latter would appear to be the UPS and the former is the USB controller
> in the computer. The system is running Fedora Core 3 with kernel version
> 2.6.10-smp
> 
> I have downloaded the latest version of NUT from CVS as of today, which
> successfully compiled and installed. I have ensured there is a valid HID
> device entry at in /dev/usb/hiddev0 and have configured /etc/usb/ups.conf as
> follows:
> 
> [myups]
>         driver=newhidups
>         port=/dev/usb/hiddev0

The configuration files don't matter at the moment, because you'll run
the driver directly (as /usr/local/ups/bin/newhidups) for testing
purposes (rather than using upsdrvctl).

> When I run newhidusb (with the following command:
> /usr/local/ups/bin/newhidups -DDD /dev/usb/hiddev0 ) I get the following
> output:

The output looks as it should. Your next step will be a slight
modification of the C source code to teach the driver your vendor ID.

The -x vendorid=0925 option that Charles suggested will not work,
because the device is not yet supported (hence cannot be selected).
Instead, in the subdirectory drivers/ of your nut source, make the
following experimental changes:

cp mge-hid.c kebo-hid.c
cp mge-hid.h kebo-hid.h

* Edit the files kebo-hid.c and kebo-hid.h to replace the string "mge"
  by "kebo" (and "MGE" by "KEBO") throughout the file.

* In the file kebo-hid.c, supply the correct vendor ID (#define
  KEBO_VENDORID 0x0925)

* In the file newhidups.c, edit the "master list of available
  subdrivers" (near line 33) and add &kebo_subdriver to the list.

These changes add a "stub" kebo subdriver to your sources. It should
be enough to open the device and print the Usage Tree. (In the future,
I'll make this easier by adding a command line option for opening
unsupported devices).

Also run the driver with the "-u root" option to prevent it from
dropping root privileges - otherwise, you'll be unable to connect to
the device.

Please report your findings to the list! -- Peter


> 
> Network UPS Tools: New USB/HID UPS driver 0.28 (2.1.0)
>  
> debug level is '3'
> Checking device (0925/1234) (001/003)
> - VendorID: 0925
> - ProductID: 1234
> - Manufacturer: unknown
> - Product: unknown
> - Serial Number: unknown
> - Bus: 001
> Trying to match device
> Device does not match - skipping
> Checking device (0000/0000) (001/001)
> - VendorID: 0000
> - ProductID: 0000
> - Manufacturer: unknown
> - Product: unknown
> - Serial Number: unknown
> - Bus: 001
> Trying to match device
> Device does not match - skipping
> No appropriate HID device found
> No matching USB/HID UPS found
> 
> Being a total newbie to all this, my first question is how can I get
> NUT to try using each of the new HID usb drivers with my UPS? It
> appears to be ignoring my UPS, presumably because it can't match the
> vendorid or productid to a specific driver. Where can I set this?
> What should I try next?
> 
> Any help would be much appreciated.
> 
> Regards,
> 
> Andrew Dancy
> 
> http://www.lothianproductions.co.uk <http://www.lothianproductions.co.uk/> 
> 
>  
> 
> 
> ------=_NextPart_000_0000_01C5C298.4253E8A0
> Content-Type: text/html;
> 	charset="us-ascii"
> Content-Transfer-Encoding: quoted-printable
> 
> <html xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
> xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
> xmlns:st1=3D"urn:schemas-microsoft-com:office:smarttags" =
> xmlns=3D"http://www.w3.org/TR/REC-html40">
> 
> <head>
> <meta http-equiv=3DContent-Type content=3D"text/html; =
> charset=3Dus-ascii">
> <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)">
> <o:SmartTagType =
> namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
>  name=3D"country-region"/>
> <o:SmartTagType =
> namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
>  name=3D"place"/>
> <o:SmartTagType =
> namespaceuri=3D"urn:schemas-microsoft-com:office:smarttags"
>  name=3D"PersonName"/>
> <!--[if !mso]>
> <style>
> st1\:*{behavior:url(#default#ieooui) }
> </style>
> <![endif]-->
> <style>
> <!--
>  /* Style Definitions */
>  p.MsoNormal, li.MsoNormal, div.MsoNormal
> 	{margin:0cm;
> 	margin-bottom:.0001pt;
> 	font-size:12.0pt;
> 	font-family:"Times New Roman";}
> a:link, span.MsoHyperlink
> 	{color:blue;
> 	text-decoration:underline;}
> a:visited, span.MsoHyperlinkFollowed
> 	{color:purple;
> 	text-decoration:underline;}
> span.EmailStyle17
> 	{mso-style-type:personal-compose;
> 	font-family:Arial;
> 	color:windowtext;}
> @page Section1
> 	{size:595.3pt 841.9pt;
> 	margin:72.0pt 90.0pt 72.0pt 90.0pt;}
> div.Section1
> 	{page:Section1;}
> -->
> </style>
> 
> </head>
> 
> <body lang=3DEN-GB link=3Dblue vlink=3Dpurple>
> 
> <div class=3DSection1>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Folks,<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>I&#8217;m fairly new to this whole Linux UPS thingie, =
> but I&#8217;d
> quite like to have a look at getting my UPS to work under Linux and =
> would be
> grateful for any help in getting a driver. I have a reasonable working
> knowledge of Linux and software development, and thus am happy to modify =
> config
> files, alter kernel settings, etc, although I&#8217;m no C =
> guru.<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>I have a Kebo UPS-650D, which was a popular no-brand =
> budget
> UPS sold here in the <st1:country-region w:st=3D"on"><st1:place =
> w:st=3D"on">UK</st1:place></st1:country-region>
> for a while. I&#8217;ve traced the manufacturer back to <a
> href=3D"http://www.dianxing-kebo.com/">http://www.dianxing-kebo.com</a> =
> . The UPS
> has a USB port on the back, but no serial port. It&#8217;s currently =
> connected via
> USB to my Linux box.<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>There is Windows software supplied with the UPS which
> purports to provide information on input/output voltage, load, battery =
> status,
> etc. The software is called PowerManager and is made by a company called
> RichComm (website appears to be at <a =
> href=3D"http://www.richcomm.com/">www.richcomm.com</a>
> ). According to their website, the PowerManager software can control =
> various
> UPS brands. I&#8217;ve seen reference on Google to it working =
> specifically with
> Starpower and UPguardS UPS devices as well as the Kebo =
> ones.<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>I have been able to get Linux to detect the USB =
> device. Catting
> /proc/bus/usb/devices provides the following =
> output:<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>T:&nbsp; Bus=3D01 Lev=3D00 Prnt=3D00 Port=3D00 =
> Cnt=3D00 Dev#=3D&nbsp; 1
> Spd=3D12&nbsp; MxCh=3D 2<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>B:&nbsp; Alloc=3D&nbsp; 0/900 us ( 0%), #Int=3D&nbsp; =
> 0,
> #Iso=3D&nbsp; 0<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>D:&nbsp; Ver=3D 1.10 Cls=3D09(hub&nbsp; ) Sub=3D00 =
> Prot=3D00 MxPS=3D 8
> #Cfgs=3D&nbsp; 1<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>P:&nbsp; Vendor=3D0000 ProdID=3D0000 Rev=3D =
> 2.06<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>S:&nbsp; Manufacturer=3DLinux 2.6.10-1.770_FC3smp =
> uhci_hcd<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>S:&nbsp; Product=3DUHCI Host =
> Controller<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>S:&nbsp; =
> SerialNumber=3D0000:00:07.2<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>C:* #Ifs=3D 1 Cfg#=3D 1 Atr=3Dc0 MxPwr=3D&nbsp; =
> 0mA<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>I:&nbsp; If#=3D 0 Alt=3D 0 #EPs=3D 1 =
> Cls=3D09(hub&nbsp; ) Sub=3D00
> Prot=3D00 Driver=3Dhub<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>E:&nbsp; Ad=3D81(I) Atr=3D03(Int.) =
> MxPS=3D&nbsp;&nbsp; 2 Ivl=3D255ms<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>T:&nbsp; Bus=3D01 Lev=3D01 Prnt=3D01 Port=3D01 =
> Cnt=3D01 Dev#=3D&nbsp; 3
> Spd=3D1.5 MxCh=3D 0<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>D:&nbsp; Ver=3D 1.10 Cls=3D00(&gt;ifc ) Sub=3D00 =
> Prot=3D00 MxPS=3D 8
> #Cfgs=3D&nbsp; 1<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>P:&nbsp; Vendor=3D0925 ProdID=3D1234 Rev=3D =
> 0.01<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>S:&nbsp; Manufacturer=3D&nbsp;&nbsp;&nbsp;&nbsp; =
> N/A<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>S:&nbsp; Product=3D&nbsp;&nbsp; =
> N/A<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>C:* #Ifs=3D 1 Cfg#=3D 1 Atr=3D80 =
> MxPwr=3D100mA<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>I:&nbsp; If#=3D 0 Alt=3D 0 #EPs=3D 1 =
> Cls=3D03(HID&nbsp; ) Sub=3D00
> Prot=3D00 Driver=3Dusbhid<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>E:&nbsp; Ad=3D81(I) Atr=3D03(Int.) =
> MxPS=3D&nbsp;&nbsp; 6 Ivl=3D10ms<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>The latter would appear to be the UPS and the former =
> is the
> USB controller in the computer. The system is running Fedora Core 3 with =
> kernel
> version 2.6.10-smp<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>I have downloaded the latest version of NUT from CVS =
> as of
> today, which successfully compiled and installed. I have ensured there =
> is a
> valid HID device entry at in /dev/usb/hiddev0 and have configured =
> /etc/usb/ups.conf
> as follows:<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>[myups]<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
> driver=3Dnewhidups<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> port=3D/dev/usb/hiddev0<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>When I run newhidusb (with the following command: =
> /usr/local/ups/bin/newhidups
> -DDD /dev/usb/hiddev0 ) I get the following =
> output:<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Network UPS Tools: New USB/HID UPS driver 0.28 =
> (2.1.0)<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>debug level is '3'<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Checking device (0925/1234) =
> (001/003)<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- VendorID: 0925<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- ProductID: 1234<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- Manufacturer: unknown<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- Product: unknown<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- Serial Number: unknown<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- Bus: 001<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Trying to match device<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Device does not match - =
> skipping<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Checking device (0000/0000) =
> (001/001)<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- VendorID: 0000<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- ProductID: 0000<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- Manufacturer: unknown<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- Product: unknown<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- Serial Number: unknown<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>- Bus: 001<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Trying to match device<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Device does not match - =
> skipping<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>No appropriate HID device =
> found<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>No matching USB/HID UPS =
> found<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Being a total newbie to all this, my first question =
> is how
> can I get NUT&nbsp; to try using each of the new HID usb drivers with my =
> UPS?
> It appears to be ignoring my UPS, presumably because it can&#8217;t =
> match the
> vendorid or productid to a specific driver. Where can I set this? What =
> should I
> try next?<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Any help would be much =
> appreciated.<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>Regards,<o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>
> 
> <p class=3DMsoNormal><st1:PersonName w:st=3D"on"><font size=3D2 =
> face=3DArial><span
>  style=3D'font-size:10.0pt;font-family:Arial'>Andrew =
> Dancy</span></font></st1:PersonName><font
> size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;font-family:Arial'><o:p></o:p></span></font></p=
> >
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'><a =
> href=3D"http://www.lothianproductions.co.uk/">http://www.lothianproductio=
> ns.co.uk</a><o:p></o:p></span></font></p>
> 
> <p class=3DMsoNormal><font size=3D2 face=3DArial><span =
> style=3D'font-size:10.0pt;
> font-family:Arial'>&nbsp;<o:p></o:p></span></font></p>
> 
> </div>
> 
> </body>
> 
> </html>
> 
> ------=_NextPart_000_0000_01C5C298.4253E8A0--
> 
> 
> 
> --===============1117310623==
> Content-Type: text/plain; charset="us-ascii"
> MIME-Version: 1.0
> Content-Transfer-Encoding: 7bit
> Content-Disposition: inline
> 
> _______________________________________________
> Nut-upsdev mailing list
> Nut-upsdev at lists.alioth.debian.org
> http://lists.alioth.debian.org/mailman/listinfo/nut-upsdev
> 
> --===============1117310623==--
> 
> 




More information about the Nut-upsdev mailing list