diff --git a/AnalogKeypad.cpp b/AnalogKeypad.cpp index c25885a..b9021fb 100644 --- a/AnalogKeypad.cpp +++ b/AnalogKeypad.cpp @@ -1,7 +1,7 @@ // // FILE: AnalogKeypad.cpp // AUTHOR: Rob Tillaart -// VERSION: 0.1.3 +// VERSION: 0.1.4 // DATE: 2019-01-31 // PURPOSE: Class for (Robotdyn) 4x4 and 4x3 analog keypad // @@ -10,6 +10,7 @@ // 0.1.1 2019-02-01 add pressed() event() last() // 0.1.2 2019-02-01 refactored rawRead(), first stable version // 0.1.3 2020-03-25 minor refactoring +// 0.1.4 2020-05-27 update library.json // #include "AnalogKeypad.h" diff --git a/AnalogKeypad.h b/AnalogKeypad.h index d8bab56..15c9134 100644 --- a/AnalogKeypad.h +++ b/AnalogKeypad.h @@ -2,7 +2,7 @@ // // FILE: AnalogKeypad.h // AUTHOR: Rob Tillaart -// VERSION: 0.1.3 +// VERSION: 0.1.4 // DATE: 2019-01-31 // PURPOSE: Class for (Robotdyn) 4x4 and 4x3 analog keypad // URL: https://github.com/RobTillaart/AnalogKeypad @@ -10,7 +10,7 @@ #include "Arduino.h" -#define ANALOGKEYPAD_LIB_VERSION "0.1.3" +#define ANALOGKEYPAD_LIB_VERSION "0.1.4" #define NOKEY 0x00 #define PRESSED 0x80 diff --git a/examples/.vs/slnx.sqlite b/examples/.vs/slnx.sqlite new file mode 100644 index 0000000..76178ff Binary files /dev/null and b/examples/.vs/slnx.sqlite differ diff --git a/examples/.vs/slnx.sqlite-journal b/examples/.vs/slnx.sqlite-journal new file mode 100644 index 0000000..8bc488f Binary files /dev/null and b/examples/.vs/slnx.sqlite-journal differ diff --git a/library.json b/library.json index 93d0eb6..395723b 100644 --- a/library.json +++ b/library.json @@ -15,10 +15,7 @@ "type": "git", "url": "https://github.com/RobTillaart/AnalogKeypad" }, - "version":"0.1.3", + "version":"0.1.4", "frameworks": "arduino", - "platforms": "*", - "export": { - "include": "AnalogKeypad" - } + "platforms": "*" } diff --git a/library.properties b/library.properties index ac62f0a..cab6acf 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AnalogKeypad -version=0.1.3 +version=0.1.4 author=Rob Tillaart maintainer=Rob Tillaart sentence=Arduino Library for (Robotdyn) 4x4 and 4x3 AnalogKeypad