<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									mac systeemklok in seriële monitor - Apple/Mac Hardware				            </title>
            <link>https://www.tweaking4all.nl/forum/applemac-hardware/mac-systeemklok-in-seriele-monitor/</link>
            <description>Tweaking4All.nl Discussie Forum</description>
            <language>nl-NL</language>
            <lastBuildDate>Mon, 10 Aug 2026 11:12:54 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: mac systeemklok in seriële monitor</title>
                        <link>https://www.tweaking4all.nl/forum/applemac-hardware/mac-systeemklok-in-seriele-monitor/#post-1148</link>
                        <pubDate>Tue, 23 Oct 2018 13:42:14 +0000</pubDate>
                        <description><![CDATA[Ik zie de type fout haha ... dus de &quot;domme&quot; test werkt wel goed?]]></description>
                        <content:encoded><![CDATA[<p>Ik zie de type fout haha ... dus de "domme" test werkt wel goed?</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.nl/forum/applemac-hardware/">Apple/Mac Hardware</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.nl/forum/applemac-hardware/mac-systeemklok-in-seriele-monitor/#post-1148</guid>
                    </item>
				                    <item>
                        <title>RE: mac systeemklok in seriële monitor</title>
                        <link>https://www.tweaking4all.nl/forum/applemac-hardware/mac-systeemklok-in-seriele-monitor/#post-1147</link>
                        <pubDate>Tue, 23 Oct 2018 13:10:05 +0000</pubDate>
                        <description><![CDATA[grappig, na een kleine correctie in regel 11, verandert het niet bij de uitvoer.]]></description>
                        <content:encoded><![CDATA[<p>grappig, na een kleine correctie in regel 11, verandert het niet bij de uitvoer.</p><p><br></p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.nl/forum/applemac-hardware/">Apple/Mac Hardware</category>                        <dc:creator>jacobus</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.nl/forum/applemac-hardware/mac-systeemklok-in-seriele-monitor/#post-1147</guid>
                    </item>
				                    <item>
                        <title>RE: mac systeemklok in seriële monitor</title>
                        <link>https://www.tweaking4all.nl/forum/applemac-hardware/mac-systeemklok-in-seriele-monitor/#post-1146</link>
                        <pubDate>Tue, 23 Oct 2018 12:19:38 +0000</pubDate>
                        <description><![CDATA[Hi Jacobus,&nbsp;Ik heb de source even hier geplaatst:int workT[] = {1000,2000,3000,4000}; // tijd in millisecondenint delaytijd = 3000;int teller = 4;void setup() {&nbsp; Serial.begin(9600)...]]></description>
                        <content:encoded><![CDATA[<p>Hi Jacobus,&nbsp;</p><p>Ik heb de source even hier geplaatst:</p><pre>int workT[] = {1000,2000,3000,4000}; // tijd in milliseconden<br>int delaytijd = 3000;<br>int teller = 4;<br>void setup() {<br>&nbsp; Serial.begin(9600);<br>}<br>void loop() {<br>&nbsp; for(int i=0; i&lt;teller; i++){      //welke knop is gebruikt?&nbsp;<br>&nbsp; &nbsp; &nbsp;Serial.print("Btm :");         // button<br>&nbsp; &nbsp; &nbsp;Serial.print(i);<br>&nbsp; &nbsp; &nbsp;Serial.println(" has been used");<br>&nbsp; &nbsp; &nbsp;<br>/*why is the system time listed here first?&nbsp; &nbsp;&nbsp;<br>&nbsp;*     Btm :1 has been used<br>&nbsp;*     16:19:50.988 -&gt; workT 1 is 2000 M-seconds<br>&nbsp;*     What am I doing wrong in these sketch?<br>*/<br>&nbsp; &nbsp; &nbsp;Serial.print("workT ");        //working time<br>&nbsp; &nbsp; &nbsp;Serial.print(i);<br>&nbsp; &nbsp; &nbsp;Serial.print(" is ");<br>&nbsp; &nbsp; &nbsp;Serial.print(workT<i>);<br>&nbsp; &nbsp; &nbsp;Serial.println(" M-seconds");<br>&nbsp; &nbsp; &nbsp;delay (delaytijd);<br>&nbsp; }<br>}</pre><p>Ik zou inderdaad een output zoals deze verwachten:</p><pre>Btm : 0 has been used<br>workT 0 is 1000 M-seconds<br>Btm : 1 has been used<br>workT 1 is 2000 M-seconds<br>Btm : 2 has been used<br>workT 2 is 3000 M-seconds<br>Btm : 3 has been used<br>workT 3 is 4000 M-seconds</pre><p>Misschien is het iets wat de seriële monitor automatisch doet? Kun je iets in de instellingen zien (ik gebruik de officiële Arduino IDE en daar staat niks in). Ik zie dat het een feature request was, maar kan het in de meest recente IDE niet als een optie zien.</p><p>Je zou iets doms kunnen gebruiken om te testen;</p><pre>void setup() {<br>&nbsp; Serial.begin(9600);<br>}<br>void loop() {<br>&nbsp; &nbsp; &nbsp;Serial.print("Btm :");         // button<br>&nbsp; &nbsp; &nbsp;Serial.print(0);<br>&nbsp; &nbsp; &nbsp;Serial.println(" has been used");<br>&nbsp; &nbsp; &nbsp;Serial.print("workT ");        //working time<br>&nbsp; &nbsp; &nbsp;Serial.print(0);<br>&nbsp; &nbsp; &nbsp;Serial.print(" is ");<br>&nbsp; &nbsp; &nbsp;Serial.print(1000]);<br>&nbsp; &nbsp; &nbsp;Serial.println(" M-seconds");<br>&nbsp; &nbsp; &nbsp;delay (3000);<br>}</pre><p>Kijken of het dan nog gebeurt.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.nl/forum/applemac-hardware/">Apple/Mac Hardware</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.nl/forum/applemac-hardware/mac-systeemklok-in-seriele-monitor/#post-1146</guid>
                    </item>
				                    <item>
                        <title>mac systeemklok in seriële monitor</title>
                        <link>https://www.tweaking4all.nl/forum/applemac-hardware/mac-systeemklok-in-seriele-monitor/#post-449</link>
                        <pubDate>Tue, 23 Oct 2018 11:23:59 +0000</pubDate>
                        <description><![CDATA[een voorbeeld wat ik gezien krijg bij gebrek van een Arduino one en seriële monitor. de vraag staat in de sketch.Wat zie ik over het hoofd of wat begrijp ik niet.]]></description>
                        <content:encoded><![CDATA[<p>een voorbeeld wat ik gezien krijg bij gebrek van een Arduino one en seriële monitor. de vraag staat in de sketch.</p><p>Wat zie ik over het hoofd of wat begrijp ik niet.</p><p><br></p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.nl/forum/applemac-hardware/">Apple/Mac Hardware</category>                        <dc:creator>jacobus</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.nl/forum/applemac-hardware/mac-systeemklok-in-seriele-monitor/#post-449</guid>
                    </item>
							        </channel>
        </rss>
		