示例#1
0
文件: seikantk.py 项目: steverep/nvda
    def getManualPorts(cls) -> typing.Iterator[typing.Tuple[str, str]]:
        """@return: An iterator containing the name and description for each port.
		"""
        return braille.getSerialPorts()
示例#2
0
	def getManualPorts(cls):
		return braille.getSerialPorts()
示例#3
0
 def getManualPorts(cls):
     return braille.getSerialPorts(filterFunc=lambda info: info.get(
         "bluetoothName", "").startswith("ALVA "))
示例#4
0
 def getManualPorts(cls):
     return braille.getSerialPorts()
 def getManualPorts(cls):
     return braille.getSerialPorts(
         filterFunc=lambda info: "bluetoothName" in info)
示例#6
0
文件: alva.py 项目: ehollig/nvda
	def getManualPorts(cls):
		return braille.getSerialPorts(filterFunc=lambda info: info.get("bluetoothName","").startswith("ALVA "))
示例#7
0
文件: hims.py 项目: BabbageCom/nvda
	def getManualPorts(cls):
		return braille.getSerialPorts(filterFunc=lambda info: "bluetoothName" in info)