Jump to content

Search the Community

Showing results for tags 'netcommocx.netcom'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. 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) _ArrayDisplay($Z) MsgBox(4096,$X,StringLen($Z) &@cr& $Z) For $J= 0 To 7 $a[$J]= chr(StringMid($Y,$J+1,1)) Next _ArrayDisplay($a) terminaExecucao() EndIf WEnd Seems to me that the problem is that $comRs232.inputData is already a string for AU3, and so when there is a byte=0, it stops reading the string. No matter what I put arround $coRs232.inputData, AU3 don´t goes further the byte=0. I already tried binary , bynaryToSring and it´s variants, combinations betwen bynaryxxx and stringToASCxxx and vice versa, Could DLLxxx be useful in this case? At the end the desirable result would be $a[0]= 1st byte, .... $a[6]= 7th byte (all as a number (integer, from 0 - 255). If I have to use other dlls or onother way to communicate with serial port, OK too (send and receive). Today my only problem is when a byte value 0 arrives. All the other values (1..255) are OK. Thanks in advance Jose
×
×
  • Create New...