• Home
  • Raw
  • Download

Lines Matching refs:address

51         self.address = properties.get('Address')
187 return self.address
383 def add_device(self, address, address_type, action): argument
394 return json.loads(self._proxy.add_device(address, address_type, action))
397 def remove_device(self, address, address_type): argument
407 return json.loads(self._proxy.remove_device(address, address_type))
451 def get_device_property(self, address, prop_name): argument
460 prop_val = self._proxy.get_device_property(address, prop_name)
585 def has_device(self, address): argument
594 return self._proxy.has_device(address)
597 def device_is_paired(self, address): argument
605 return self._proxy.device_is_paired(address)
608 def device_services_resolved(self, address): argument
616 return self._proxy.device_services_resolved(address)
619 def set_trusted(self, address, trusted=True): argument
628 return self._proxy.set_trusted(address, trusted)
631 def pair_legacy_device(self, address, pin, trusted, timeout): argument
645 return self._proxy.pair_legacy_device(address, pin, trusted, timeout)
648 def remove_device_object(self, address): argument
659 return self._proxy.remove_device_object(address)
662 def connect_device(self, address): argument
672 return self._proxy.connect_device(address)
675 def device_is_connected(self, address): argument
683 return self._proxy.device_is_connected(address)
686 def disconnect_device(self, address): argument
696 return self._proxy.disconnect_device(address)
786 def read_characteristic(self, uuid, address): argument
800 value = self._proxy.read_characteristic(uuid, address)
806 def write_characteristic(self, uuid, address, bytes_to_write): argument
821 uuid, address, base64.standard_b64encode(bytes_to_write))
824 def start_notify(self, address, uuid, cccd_value): argument
839 return self._proxy.start_notify(address, uuid, cccd_value)
842 def stop_notify(self, address, uuid): argument
853 return self._proxy.stop_notify(address, uuid)
856 def is_notifying(self, address, uuid): argument
865 return self._proxy.is_notifying(address, uuid)
868 def is_characteristic_path_resolved(self, uuid, address): argument
880 return self._proxy.is_characteristic_path_resolved(uuid, address)
883 def get_gatt_attributes_map(self, address): argument
892 return self._proxy.get_gatt_attributes_map(address)
959 def get_connection_info(self, address): argument
969 return self._proxy.get_connection_info(address)
983 def set_le_connection_parameters(self, address, parameters): argument
992 return self._proxy.set_le_connection_parameters(address, parameters)