<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Clock Programming Troubleshooting</title>
		<link>http://tibasicdev.wikidot.com/forum/t-8329527/clock-programming-troubleshooting</link>
		<description>Posts in the discussion thread &quot;Clock Programming Troubleshooting&quot;</description>
				<copyright></copyright>
		<lastBuildDate>Thu, 12 Mar 2026 10:05:58 +0000</lastBuildDate>
		
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-8329527#post-4046981</guid>
				<title>Re: Clock Programming Troubleshooting</title>
				<link>http://tibasicdev.wikidot.com/forum/t-8329527/clock-programming-troubleshooting#post-4046981</link>
				<description></description>
				<pubDate>Thu, 01 Nov 2018 22:46:36 +0000</pubDate>
				<wikidot:authorName>Misfire</wikidot:authorName>				<wikidot:authorUserId>4409570</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Final Code:</p> <div class="code"> <pre><code>0-&gt;T While 1 T+1-&gt;T If T≥135 Then 1+C-&gt;C Disp C 0-&gt;T End End</code></pre></div> <p>Note:Sorry, around 135 cycles is about a second</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-8329527#post-4046969</guid>
				<title>Re: Clock Programming Troubleshooting</title>
				<link>http://tibasicdev.wikidot.com/forum/t-8329527/clock-programming-troubleshooting#post-4046969</link>
				<description></description>
				<pubDate>Thu, 01 Nov 2018 22:31:26 +0000</pubDate>
				<wikidot:authorName>Misfire</wikidot:authorName>				<wikidot:authorUserId>4409570</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thank you very much :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-8329527#post-4046957</guid>
				<title>Re: Clock Programming Troubleshooting</title>
				<link>http://tibasicdev.wikidot.com/forum/t-8329527/clock-programming-troubleshooting#post-4046957</link>
				<description></description>
				<pubDate>Thu, 01 Nov 2018 22:14:35 +0000</pubDate>
				<wikidot:authorName>Deoxal</wikidot:authorName>				<wikidot:authorUserId>4178723</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I tried your code and it worked just fine. I think I know what the problem is though, you need to ensure that T is less than 27 before you run the code.</p> <div class="code"> <pre><code>0-&gt;T // Add this line While 1 T+1-&gt;T If T=26 // or change this line to this one to If T≥26 Then 1+C-&gt;C Disp C 0-&gt;T End End</code></pre></div> <p>I'd opt for the first change because you could have a very large negative value in T that would require a long time to increment C for the first time. You should initialize C as well, probably to zero, since you want to display time.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-8329527#post-4046949</guid>
				<title>Clock Programming Troubleshooting</title>
				<link>http://tibasicdev.wikidot.com/forum/t-8329527/clock-programming-troubleshooting#post-4046949</link>
				<description></description>
				<pubDate>Thu, 01 Nov 2018 21:56:46 +0000</pubDate>
				<wikidot:authorName>Misfire</wikidot:authorName>				<wikidot:authorUserId>4409570</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I made a clock program and here's how it works.</p> <p>When the variable T is repeated with an operation it repeats and never stops unless there is a break. When T reaches 26, that is about a second for TI84+ SE. But when I run this program, nothing happens on the screen.</p> <div class="code"> <pre><code>While 1 T+1-&gt;T If T=26 Then 1+C-&gt;C Disp C 0-&gt;T End End</code></pre></div> <p>Can anyone tell me why nothing will display on screen? Thanks in advance :)</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>