Exemplo n.º 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()
Exemplo n.º 2
0
	def getManualPorts(cls):
		return braille.getSerialPorts()
Exemplo n.º 3
0
 def getManualPorts(cls):
     return braille.getSerialPorts(filterFunc=lambda info: info.get(
         "bluetoothName", "").startswith("ALVA "))
Exemplo n.º 4
0
 def getManualPorts(cls):
     return braille.getSerialPorts()
Exemplo n.º 5
0
 def getManualPorts(cls):
     return braille.getSerialPorts(
         filterFunc=lambda info: "bluetoothName" in info)
Exemplo n.º 6
0
Arquivo: alva.py Projeto: ehollig/nvda
	def getManualPorts(cls):
		return braille.getSerialPorts(filterFunc=lambda info: info.get("bluetoothName","").startswith("ALVA "))
Exemplo n.º 7
0
	def getManualPorts(cls):
		return braille.getSerialPorts(filterFunc=lambda info: "bluetoothName" in info)