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