From 42e0234bbb895cc9635f42292e65fdf4c86255c2 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 25 Sep 2014 21:35:54 +0300 Subject: [PATCH 1/2] PlatformIO-based manifest file Web: http://platformio.ikravets.com/#!/lib/show/Arduino-SHT 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..dfeb045 --- /dev/null +++ b/library.json @@ -0,0 +1,10 @@ +{ + "name": "Arduino-SHT", + "keywords": "sensor, humidity, temperature", + "description": "Provides a simple interface to the SHT1x series (SHT10, SHT11, SHT15) and SHT7x series (SHT71, SHT75) temperature / humidity sensors from Sensirion", + "repository": + { + "type": "git", + "url": "https://github.com/practicalarduino/SHT1x.git" + } +} From 19c56c2f6d7e47f8b18da5ea86636704ec2b3921 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 15 Nov 2014 16:51:47 +0200 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 dfeb045..16d7d1f 100644 --- a/library.json +++ b/library.json @@ -1,10 +1,12 @@ { - "name": "Arduino-SHT", + "name": "SHT1x", "keywords": "sensor, humidity, temperature", "description": "Provides a simple interface to the SHT1x series (SHT10, SHT11, SHT15) and SHT7x series (SHT71, SHT75) temperature / humidity sensors from Sensirion", "repository": { "type": "git", "url": "https://github.com/practicalarduino/SHT1x.git" - } + }, + "frameworks": "arduino", + "platforms": "atmelavr" }