예제 #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()
예제 #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)