From cdf70d8f9a76dbb67450a04d93798851e6a892b3 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 10 Nov 2017 00:53:37 +0200 Subject: [PATCH 1/2] @PlatformIO Library Registry manifest file --- IRLib2/library.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 IRLib2/library.json diff --git a/IRLib2/library.json b/IRLib2/library.json new file mode 100644 index 0000000..b3b13aa --- /dev/null +++ b/IRLib2/library.json @@ -0,0 +1,39 @@ +{ + "name": "IRLib2", + "keywords": "ir, remote", + "description": "A library for receiving, decoding and sending infrared signals using Arduino", + "repository": + { + "type": "git", + "url": "https://github.com/cyborg5/IRLib2.git" + }, + "authors": + [ + { + "name": "Chris Young", + "email": "cy_borg5@cyborg5.com", + "url": "http://tech.cyborg5.com/irlib", + "maintainer": true + }, + { + "name": "Ken Shirriff", + "url": "http://www.righto.com/2009/08/multi-protocol-infrared-remote-library.html" + } + ], + "version": "2.0.0", + "frameworks": "arduino", + "platforms": "*", + "build": { + "flags": [ + "-I IRLib2", + "-I IRLibFreq", + "-I IRLibProtocols", + "-I IRLibRecv", + "-I IRLibRecvPCI" + ], + "srcFilter": [ + "+<*>", + "-" + ] + } +} From 0a4705b3fe1e8295a727305c0f64d12f46eced93 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 10 Nov 2017 00:55:59 +0200 Subject: [PATCH 2/2] @PlatformIO Library Registry manifest file --- IRLib2/library.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/IRLib2/library.json b/IRLib2/library.json index b3b13aa..e270462 100644 --- a/IRLib2/library.json +++ b/IRLib2/library.json @@ -35,5 +35,6 @@ "+<*>", "-" ] - } + }, + "examples": "IRLib2/examples/*/*.ino" }