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