~ubuntu-branches/ubuntu/saucy/gnome-bluetooth/saucy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?xml version="1.0" encoding="UTF-8"?>

<!-- This is a PIN code database for use in the Bluetooth wizard.

  Copyright (C) 2008-2009  Bastien Nocera <hadess@hadess.net>

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-->

<!--
  The wizard will match devices, following the order of the XML file [1],
  on any combination of type, OUI, or name.

  The special NULL pin means that the devices will not be paired, but
  connected to and marked as trusted. This is for devices such as mice
  and joypads where there is no encryption

  The special "WII" pin means that the device will use the host's Bluetooth
  address to compute the pin code as explained at:
  http://wiibrew.org/wiki/Wiimote#Sync_Button

  If a device can use a random PIN but is limited in the number of digits that
  can be entered, then set the "pin" attribute should be set to "max:X" where X
  is the maximum number of digits, for example max:4 for 4 digits.

  [1]: So specific devices should be at the top, and generic ones at the bottom,
  so settings for specific devices are overridden as expected.
-->

<!DOCTYPE devices [
	<!ELEMENT devices (device)+>
	<!ELEMENT device EMPTY>
	<!ATTLIST device type (any|mouse|tablet|keyboard|headset|headphones|audio|printer|network) "any">
	<!ATTLIST device oui CDATA #IMPLIED>
	<!ATTLIST device name CDATA #IMPLIED>
	<!ATTLIST device pin CDATA #REQUIRED>
]>

<devices>

<!-- Input devices -->

	<!-- TomTom Go remote -->
	<device type="keyboard" oui="00:13:6C:" name="TomTom Remote" pin="0000"/>

	<!-- Sony PlayStation 3 Remote Control -->
	<device oui="00:19:C1:" name="BD Remote Control" pin="NULL"/>
	<device oui="00:1E:3D:" name="BD Remote Control" pin="NULL"/>

	<!-- Apple Wireless and Mighty Mouse
	     Note: Apple doesn't follow the specs, and requires their mice
	     to be paired -->
	<device oui="00:0A:95:" type="mouse" pin="0000"/>
	<device oui="00:14:51:" type="mouse" pin="0000"/>
	<device oui="34:15:9E:" type="mouse" pin="0000"/>

	<!-- Apple Magic Trackpad
	     Note: same as above, tablet needs to be paired -->
	<device oui="D8:A2:5E:" type="tablet" pin="0000"/>

	<!-- BT-GPS8 JENTRO, GPS mouse -->
	<device oui="00:0D:B5:" name="BT-GPS8 JENTRO" pin="0000"/>

	<!-- Lenovo Ideacenter remote -->
	<device oui="00:08:1B:" name="lenovo_RC" pin="0000"/>

	<!-- Wiimote -->
	<device name="Nintendo RVL-CNT-01" pin="WII"/>

<!-- GPS devices -->
	<device oui="00:0D:B5:" name="TomTom Wireless GPS MkII" pin="0000"/>
	<device oui="00:0D:B5:" name="GPS-GW-005" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=560870 -->
	<device oui="00:0A:3A:" name="BT GPS" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=560606 -->
	<device oui="00:1B:C1:" name="HOLUX_M-241" pin="0000"/>
	<device oui="00:01:C1:" name="HOLUX_M-241" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=560713 -->
	<device oui="00:0B:24:" name="Triceiver" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=560715 -->
	<device oui="00:00:00:" name="BT-Q880" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=560625 -->
	<device oui="00:11:67:" name="eGPS-397" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=560604 -->
	<device oui="00:1B:C1:" name="HOLUX_M-1000" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=561326 -->
	<device oui="00:0B:0D:" name="G-Rays1" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=571119 -->
	<device oui="00:0B:0D:" name="G-Rays2" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=561327 -->
	<device oui="00:0A:3A:" name="HUDGPS" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=562479 -->
	<device oui="00:0B:0D:" name="iBT-GPS" pin="0000"/>
	<device oui="00:1C:88:" name="iBT-GPS" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=563554 -->
	<device oui="00:0D:B5:" name="BT-GPS-37A4C2" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=563614 -->
	<device oui="00:0B:0D:" name="HOLUX GPSlim240" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=563554 -->
	<device oui="00:0D:B5:" name="BT-GPS-37A4C2" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=576490 -->
	<device oui="00:0D:B5:" name="BT-GPS-339D35" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=560315#c20 -->
	<device oui="00:02:5B:" name="Pharos iGPS-BT" pin="12345678"/>

	<!-- https://bugzilla.redhat.com/show_bug.cgi?id=472686#c0 -->
	<device oui="00:00:00:" name="Rikaline" pin="0000"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=560609 -->
	<device oui="00:18:96:" name="GW-GPS-009" pin="0000"/>

	<!-- https://bugzilla.gnome.org/show_bug.cgi?id=613698 -->
	<device oui="00:0C:A5:" name="NAVMAN GPS ONE" pin="NAVMAN"/>

<!-- Audio devices -->

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=560315 -->
	<device type="headset" name="X3 micro" pin="1234"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=561324 -->
	<device type="headset" oui="00:03:C9:" name="BT Headset" pin="1111"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=573059 -->
	<device type="headset" oui="00:12:A1:" name="BT Stereo Headset" pin="1234"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=561325 -->
	<device type="network" oui="00:06:66:" name="OBDPros scantool" pin="1234"/>

	<!-- http://bugzilla.gnome.org/show_bug.cgi?id=583651 -->
	<device type="audio" oui="00:1A:80:" name="CMT-DH5BT" pin="max:4"/>

<!-- Generic types -->

	<!-- Printers -->
	<device type="printer" pin="0000"/>

	<!-- Headphones and headsets -->
	<device type="headphones" pin="0000"/>
	<device type="headset" pin="0000"/>
	<device type="audio" pin="0000"/>

	<!-- Mice don't need pincodes -->
	<device type="mouse" pin="NULL"/>

</devices>