From 56c943c89481f2d433fcfbb62b56e65c574f975f Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 25 Feb 2016 18:29:20 +0200 Subject: [PATCH] @PlatformIO Library Registry manifest file * This library in Web Registry: http://platformio.org/#!/lib/show/1106/Bounce2 * Specification: [library.json](http://docs.platformio.org/en/latest/librarymanager/config.html) * Library Manager: http://docs.platformio.org/en/latest/librarymanager/index.html --- library.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..d666ba7 --- /dev/null +++ b/library.json @@ -0,0 +1,16 @@ +{ + "name": "Bounce2", + "keywords": "bounce, signal, input, ouput", + "description": "Debouncing library for Arduino or Wiring", + "repository": { + "type": "git", + "url": "https://github.com/thomasfredericks/Bounce2.git" + }, + "version": "2.1", + "exclude": [ + "*.png", + "*.zip" + ], + "frameworks": "arduino", + "platforms": "*" +} -- 2.54.0