mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
52 lines
830 B
Arduino
52 lines
830 B
Arduino
|
//
|
||
|
// FILE: TOPMINext_count.ino
|
||
|
// AUTHOR: Rob Tillaart
|
||
|
// PURPOSE: TOPMIN demo
|
||
|
// URL: https://github.com/RobTillaart/TOPMIN
|
||
|
|
||
|
|
||
|
#include "TOPMIN.h"
|
||
|
|
||
|
|
||
|
TOPMINext tme(5);
|
||
|
uint32_t cnt = 0;
|
||
|
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
Serial.begin(115200);
|
||
|
Serial.println(__FILE__);
|
||
|
Serial.print("TOPMIN_LIB_VERSION: ");
|
||
|
Serial.println(TOPMIN_LIB_VERSION);
|
||
|
Serial.println();
|
||
|
|
||
|
tme.fill(10000, 0);
|
||
|
tme.reset();
|
||
|
}
|
||
|
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
int x = random(10000);
|
||
|
|
||
|
Serial.print(cnt++);
|
||
|
Serial.print("\t");
|
||
|
Serial.print(x);
|
||
|
Serial.print("\t");
|
||
|
for (int i = 0; i < tme.count(); i++)
|
||
|
{
|
||
|
Serial.print(tme.getValue(i));
|
||
|
Serial.print(":(");
|
||
|
Serial.print(tme.getTag(i));
|
||
|
Serial.print(")\t");
|
||
|
}
|
||
|
Serial.println();
|
||
|
|
||
|
tme.add(x, cnt); // tag the minima with the "sample counter".
|
||
|
|
||
|
delay(random(200));
|
||
|
}
|
||
|
|
||
|
|
||
|
// -- END OF FILE --
|