From 6aebae2317a57fa61580584572a6d6a4548eef63 Mon Sep 17 00:00:00 2001 From: Schm1tz1 Date: Sun, 6 Mar 2016 22:47:57 +0100 Subject: [PATCH] changed to arduino 1.5 format --- .../SimpleServer/SimpleServer.ino | 0 .../MS5xxx/examples => examples}/Telnet/Telnet.ino | 0 .../MS5xxx/examples => examples}/Test/Test.ino | 0 libraries/MS5xxx/gpl.txt => gpl.txt | 0 libraries/MS5xxx/keywords.txt => keywords.txt | 0 library.json | 13 +++++++++++++ library.properties | 10 ++++++++++ {libraries/MS5xxx => src}/MS5611.cpp | 0 {libraries/MS5xxx => src}/MS5611.h | 0 {libraries/MS5xxx => src}/MS5xxx.cpp | 0 {libraries/MS5xxx => src}/MS5xxx.h | 0 11 files changed, 23 insertions(+) rename {libraries/MS5xxx/examples => examples}/SimpleServer/SimpleServer.ino (100%) rename {libraries/MS5xxx/examples => examples}/Telnet/Telnet.ino (100%) rename {libraries/MS5xxx/examples => examples}/Test/Test.ino (100%) rename libraries/MS5xxx/gpl.txt => gpl.txt (100%) rename libraries/MS5xxx/keywords.txt => keywords.txt (100%) create mode 100644 library.json create mode 100644 library.properties rename {libraries/MS5xxx => src}/MS5611.cpp (100%) rename {libraries/MS5xxx => src}/MS5611.h (100%) rename {libraries/MS5xxx => src}/MS5xxx.cpp (100%) rename {libraries/MS5xxx => src}/MS5xxx.h (100%) diff --git a/libraries/MS5xxx/examples/SimpleServer/SimpleServer.ino b/examples/SimpleServer/SimpleServer.ino similarity index 100% rename from libraries/MS5xxx/examples/SimpleServer/SimpleServer.ino rename to examples/SimpleServer/SimpleServer.ino diff --git a/libraries/MS5xxx/examples/Telnet/Telnet.ino b/examples/Telnet/Telnet.ino similarity index 100% rename from libraries/MS5xxx/examples/Telnet/Telnet.ino rename to examples/Telnet/Telnet.ino diff --git a/libraries/MS5xxx/examples/Test/Test.ino b/examples/Test/Test.ino similarity index 100% rename from libraries/MS5xxx/examples/Test/Test.ino rename to examples/Test/Test.ino diff --git a/libraries/MS5xxx/gpl.txt b/gpl.txt similarity index 100% rename from libraries/MS5xxx/gpl.txt rename to gpl.txt diff --git a/libraries/MS5xxx/keywords.txt b/keywords.txt similarity index 100% rename from libraries/MS5xxx/keywords.txt rename to keywords.txt diff --git a/library.json b/library.json new file mode 100644 index 0000000..31b969f --- /dev/null +++ b/library.json @@ -0,0 +1,13 @@ +{ + "name": "MS5xxx by Schm1tz1", + "keywords": "MS5611, MS5607, MS5611, Measurement Specialties, MEAS, pressure, sensor", + "description": "Library for digital pressure sensors MS5xxx by Measurement Specialties (MEAS). Tested with Arduino Uno/Nano/Mico and ESP8266. Long-term tests with MS5607 have been performed, working implementation for MS5611 chipset.", + "repository": + { + "type": "git", + "url": "https://github.com/Schm1tz1/arduino-ms5xxx" + }, + "frameworks": "arduino", + "platforms": "*" +} + diff --git a/library.properties b/library.properties new file mode 100644 index 0000000..d2f56a4 --- /dev/null +++ b/library.properties @@ -0,0 +1,10 @@ +name=MS5xxx +version=1.0.1 +author=Roman Schmitz +maintainer=Roman Schmitz +sentence=Library for digital pressure sensors MS5xxx by Measurement Specialties (MEAS). +paragraph=Tested with Arduino Uno/Nano/Mico and ESP8266. Long-term tests with MS5607, working implementation for MS5611 chipset. +category=Sensors +url=https://github.com/Schm1tz1/arduino-ms5xxx +architectures=* + diff --git a/libraries/MS5xxx/MS5611.cpp b/src/MS5611.cpp similarity index 100% rename from libraries/MS5xxx/MS5611.cpp rename to src/MS5611.cpp diff --git a/libraries/MS5xxx/MS5611.h b/src/MS5611.h similarity index 100% rename from libraries/MS5xxx/MS5611.h rename to src/MS5611.h diff --git a/libraries/MS5xxx/MS5xxx.cpp b/src/MS5xxx.cpp similarity index 100% rename from libraries/MS5xxx/MS5xxx.cpp rename to src/MS5xxx.cpp diff --git a/libraries/MS5xxx/MS5xxx.h b/src/MS5xxx.h similarity index 100% rename from libraries/MS5xxx/MS5xxx.h rename to src/MS5xxx.h