From cfbe00d7cd221a69a4a69c7314b5e79a213f80e1 Mon Sep 17 00:00:00 2001 From: Roman3349 Date: Sun, 9 Oct 2016 16:16:10 +0200 Subject: [PATCH] Add information about authors, examples, homepage and version to @PlatformIO Library Registry manifest file Signed-off-by: Roman3349 --- library.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/library.json b/library.json index fc44c97..cbd151c 100644 --- a/library.json +++ b/library.json @@ -2,15 +2,41 @@ "name": "PS2Keyboard", "keywords": "keyboard, emulation", "description": "PS2Keyboard (PS/2) allows you to use a keyboard for user input", + "authors": + [ + { + "name": "Paul Stoffregen", + "email": "paul@pjrc.com", + "url": "http://www.pjrc.com", + "maintainer": true + }, + { + "name": "Christian Weichel", + "email": "info@32leaves.net" + }, + { + "name": "L. Abraham Smith", + "email": "n3bah@microcompdesign.com" + }, + { + "name": "Cuningan", + "email": "cuninganreset@gmail.com" + }, + ], "repository": { "type": "git", "url": "https://github.com/PaulStoffregen/PS2Keyboard.git" }, + "version": "2.4", + "homepage": "http://www.pjrc.com/teensy/td_libs_PS2Keyboard.html", "frameworks": "arduino", "platforms": [ "atmelavr", "teensy" + ], + "examples": [ + "examples/*/*.pde" ] }