make runningMedian Configurable #110

This commit is contained in:
RobTillaart 2018-08-24 08:57:44 +02:00
parent 18eab1d607
commit 768fd8c92e
3 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
// //
// FILE: RunningMedian.cpp // FILE: RunningMedian.cpp
// AUTHOR: Rob.Tillaart at gmail.com // AUTHOR: Rob.Tillaart at gmail.com
// VERSION: 0.1.14 // VERSION: 0.1.15
// PURPOSE: RunningMedian library for Arduino // PURPOSE: RunningMedian library for Arduino
// //
// HISTORY: // HISTORY:
@ -20,6 +20,7 @@
// 0.1.12 - 2015-07-12 refactor constructor + const // 0.1.12 - 2015-07-12 refactor constructor + const
// 0.1.13 - 2015-10-30 fix getElement(n) - kudos to Gdunge // 0.1.13 - 2015-10-30 fix getElement(n) - kudos to Gdunge
// 0.1.14 - 2017-07-26 revert double to float - issue #33 // 0.1.14 - 2017-07-26 revert double to float - issue #33
// 0.1.15 - 2018-08-24 make runningMedian Configurable #110
// //
// Released to the public domain // Released to the public domain
// //

View File

@ -15,7 +15,7 @@
"type": "git", "type": "git",
"url": "https://github.com/RobTillaart/Arduino.git" "url": "https://github.com/RobTillaart/Arduino.git"
}, },
"version":"0.1.14", "version":"0.1.15",
"frameworks": "arduino", "frameworks": "arduino",
"platforms": "*", "platforms": "*",
"export": { "export": {

View File

@ -1,5 +1,5 @@
name=RunningMedian name=RunningMedian
version=0.1.14 version=0.1.15
author=Rob Tillaart <rob.tillaart@gmail.com> author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com> maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=The library stores the last N individual values in a buffer to select the median. sentence=The library stores the last N individual values in a buffer to select the median.