HOWTO Convert character to Decimal


Closed Thread
Results 1 to 3 of 3
  1. #1

    Default HOWTO Convert character to Decimal

    Hello,

    I'm using the serin commando to recieve 4 karakters like "2560"
    now i need to convert this four karakters to the decimal value 2560
    has any body a idee.

    SERIN2 is no option!!!

  2. #2
    Join Date
    Dec 2003
    Location
    Wichita KS
    Posts
    511


    Did you find this post helpful? Yes | No

    Default

    Hello NL2TTL,

    N>>I'm using the serin commando to recieve 4 karakters like "2560"
    now i need to convert this four karakters to the decimal value 2560
    has any body a idee.<<

    since is is always a 4 character situation... use the dig command.

    PSUEDO code:

    Decimal var word 'byte is no good, because you are using 4 digits
    counter var byte

    Decimal=0
    For counter= 3 to 0 Step -1
    Number=Data Dig counter
    Decimal=Decimal + (Number *(10^counter))
    Next counter

    SerOut Decimal (a decimal representation of your 4 numbers.)

    I am at work, so I cannot give you the exact working code. but the above is very very close.


    DWayne
    Ability to Fly:
    Hurling yourself towards the ground, and missing.

    Engineers that Contribute to flying:
    Both optimists and pessimists contribute to the society. The optimist invents the aeroplane, the pessimist the parachute

    Pilots that are Flying:
    Those who know their limitations, and respect the green side of the grass...

  3. #3
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    PBP already handle it for you

    SERIN2 Serpin, Baudrate,[DEC4 MyVar]
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

Similar Threads

  1. Convert long binary number to ASCII Decimal
    By Joe Rocci in forum mel PIC BASIC Pro
    Replies: 6
    Last Post: - 9th July 2009, 13:58
  2. How to convert binary to decimal?
    By Cabomba in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 13th October 2007, 01:27
  3. Convert Hex to Decimal
    By RONKON in forum mel PIC BASIC Pro
    Replies: 0
    Last Post: - 9th May 2006, 01:01
  4. Convert to Decimal
    By mglazer in forum mel PIC BASIC Pro
    Replies: 7
    Last Post: - 5th November 2005, 11:31
  5. Convert a word variable to decimal
    By Tomexx in forum mel PIC BASIC Pro
    Replies: 1
    Last Post: - 4th December 2004, 20:02

Members who have read this thread : 1

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