From e947f0924e28e75fced86949db6d1babb2fcb198 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 25 Sep 2014 14:18:56 +0300 Subject: [PATCH 1/2] PlatformIO-based manifest file Web: http://platformio.ikravets.com/#!/lib/show/Arduino-IRremote Docs: http://docs.platformio.ikravets.com/en/latest/librarymanager/index.html --- library.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..2edf145 --- /dev/null +++ b/library.json @@ -0,0 +1,10 @@ +{ + "name": "Arduino-IRremote", + "keywords": "infrared, ir, remote", + "description": "Send and receive infrared signals with multiple protocols", + "repository": + { + "type": "git", + "url": "https://github.com/shirriff/Arduino-IRremote.git" + } +} From a3cdf402d7acea346f9010ce431d7ff301d2b469 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 20 Oct 2014 11:41:09 +0300 Subject: [PATCH 2/2] Avoid trademark issues with library name Added frameworks and platforms fields --- library.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/library.json b/library.json index 2edf145..3a29ecd 100644 --- a/library.json +++ b/library.json @@ -1,10 +1,12 @@ { - "name": "Arduino-IRremote", + "name": "IRremote", "keywords": "infrared, ir, remote", "description": "Send and receive infrared signals with multiple protocols", "repository": { "type": "git", "url": "https://github.com/shirriff/Arduino-IRremote.git" - } + }, + "frameworks": "arduino", + "platforms": "atmelavr" }