Exemples de programmation
Visual Basic
Il faut utiliser les contrôles de communication (MsComm) de VisualBasic:
Ouverture du port:
Activation des lignes d'ali-
mentation:
Demande de données:
Lecture des données
Pour plus d'informations, se reporter au menu d'aide de Visual Basic sur les contrôles MsComm
Programmes d'application
Se refèrer au site du frabiquant pour les applications disponibles.
' Use COM1.
Comm1.CommPort = 1
' 4800 baud, even parity, 7 data, and 2 stop bit.
Comm1.Settings = «4800,E,7 ,2»
' Open the port.
Comm1.PortOpen = True
' Simplex Cable'
Form1.MSComm1.DTREnable = True
Form1.MSComm1.RTSEnable = True
' Duplex Cable'
Form1.MSComm1.DTREnable = True
Form1.MSComm1.RTSEnable = False
' Simplex Cable'
MSComm1.DTREnable = False
Timer1.Interval = 150
Timer1.Enabled = True
'Duplex cable + duplex instrument'
MSComm1.Output = «?» + Chr$(13)
'Duplex cable + simplex instrument'
MSComm1.Break = True
'Incremente Timer1.Interval in case of no transmission'
Timer1.Interval = 10
Timer1.Enabled = True
MSComm1.Break = False
InString$ = Comm1.Input
7
F