Hex operations library

<< Click to Display Table of Contents >>

Navigation:  Project > Scripts > ST language > Embedded functions >

Hex operations library

Previous pageReturn to chapter overviewNext page

hextoint(Input) - converts hex value into integer.

inttohex(Input) - converts integer value into hex.

 

Example:

string a = inttohex(255);

print(a);

Response:

a = "ff";