Lines Matching full:address
144 ( address, bluetooth_version, manufacturer_id,
152 def add_device(self, address, address_type, action):
155 @param address: Address of the device to add.
156 @param address_type: Type of device in @address.
159 @return tuple of ( address, address_type ) on success,
163 return json.loads(self._proxy.add_device(address, address_type, action))
166 def remove_device(self, address, address_type):
169 @param address: Address of the device to remove.
170 @param address_type: Type of device in @address.
172 @return tuple of ( address, address_type ) on success,
176 return json.loads(self._proxy.remove_device(address, address_type))
213 @return tuple of (index, name, address, flags, device_type, bus_type,
238 def has_device(self, address):
239 """Checks if the device with a given address exists.
241 @param address: Address of the device.
243 @returns: True if there is a device with that address.
247 return self._proxy.has_device(address)
250 def pair_legacy_device(self, address, pin, timeout):
256 @param address: Address of the device to pair.
263 return self._proxy.pair_legacy_device(address, pin, timeout)
266 def connect_device(self, address):
271 @param address: Address of the device to connect.
276 return self._proxy.connect_device(address)
279 def device_is_connected(self, address):
282 @param address: Address of the device to check if it is connected.
287 return self._proxy.device_is_connected(address)
290 def disconnect_device(self, address):
295 @param address: Address of the device to disconnect.
300 return self._proxy.disconnect_device(address)