Changes between Version 8 and Version 9 of S6350serialcom


Ignore:
Timestamp:
10/27/08 11:42:10 (16 years ago)
Author:
pinwc4
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S6350serialcom

    v8 v9  
    5555 
    5656 
     57 
    5758= Silence Tag = 
    5859 
     
    8485Here is an example of the code to do this: 
    8586[[BR]] 
    86   dim checksum as string 
     87  {{{dim checksum as string 
    8788  dim xornumber1 as integer 
    8889  dim xornumber2 as integer 
     
    9697  xornumber2 = &hFF xor xornumber1 
    9798  'put the two together for the complete checksum 
    98   checksum = chrB(xornumber1) + chrB(xornumber2) 
     99  checksum = chrB(xornumber1) + chrB(xornumber2)}}} 
     100