From 3101b8a12178cd0520d824fe153ea7cc460f03c6 Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Thu, 25 Feb 2021 23:45:40 -0500 Subject: [PATCH] Releases v1.3.0 ### Releases v1.3.0 1. Add support to **AVR ATMEGA_16U4, ATMEGA_32U4** such as **Leonardo, YUN, ESPLORA, etc.** 2. Update examples --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ca86707..ee82907 100644 --- a/README.md +++ b/README.md @@ -259,11 +259,12 @@ Timer 3,4,5 are only available on Arduino Mega boards. These timers are all 16-b Before using any Timer, you have to make sure the **Timer has not been used by any other purpose.** -Only Timer1 is supported for Nano, UNO, etc. boards possessing 3 timers. -Only Timer1 and Timer2 are supported for ATMEGA_16U4, ATMEGA_32U4 boards, such as Leonardo, YUN, ESPLORA, etc. +#### Only Timer1 is supported for ATMEGA_16U4, ATMEGA_32U4 boards, such as Leonardo, YUN, ESPLORA, etc. -Timer3, Timer4 and Timer5 are only available for Arduino Mega boards. +#### Only Timer1 and Timer2 are supported for Nano, UNO, etc. boards possessing 3 timers. + +#### Timer3, Timer4 and Timer5 are only available for Arduino Mega boards. --- ---