In SX Microcontrollers, SX/B Compiler and SX-Key Tool, JonnyMac wrote: The LCD wants ASCII characters and you're sending their decimal values. You need to do something like this: temp10 = tempIn / 10 temp01 = __REMAINDER ' this saves a lot of code versus using // LCDdata = temp10 + "0" ' convert to ASCII SER_OUT LCDdata = temp01 + "0" SER_OUT ---------- End of Message ---------- You can view the post on-line at: http://forums.parallax.com/forums/default.aspx?f=7&p=1&m=298374#m298378 Need assistance? Send an email to the Forum Administrator at forumadmin@parallax.com The Parallax Forums are powered by dotNetBB Forums, copyright 2002-2008 (http://www.dotNetBB.com)