From 45d8bff06a10ae9fcfa109a472677e9f0e031e21 Mon Sep 17 00:00:00 2001 From: RobTillaart Date: Sat, 17 Dec 2016 20:53:18 +0100 Subject: [PATCH] added library.json files --- libraries/AD524X/library.json | 15 +++++++++++++++ libraries/AnalogPin/library.json | 15 +++++++++++++++ libraries/Angle/library.json | 15 +++++++++++++++ libraries/AvrHeap/library.json | 15 +++++++++++++++ libraries/BitArray/library.json | 15 +++++++++++++++ libraries/BoolArray/library.json | 15 +++++++++++++++ libraries/Complex/library.json | 15 +++++++++++++++ libraries/CountDown/library.json | 15 +++++++++++++++ libraries/Cozir/library.json | 15 +++++++++++++++ libraries/DHT2pin/library.json | 15 +++++++++++++++ libraries/DHTlib/library.json | 15 +++++++++++++++ libraries/DHTstable/library.json | 15 +++++++++++++++ libraries/DistanceTable/library.json | 15 +++++++++++++++ libraries/FastMap/library.json | 15 +++++++++++++++ libraries/FastShiftIn/library.json | 15 +++++++++++++++ libraries/FastShiftOut/library.json | 15 +++++++++++++++ libraries/Fraction/library.json | 15 +++++++++++++++ libraries/Histogram/library.json | 15 +++++++++++++++ libraries/I2C_EEPROM/library.json | 15 +++++++++++++++ libraries/IEEE754tools/library.json | 15 +++++++++++++++ libraries/MAX31855/library.json | 15 +++++++++++++++ libraries/MCP4725/library.json | 15 +++++++++++++++ libraries/MS5611/library.json | 15 +++++++++++++++ libraries/MultiMap/library.json | 15 +++++++++++++++ libraries/PCA9635/library.json | 15 +++++++++++++++ libraries/PCA9685/library.json | 15 +++++++++++++++ libraries/PCF8574/library.json | 15 +++++++++++++++ libraries/Par27979/library.json | 15 +++++++++++++++ libraries/ParPrinter/library.json | 15 +++++++++++++++ libraries/PulsePattern/library.json | 15 +++++++++++++++ libraries/Radar/library.json | 15 +++++++++++++++ libraries/RunningMedian/library.json | 15 +++++++++++++++ libraries/Set/library.json | 15 +++++++++++++++ libraries/Statistic/library.json | 15 +++++++++++++++ libraries/StopWatch/library.json | 15 +++++++++++++++ libraries/Temperature/library.json | 15 +++++++++++++++ libraries/VT100/library.json | 15 +++++++++++++++ libraries/XMLWriter/library.json | 15 +++++++++++++++ libraries/hmc6532/library.json | 15 +++++++++++++++ 39 files changed, 585 insertions(+) create mode 100644 libraries/AD524X/library.json create mode 100644 libraries/AnalogPin/library.json create mode 100644 libraries/Angle/library.json create mode 100644 libraries/AvrHeap/library.json create mode 100644 libraries/BitArray/library.json create mode 100644 libraries/BoolArray/library.json create mode 100644 libraries/Complex/library.json create mode 100644 libraries/CountDown/library.json create mode 100644 libraries/Cozir/library.json create mode 100644 libraries/DHT2pin/library.json create mode 100644 libraries/DHTlib/library.json create mode 100644 libraries/DHTstable/library.json create mode 100644 libraries/DistanceTable/library.json create mode 100644 libraries/FastMap/library.json create mode 100644 libraries/FastShiftIn/library.json create mode 100644 libraries/FastShiftOut/library.json create mode 100644 libraries/Fraction/library.json create mode 100644 libraries/Histogram/library.json create mode 100644 libraries/I2C_EEPROM/library.json create mode 100644 libraries/IEEE754tools/library.json create mode 100644 libraries/MAX31855/library.json create mode 100644 libraries/MCP4725/library.json create mode 100644 libraries/MS5611/library.json create mode 100644 libraries/MultiMap/library.json create mode 100644 libraries/PCA9635/library.json create mode 100644 libraries/PCA9685/library.json create mode 100644 libraries/PCF8574/library.json create mode 100644 libraries/Par27979/library.json create mode 100644 libraries/ParPrinter/library.json create mode 100644 libraries/PulsePattern/library.json create mode 100644 libraries/Radar/library.json create mode 100644 libraries/RunningMedian/library.json create mode 100644 libraries/Set/library.json create mode 100644 libraries/Statistic/library.json create mode 100644 libraries/StopWatch/library.json create mode 100644 libraries/Temperature/library.json create mode 100644 libraries/VT100/library.json create mode 100644 libraries/XMLWriter/library.json create mode 100644 libraries/hmc6532/library.json diff --git a/libraries/AD524X/library.json b/libraries/AD524X/library.json new file mode 100644 index 00000000..d1006329 --- /dev/null +++ b/libraries/AD524X/library.json @@ -0,0 +1,15 @@ +{ + "name": "AD524X", + "keywords": "I2C digital PotentioMeter AD5241 AD5242", + "description": "The library is to control digital PotentioMeter AD5241 AD5242", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/AD524X" + } +} diff --git a/libraries/AnalogPin/library.json b/libraries/AnalogPin/library.json new file mode 100644 index 00000000..071b6941 --- /dev/null +++ b/libraries/AnalogPin/library.json @@ -0,0 +1,15 @@ +{ + "name": "AnalogPin", + "keywords": "analogRead, smooth, analog, noise reduction", + "description": "Class for smoothing analogReads.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/AnalogPin" + } +} diff --git a/libraries/Angle/library.json b/libraries/Angle/library.json new file mode 100644 index 00000000..8d3322ec --- /dev/null +++ b/libraries/Angle/library.json @@ -0,0 +1,15 @@ +{ + "name": "Angle", + "keywords": "Angle convert seconds minutes hours degrees radians", + "description": "Library to convert between floating point angle to minutes hours representation.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Angle" + } +} diff --git a/libraries/AvrHeap/library.json b/libraries/AvrHeap/library.json new file mode 100644 index 00000000..83548097 --- /dev/null +++ b/libraries/AvrHeap/library.json @@ -0,0 +1,15 @@ +{ + "name": "Avrheap", + "keywords": "heap dump walk free list ", + "description": "Library to runtime analyze the structure of the heap (AVR328).", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Avrheap" + } +} diff --git a/libraries/BitArray/library.json b/libraries/BitArray/library.json new file mode 100644 index 00000000..e263ee4b --- /dev/null +++ b/libraries/BitArray/library.json @@ -0,0 +1,15 @@ +{ + "name": "BitArray", + "keywords": "Bit Array Boolean ", + "description": "Library to make a compact array of objects with a size expressed in bits. typically 1..10", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/BitArray" + } +} diff --git a/libraries/BoolArray/library.json b/libraries/BoolArray/library.json new file mode 100644 index 00000000..baabb3e4 --- /dev/null +++ b/libraries/BoolArray/library.json @@ -0,0 +1,15 @@ +{ + "name": "BoolArray", + "keywords": "Bool Boolean array compact", + "description": "Library to implement a compact array of booleans of max size 2000.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/BoolArray" + } +} diff --git a/libraries/Complex/library.json b/libraries/Complex/library.json new file mode 100644 index 00000000..76540016 --- /dev/null +++ b/libraries/Complex/library.json @@ -0,0 +1,15 @@ +{ + "name": "Complex", + "keywords": "Complex numbers Imaginary phase modulus polar conjugate", + "description": "Library for Complex math for Arduino.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Complex" + } +} diff --git a/libraries/CountDown/library.json b/libraries/CountDown/library.json new file mode 100644 index 00000000..a176f617 --- /dev/null +++ b/libraries/CountDown/library.json @@ -0,0 +1,15 @@ +{ + "name": "CountDown", + "keywords": "Count down stopwatch timer, MILLIS, MICROS, SECONDS", + "description": "Library to implement a CountDown clock (in SW no HW).", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/CountDown" + } +} diff --git a/libraries/Cozir/library.json b/libraries/Cozir/library.json new file mode 100644 index 00000000..6302a27d --- /dev/null +++ b/libraries/Cozir/library.json @@ -0,0 +1,15 @@ +{ + "name": "Cozir", + "keywords": "Cozir CO2 sensor polling", + "description": "Library for COZIR range of sensors for Arduino. Polling mode only.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Cozir" + } +} diff --git a/libraries/DHT2pin/library.json b/libraries/DHT2pin/library.json new file mode 100644 index 00000000..8bcd55c0 --- /dev/null +++ b/libraries/DHT2pin/library.json @@ -0,0 +1,15 @@ +{ + "name": "DHT2pin", + "keywords": "DHT11 DHT22 DHT33 DHT44 AM2301 AM2302 AM2303", + "description": "Experimental library of the DHT library that uses 2 pins instead of 3.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/DHT2pin" + } +} diff --git a/libraries/DHTlib/library.json b/libraries/DHTlib/library.json new file mode 100644 index 00000000..31233b5d --- /dev/null +++ b/libraries/DHTlib/library.json @@ -0,0 +1,15 @@ +{ + "name": "DHTlib", + "keywords": "DHT11 DHT22 DHT33 DHT44 AM2301 AM2302 AM2303", + "description": "Optimized Library for DHT Temperature & Humidity Sensor on AVR only.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/DHTlib" + } +} diff --git a/libraries/DHTstable/library.json b/libraries/DHTstable/library.json new file mode 100644 index 00000000..c1ccbfe5 --- /dev/null +++ b/libraries/DHTstable/library.json @@ -0,0 +1,15 @@ +{ + "name": "DHTlib", + "keywords": "DHT11 DHT22 DHT33 DHT44 AM2301 AM2302 AM2303", + "description": "Stable version of the library for DHT Temperature & Humidity Sensor.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/DHTstable" + } +} diff --git a/libraries/DistanceTable/library.json b/libraries/DistanceTable/library.json new file mode 100644 index 00000000..bd69720d --- /dev/null +++ b/libraries/DistanceTable/library.json @@ -0,0 +1,15 @@ +{ + "name": "DistanceTable", + "keywords": "Distance triangle matrix lookup efficient", + "description": "Library for a memory efficient DistanceTable for Arduino.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/DistanceTable" + } +} diff --git a/libraries/FastMap/library.json b/libraries/FastMap/library.json new file mode 100644 index 00000000..aef4a0e0 --- /dev/null +++ b/libraries/FastMap/library.json @@ -0,0 +1,15 @@ +{ + "name": "FastMap", + "keywords": "Fast Map Lookup", + "description": "Library with fast map function for Arduino.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/FastMap" + } +} diff --git a/libraries/FastShiftIn/library.json b/libraries/FastShiftIn/library.json new file mode 100644 index 00000000..4d62c081 --- /dev/null +++ b/libraries/FastShiftIn/library.json @@ -0,0 +1,15 @@ +{ + "name": "FastShiftIn", + "keywords": "Shift in serial ", + "description": "Class for up to 2x faster shift in.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/FastShiftIn" + } +} diff --git a/libraries/FastShiftOut/library.json b/libraries/FastShiftOut/library.json new file mode 100644 index 00000000..3661dd7a --- /dev/null +++ b/libraries/FastShiftOut/library.json @@ -0,0 +1,15 @@ +{ + "name": "FastShiftOut", + "keywords": "Shift out serial ", + "description": "Class for up to 2x faster shift out. Implements print() interface.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/FastShiftOut" + } +} diff --git a/libraries/Fraction/library.json b/libraries/Fraction/library.json new file mode 100644 index 00000000..06346411 --- /dev/null +++ b/libraries/Fraction/library.json @@ -0,0 +1,15 @@ +{ + "name": "Fraction", + "keywords": "Library for using fractions.", + "description": ".", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Fraction" + } +} diff --git a/libraries/Histogram/library.json b/libraries/Histogram/library.json new file mode 100644 index 00000000..edc8ed9a --- /dev/null +++ b/libraries/Histogram/library.json @@ -0,0 +1,15 @@ +{ + "name": "Histogram", + "keywords": "Histogram VAL CDF PMF frequency", + "description": "Library for creating histogram math.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Histogram" + } +} diff --git a/libraries/I2C_EEPROM/library.json b/libraries/I2C_EEPROM/library.json new file mode 100644 index 00000000..95731b9b --- /dev/null +++ b/libraries/I2C_EEPROM/library.json @@ -0,0 +1,15 @@ +{ + "name": "I2C_EEPROM", + "keywords": "EEPROM 24LC256", + "description": "Library for I2C EEPROMS.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/I2C_EEPROM" + } +} diff --git a/libraries/IEEE754tools/library.json b/libraries/IEEE754tools/library.json new file mode 100644 index 00000000..c0953ad4 --- /dev/null +++ b/libraries/IEEE754tools/library.json @@ -0,0 +1,15 @@ +{ + "name": "IEEE754tools", + "keywords": "IEEE 754 ", + "description": "Helper functions for IEEE 754 floating point format.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/IEEE754tools" + } +} diff --git a/libraries/MAX31855/library.json b/libraries/MAX31855/library.json new file mode 100644 index 00000000..bdb25152 --- /dev/null +++ b/libraries/MAX31855/library.json @@ -0,0 +1,15 @@ +{ + "name": "MAX31855", + "keywords": "MAX31855 Thermocouple", + "description": "Library for MAX31855 Thermocouple.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/MAX31855" + } +} diff --git a/libraries/MCP4725/library.json b/libraries/MCP4725/library.json new file mode 100644 index 00000000..24cbd9ee --- /dev/null +++ b/libraries/MCP4725/library.json @@ -0,0 +1,15 @@ +{ + "name": "MCP4725", + "keywords": "MCP4725 DAC Convertor", + "description": "LIbrary for the MCP4725 DAC.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/MCP4725" + } +} diff --git a/libraries/MS5611/library.json b/libraries/MS5611/library.json new file mode 100644 index 00000000..809bc9c7 --- /dev/null +++ b/libraries/MS5611/library.json @@ -0,0 +1,15 @@ +{ + "name": "MS5611", + "keywords": "MS5611 Temperature Pressure", + "description": "Experimental library for MS5611 Temperature & Pressure for Arduino.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/MS5611" + } +} diff --git a/libraries/MultiMap/library.json b/libraries/MultiMap/library.json new file mode 100644 index 00000000..e1008e6e --- /dev/null +++ b/libraries/MultiMap/library.json @@ -0,0 +1,15 @@ +{ + "name": "MultiMap", + "keywords": "MultiMap Map interpolation non-linear", + "description": "Library for fast non-linear interpolation by means of 2 helper arrays.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/MultiMap" + } +} diff --git a/libraries/PCA9635/library.json b/libraries/PCA9635/library.json new file mode 100644 index 00000000..f477abe9 --- /dev/null +++ b/libraries/PCA9635/library.json @@ -0,0 +1,15 @@ +{ + "name": "PCA9635", + "keywords": "I2C PCA9635 PWM", + "description": "Library PCA9635 library .", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/PCA9635" + } +} diff --git a/libraries/PCA9685/library.json b/libraries/PCA9685/library.json new file mode 100644 index 00000000..23d65a8c --- /dev/null +++ b/libraries/PCA9685/library.json @@ -0,0 +1,15 @@ +{ + "name": "PCA9685", + "keywords": "I2C PCA9685 PWM", + "description": "Library for PCA9685 library.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/PCA9685" + } +} diff --git a/libraries/PCF8574/library.json b/libraries/PCF8574/library.json new file mode 100644 index 00000000..c29f6e1e --- /dev/null +++ b/libraries/PCF8574/library.json @@ -0,0 +1,15 @@ +{ + "name": "PCF8574", + "keywords": "I2C PCF8574 IO I/O shift rotate", + "description": "Library PCF8574 library for Arduino, implementing shift rotate.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/PCF8574" + } +} diff --git a/libraries/Par27979/library.json b/libraries/Par27979/library.json new file mode 100644 index 00000000..a401804e --- /dev/null +++ b/libraries/Par27979/library.json @@ -0,0 +1,15 @@ +{ + "name": "Par27979", + "keywords": "Parallax 27979 serial display", + "description": "Defines for Parallax 27979 serial display.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Par27979" + } +} diff --git a/libraries/ParPrinter/library.json b/libraries/ParPrinter/library.json new file mode 100644 index 00000000..dd23c7ac --- /dev/null +++ b/libraries/ParPrinter/library.json @@ -0,0 +1,15 @@ +{ + "name": "ParPrinter", + "keywords": "Parallel printer ", + "description": "Experimental (not complete) library to connect a parallel printer to Arduino. Implements printer interface.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/ParPrinter" + } +} diff --git a/libraries/PulsePattern/library.json b/libraries/PulsePattern/library.json new file mode 100644 index 00000000..d537305a --- /dev/null +++ b/libraries/PulsePattern/library.json @@ -0,0 +1,15 @@ +{ + "name": "PulsePattern", + "keywords": "Pulse pattern repeating ", + "description": "Library to generate repeating pulse patterns. (uses timer1)", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/PulsePattern" + } +} diff --git a/libraries/Radar/library.json b/libraries/Radar/library.json new file mode 100644 index 00000000..30ba26a0 --- /dev/null +++ b/libraries/Radar/library.json @@ -0,0 +1,15 @@ +{ + "name": "Radar", + "keywords": "Pan tilt", + "description": "Experimental library for a pan tilt radar.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Radar" + } +} diff --git a/libraries/RunningMedian/library.json b/libraries/RunningMedian/library.json new file mode 100644 index 00000000..ef5f5145 --- /dev/null +++ b/libraries/RunningMedian/library.json @@ -0,0 +1,15 @@ +{ + "name": "RunningMedian", + "keywords": "running median, average, outliers", + "description": "The library stores the last N individual values in a buffer to select the median. It filters outliers.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/RunningMedian" + } +} diff --git a/libraries/Set/library.json b/libraries/Set/library.json new file mode 100644 index 00000000..5b27cf4d --- /dev/null +++ b/libraries/Set/library.json @@ -0,0 +1,15 @@ +{ + "name": "Set", + "keywords": "Set union diff intersection equal subset", + "description": "Library to implement SET datastructure.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Set" + } +} diff --git a/libraries/Statistic/library.json b/libraries/Statistic/library.json new file mode 100644 index 00000000..3da1a0b7 --- /dev/null +++ b/libraries/Statistic/library.json @@ -0,0 +1,15 @@ +{ + "name": "Statistic", + "keywords": "Statistic sum min max average variance standard deviation population unbiased", + "description": "Library with basic statistical functions for Arduino.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Statistic" + } +} diff --git a/libraries/StopWatch/library.json b/libraries/StopWatch/library.json new file mode 100644 index 00000000..b0c6cd13 --- /dev/null +++ b/libraries/StopWatch/library.json @@ -0,0 +1,15 @@ +{ + "name": "StopWatch", + "keywords": "StopWatch start stop elapsed millis micros seconds", + "description": "Library to implement a stopwatch.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/StopWatch" + } +} diff --git a/libraries/Temperature/library.json b/libraries/Temperature/library.json new file mode 100644 index 00000000..90efb18a --- /dev/null +++ b/libraries/Temperature/library.json @@ -0,0 +1,15 @@ +{ + "name": "Temperature", + "keywords": "Temperature Kelvin Celsius Fahrenheit dewPoint humidex heatIndex", + "description": "Library with weather related functions.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/Temperature" + } +} diff --git a/libraries/VT100/library.json b/libraries/VT100/library.json new file mode 100644 index 00000000..c7799aab --- /dev/null +++ b/libraries/VT100/library.json @@ -0,0 +1,15 @@ +{ + "name": "VT100", + "keywords": "VT100 terminal display codes", + "description": "Display codes (defines) for VT100 terminal emulators.", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/VT100" + } +} diff --git a/libraries/XMLWriter/library.json b/libraries/XMLWriter/library.json new file mode 100644 index 00000000..ae20b775 --- /dev/null +++ b/libraries/XMLWriter/library.json @@ -0,0 +1,15 @@ +{ + "name": "XMLWriter", + "keywords": "Write XML node header tag indent field", + "description": ".", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/XMLWriter" + } +} diff --git a/libraries/hmc6532/library.json b/libraries/hmc6532/library.json new file mode 100644 index 00000000..6b7d3105 --- /dev/null +++ b/libraries/hmc6532/library.json @@ -0,0 +1,15 @@ +{ + "name": "HMC6352", + "keywords": "Compass", + "description": "Experimental library for digital compass sensor", + "repository": + { + "type": "git", + "url": "https://github.com/RobTillaart/Arduino.git" + }, + "frameworks": "arduino", + "platforms": "*", + "export": { + "include": "libraries/HMC6352" + } +}