hexadecimal


Closed Thread
Results 1 to 11 of 11

Thread: hexadecimal

Hybrid View

  1. #1
    thibaud's Avatar
    thibaud Guest


    Did you find this post helpful? Yes | No

    Default hex

    my zigbee expects to see the following:

    byte 1: 0x7E

    how to configure this in my code ????

  2. #2
    Join Date
    Jun 2005
    Location
    Wisconsin
    Posts
    382


    Did you find this post helpful? Yes | No

    Default

    There really isn't anything to configure. All of the below options will give you the same results. 0x7E is just the hex value 7E or Decimal 126. You can use the ASCII chart in the back of the manual. Also I find the following link to MELabs helpfull. http://www.melabs.com/resources/convert.htm

    Variables
    Byte1 var $7E, Byte1 var 126, Byte1 var "~", Byte1 var %01111110

    Constants:
    Byte1 con $7E, Byte1 con 126, Byte1 con "~", Byte1 con %01111110

Similar Threads

  1. Replies: 6
    Last Post: - 19th April 2007, 05:06

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts