Skip to content

Commit 768fd8c

Browse files
committed
make runningMedian Configurable RobTillaart#110
1 parent 18eab1d commit 768fd8c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

libraries/RunningMedian/RunningMedian.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: RunningMedian.cpp
33
// AUTHOR: Rob.Tillaart at gmail.com
4-
// VERSION: 0.1.14
4+
// VERSION: 0.1.15
55
// PURPOSE: RunningMedian library for Arduino
66
//
77
// HISTORY:
@@ -20,6 +20,7 @@
2020
// 0.1.12 - 2015-07-12 refactor constructor + const
2121
// 0.1.13 - 2015-10-30 fix getElement(n) - kudos to Gdunge
2222
// 0.1.14 - 2017-07-26 revert double to float - issue #33
23+
// 0.1.15 - 2018-08-24 make runningMedian Configurable #110
2324
//
2425
// Released to the public domain
2526
//

libraries/RunningMedian/library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"type": "git",
1616
"url": "https://github.com/RobTillaart/Arduino.git"
1717
},
18-
"version":"0.1.14",
18+
"version":"0.1.15",
1919
"frameworks": "arduino",
2020
"platforms": "*",
2121
"export": {

libraries/RunningMedian/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=RunningMedian
2-
version=0.1.14
2+
version=0.1.15
33
author=Rob Tillaart <rob.tillaart@gmail.com>
44
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
55
sentence=The library stores the last N individual values in a buffer to select the median.

0 commit comments

Comments
 (0)