Beispiel #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()
Beispiel #2
0
	def getManualPorts(cls):
		return braille.getSerialPorts()
Beispiel #3
0
 def getManualPorts(cls):
     return braille.getSerialPorts(filterFunc=lambda info: info.get(
         "bluetoothName", "").startswith("ALVA "))
Beispiel #4
0
 def getManualPorts(cls):
     return braille.getSerialPorts()
 def getManualPorts(cls):
     return braille.getSerialPorts(
         filterFunc=lambda info: "bluetoothName" in info)
Beispiel #6
0
	def getManualPorts(cls):
		return braille.getSerialPorts(filterFunc=lambda info: info.get("bluetoothName","").startswith("ALVA "))
Beispiel #7
0
	def getManualPorts(cls):
		return braille.getSerialPorts(filterFunc=lambda info: "bluetoothName" in info)