From 166d873cf98758c0df30e0269802ff8e2e801525 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 16 Feb 2015 23:24:23 +0200 Subject: [PATCH] PlatformIO Library Registry manifest file * This library in Web Registry: http://platformio.org/#!/lib/show/132/Encoder * Specification: [PlatformIO Library Manager](http://docs.platformio.org/en/latest/librarymanager/index.html) * Integration: [IDE Integration](http://docs.platformio.org/en/latest/ide.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..0a0f653 --- /dev/null +++ b/library.json @@ -0,0 +1,16 @@ +{ + "name": "Encoder", + "keywords": "encoder, signal, pulse", + "description": "Encoder counts pulses from quadrature encoded signals, which are commonly available from rotary knobs, motor or shaft sensors and other position sensors", + "repository": + { + "type": "git", + "url": "https://github.com/PaulStoffregen/Encoder.git" + }, + "frameworks": "arduino", + "platforms": + [ + "atmelavr", + "teensy" + ] +}