MAKEDEC/de
(Difference between revisions)
(Created page with "= <span class="f_Header">Action</span> = Convert a BCD byte or Integer/Word variable to its DECIMAL value. <span style="font-family: Arial;"> </span> <span style="font...") |
m (1 revision) |
Revision as of 21:15, 15 February 2013
Contents |
= (**COPIED FROM ENGLISH PAGE**) === Action
Convert a BCD byte or Integer/Word variable to its DECIMAL value.
Syntax
var1 = MAKEDEC(var2)
Remarks
var1 |
Variable that will be assigned with the converted value. |
var2 |
Variable that holds the BCD value. |
When you want to use an I2C clock device, which stores its values as BCD values you can use this function to convert variables from BCD to decimal.
See also
Example
Dim A As Byte A = 65 Print A Print Bcd(a) A = Makedec(a) Print Spc(3) ; A End
Languages | English • Deutsch |
---|