From 36fabffee92651ff825435f091d38471776decdb Mon Sep 17 00:00:00 2001 From: SirUli Date: Sat, 20 Feb 2016 18:18:38 +0100 Subject: [PATCH 1/2] Create library.json for usage with platformio For the usage of the library with platformio, a file called library.json is required. See: http://docs.platformio.org/en/latest/librarymanager/config.html --- library.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..334b6f5 --- /dev/null +++ b/library.json @@ -0,0 +1,17 @@ +{ + "name": "HX711", + "keywords": "hx711, scale, weight", + "description": "An Arduino library to interface the Avia Semiconductor HX711 24-Bit Analog-to-Digital Converter (ADC) for Weight Scales.", + "repository": { + "type": "git", + "url": "https://github.com/bogde/HX711.gitt" + }, + "version": "0.1", + "exclude": "tests", + "examples": "examples/*/*.ino", + "frameworks": "arduino", + "platforms": [ + "atmelavr", + "espressif" + ] +} From 5a741e18fe37c2720f15f7e55331571b11bfe083 Mon Sep 17 00:00:00 2001 From: SirUli Date: Sat, 20 Feb 2016 18:21:13 +0100 Subject: [PATCH 2/2] Fixed copy and paste error Sorry had an copy & paste error which is now fixed. --- library.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.json b/library.json index 334b6f5..d4c9452 100644 --- a/library.json +++ b/library.json @@ -4,7 +4,7 @@ "description": "An Arduino library to interface the Avia Semiconductor HX711 24-Bit Analog-to-Digital Converter (ADC) for Weight Scales.", "repository": { "type": "git", - "url": "https://github.com/bogde/HX711.gitt" + "url": "https://github.com/bogde/HX711.git" }, "version": "0.1", "exclude": "tests",