Exemple #1
0
    def getManualPorts(cls) -> typing.Iterator[typing.Tuple[str, str]]:
        """@return: An iterator containing the name and description for each port.
		"""
        return braille.getSerialPorts()
Exemple #2
0
	def getManualPorts(cls):
		return braille.getSerialPorts()
 def getManualPorts(cls):
     return braille.getSerialPorts(filterFunc=lambda info: info.get(
         "bluetoothName", "").startswith("ALVA "))
Exemple #4
0
 def getManualPorts(cls):
     return braille.getSerialPorts()
 def getManualPorts(cls):
     return braille.getSerialPorts(
         filterFunc=lambda info: "bluetoothName" in info)
Exemple #6
0
	def getManualPorts(cls):
		return braille.getSerialPorts(filterFunc=lambda info: info.get("bluetoothName","").startswith("ALVA "))
Exemple #7
0
	def getManualPorts(cls):
		return braille.getSerialPorts(filterFunc=lambda info: "bluetoothName" in info)