In SX Microcontrollers, SX/B Compiler and SX-Key Tool, jjmonns wrote: Thanks for the help! I don't know how to make a variable a word with the SX. I was able to make it work with a byte and shortened it to work with that. Here is what I made: byte_To_Digits: tempW = __PARAM1 char = "0" DO WHILE tempW >= 100 INC char tempW = tempW - 100 LOOP LCD_OUT char char = "0" DO WHILE tempW >= 10 INC char tempW = tempW - 10 LOOP LCD_OUT char char = "0" + tempW LCD_OUT char RETURN ---------- End of Message ---------- You can view the post on-line at: http://forums.parallax.com/forums/default.aspx?f=7&p=1&m=142235#m142444 Need assistance? Send an email to the Forum Administrator at forumadmin@parallax.com The Parallax Forums are powered by dotNetBB Forums, copyright 2002-2006 (http://www.dotNetBB.com)