Search Results - MEL PICBASIC Forum


Search:

Type: Posts; User: HenrikOlsson; Keyword(s):

Search: Search took 0.01 seconds.

  1. Replies
    43
    Views
    30,471

    Re: Multi-digit word variable to string

    Hi,
    That's correct. DEC is not a command by itself, it's what the manual calls a modifier among others (BIN, HEX etc).

    I've never tried it but I'm pretty sure you can start anywhere in the array...
  2. Replies
    43
    Views
    30,471

    Re: Multi-digit word variable to string

    Hi,
    One way could be to use the ArrayWrite command, something like:


    MSG VAR BYTE[4]
    RawT VAR BYTE

    RawT = 754

    ARRAYWRITE MSG, [DEC RawT]
Results 1 to 2 of 2