AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones de puertos serie y paralelo
  • Special case
  • Features specific to Android and Android widget
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Returns the list of serial and parallel ports on the computer.
AndroidWidget Android Only the serial ports of the device are listed (if any).
Ejemplo
// On veut charger le nom des ports séries présents sur la machine dans un champ Combo.
NomPortsSéries is array of strings = sListePort(1)

FOR EACH sPort IN NomPortsSéries
	ListAdd(COMBO_PortsSeries, sPort)
END
Sintaxis
<Result> = sListPort([<Type>])
<Result>: Array of strings
Array of strings that contains the names of the sought ports.
<Type>: Optional integer
Type of port to be listed:
  • 0 (default): Lists serial and parallel ports.
  • 1: List serial ports.
  • 2: Lists parallel ports.
Observaciones
Linux

Special case

On some Linux distributions (Debian, Ubuntu, etc.), the user must be in the dialout group to be able to use serial ports.
If sListPort returns nothing when it should, make sure you have added the current user to this group with the following shell command:
sudo usermod -a -G dialout NOM_UTILISATEUR
AndroidWidget Android

Features specific to Android and Android widget

In Android and Android widget mode, the serial and parallel port functions can be used:
  • Only on serial (not parallel or infrared) ports.
  • Only with devices that support the CDC/ACM protocol (Arduino ATmega32U4) and the following USB to serial converter chips:
    • FTDI FT232R, FT232H, FT2232H, FT4232H, FT230X, FT231X, FT234XD
    • Silabs CP210x
    • Qinheng CH340, CH341A
    • Prolific PL2303
Clasificación Lógica de negocio / UI: Lógica de negocio
Componente: wd300com.dll
Versión mínima requerida
  • Versión 26
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/09/2024

Señalar un error o enviar una sugerencia | Ayuda local