コード例 #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
ファイル: eurobraille.py プロジェクト: MarcoZehe/nvda
	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()
コード例 #5
0
 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)