Changes between Initial Version and Version 1 of ArduinoTimers


Ignore:
Timestamp:
Nov 23, 2021, 12:58:05 PM (4 years ago)
Author:
Eric Hazen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ArduinoTimers

    v1 v1  
     1
     2These notes apply to the [https://www.microchip.com/en-us/product/ATMEGA328P ATMega328P] (Uno etc) using the Arduino IDE and libraries unless otherwise noted.
     3
     4The 328 has 3 timers:
     5
     6'''Timer0''' (8 bits)
     7
     8Used for {{{delay()}}}, {{{millis()}}} and {{{micros()}}}.  Don't mess with it.
     9
     10'''Timer1''' (16 bits)
     11
     12Not normally used.  For simple use, see the [https://www.arduino.cc/reference/en/libraries/timerone/ TimerOne] library.
     13
     14'''Timer2''' (8 bits)
     15
     16Used by e.g. the {{{tone()}}} function.