Difference between revisions of "Talk:ACKsess"

From Hackerspace ACKspace
Jump to: navigation, search
(upgrade idee)
 
(PRNG seed info)
Line 1: Line 1:
[[User:Prodigity|Prodigity]] 01:44, 22 November 2014 (CET) Upgrade idee; zoemer zodat mensen beter horen wanneer de deur open is.
+
Copied from [https://www.arduino.cc/reference/en/language/functions/time/micros/ arduino.cc]:
 +
<pre>
 +
micros() will overflow after approximately 70 minutes.
 +
On 16 MHz Arduino boards (e.g. Duemilanove and Nano),
 +
this function has a resolution of four microseconds
 +
(i.e. the value returned is always a multiple of four).
 +
On 8 MHz Arduino boards (e.g. the LilyPad),
 +
this function has a resolution of eight microseconds.
 +
</pre>

Revision as of 11:50, 13 December 2017

Copied from arduino.cc:

micros() will overflow after approximately 70 minutes.
On 16 MHz Arduino boards (e.g. Duemilanove and Nano),
this function has a resolution of four microseconds
(i.e. the value returned is always a multiple of four).
On 8 MHz Arduino boards (e.g. the LilyPad),
this function has a resolution of eight microseconds.