Search:

Type: Posts; User: bommy

Search: Search took 0.00 seconds.

  1. Replies
    16
    Views
    3,679

    Yes, exactly. Just an array of hex values sent...

    Yes, exactly. Just an array of hex values sent to the display register.
    To output 51 to the screen I would write 0x05 (the number 5) to DISPLAY_DATA_IN,
    then 0x00 (for example) for the...
  2. Replies
    16
    Views
    3,679

    So instead of making tables I could just send...

    So instead of making tables I could just send values 0-9 to the display registers directly? Say my integer is num = 1234, could I send num[3] to the display register? would num [3] be equal to 1 or...
  3. Replies
    16
    Views
    3,679

    I have attached the figure that contains where...

    I have attached the figure that contains where the characters are stored on the MAX7456 On screen display chip.
    [img=http://img254.imageshack.us/img254/3286/cforum.th.jpg]

    I must take an integer...
  4. Replies
    16
    Views
    3,679

    I have very limited experience working with...

    I have very limited experience working with pointers. Is the address associated with an integer match to that of the table of ascii_table[] and charcodetable[]? If so, it would be much simpler to...
  5. Replies
    16
    Views
    3,679

    1. I just want it cycle through numbers 0-9 for...

    1. I just want it cycle through numbers 0-9 for each decimal place. I don't want it to loop more than the number of digits in the original int value.

    2. I want it to convert one character at a...
  6. Replies
    16
    Views
    3,679

    Converting an int to an address in an array

    Hello. This is my first post and I welcome any and all advice on this particular program I am writing. I am trying to take any int value and convert it to a constant address off an array. For...
Results 1 to 6 of 6