In SX Microcontrollers, SX/B Compiler and SX-Key Tool, tdg8934 wrote: Thanks Bean. That solved my question to why I was seeing an "I5" displayed when it went below 0 (into 255). ---------------------------------------------------------- secs = 15 times(3) = secs / 10 ' times(3) = 15 / 10 = 1 (rounded) times(3) = times(3) + $30 ' times(3) = $31 or "1" times(4) = __REMAINDER ' times(4) = 5 times(4) = times(4) + $30 ' times(4) = $35 or "5" ---------------------------------------------------------- [b]secs = 255 [/b]times(3) = secs / 10 ' times(3) = 255 / 10 = 25 (rounded) times(3) = times(3) + $30 ' times(3) = $49 or "I" times(4) = __REMAINDER ' times(4) = 5 times(4) = times(4) + $30 ' times(4) = $35 or "5" ---------- End of Message ---------- You can view the post on-line at: http://forums.parallax.com/forums/default.aspx?f=7&p=1&m=398272#m398284 Need assistance? Send an email to the Forum Administrator at forumadmin@parallax.com The Parallax Forums are powered by dotNetBB Forums, copyright 2002-2009 (http://www.dotNetBB.com)