I am trying to write code that will that convert any Hexadecimal number between 000-3E7 to Decimal. I would like to define the numbers using a 4x4 keypad. Don't know if anyone is familiar with, but the hardware i am using is in the FOX11 kit. Any help as I am new to this.
I am fine with the input and output (pc terminal window), just need help with conversion code.
I am fine with the input and output (pc terminal window), just need help with conversion code.
Hex to Dec conversion is straightforward.
Its based on dividing by 16, or additively counting 16s, then adding whatevers left over.
Its based on dividing by 16, or additively counting 16s, then adding whatevers left over.