How can I read a byte with valule=0 that comes from serial ? I´m using: $comRs232 = ObjCreate("NETCommOCX.NETComm") and $comRs232.inputData
Local $a[8]
while 1
If $comRs232.InBufferCount > 7 Then
$X= $comRs232.InBufferCount
$Z= StringToASCIIArray($comRs232.inputData,0,$X,1)
_Arr...