From a96b35a831e39aaa0a1ddaa93a402b562faa17ed Mon Sep 17 00:00:00 2001 From: midilab Date: Tue, 16 May 2023 04:14:56 -0400 Subject: [PATCH] added platform.io support --- library.json | 25 +++++++++++++++++++++++++ library.properties | 2 +- src/uClock.cpp | 2 +- src/uClock.h | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..7e06292 --- /dev/null +++ b/library.json @@ -0,0 +1,25 @@ +{ + "name": "uClock", + "version": "1.4.0", + "description": "A Library to implement BPM clock tick calls using hardware interruption. Supported and tested on AVR boards(ATmega168/328, ATmega16u4/32u4 and ATmega2560) and ARM boards(Teensy, Seedstudio XIAO M0. ESP32 and STM32)", + "keywords": "bpm, clock, timing, tick, music, generator", + "repository": + { + "type": "git", + "url": "https://github.com/midilab/uClock.git" + }, + "authors": + [ + { + "name": "Romulo Silva", + "email": "contact@midilab.co", + "url": "https://midilab.co", + "maintainer": true + } + ], + "license": "MIT", + "homepage": "https://midilab.co/umodular/", + "dependencies": {}, + "frameworks": "*", + "platforms": "avr,arm,samd,stm32,esp32" +} diff --git a/library.properties b/library.properties index 2a4655d..a637543 100755 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=uClock -version=1.3.0 +version=1.4.0 author=Romulo Silva maintainer=Romulo Silva sentence=BPM clock generator for Arduino platform. diff --git a/src/uClock.cpp b/src/uClock.cpp index f204a4f..420d5c2 100755 --- a/src/uClock.cpp +++ b/src/uClock.cpp @@ -2,7 +2,7 @@ * @file uClock.cpp * Project BPM clock generator for Arduino * @brief A Library to implement BPM clock tick calls using hardware interruption. Supported and tested on AVR boards(ATmega168/328, ATmega16u4/32u4 and ATmega2560) and ARM boards(Teensy, Seedstudio XIAO M0 and ESP32) - * @version 1.3.0 + * @version 1.4.0 * @author Romulo Silva * @date 10/06/2017 * @license MIT - (c) 2022 - Romulo Silva - contact@midilab.co diff --git a/src/uClock.h b/src/uClock.h index ad717fe..4380879 100755 --- a/src/uClock.h +++ b/src/uClock.h @@ -2,7 +2,7 @@ * @file uClock.h * Project BPM clock generator for Arduino * @brief A Library to implement BPM clock tick calls using hardware interruption. Supported and tested on AVR boards(ATmega168/328, ATmega16u4/32u4 and ATmega2560) and ARM boards(Teensy, Seedstudio XIAO M0 and ESP32) - * @version 1.2.0 + * @version 1.4.0 * @author Romulo Silva * @date 10/06/2017 * @license MIT - (c) 2022 - Romulo Silva - contact@midilab.co