ποΈ π₯ Push
Inserts a new element in the internal array and returns a pointer.
ποΈ π€ Get
Returns the current moving average value.
ποΈ π€ Get By Brute
Returns the average of the N last added data points requested.
ποΈ β‘οΈ Front
Returns the first element of the array (the most recent element added).
ποΈ β¬ οΈ Back
Returns the last element of the array (the oldest element added).
ποΈ π Operator[]
Returns the requested element at the relative position of the array (the first index is aways the most recent element added).
ποΈ π AtIndex
Returns the requested element at the absolute position of the array.
ποΈ π Size of Array
Returns the size of the array.
ποΈ π Size of Memory
Returns the memory usage of the array.
ποΈ π Point Count
Returns the number of data points pushed in the array contributing to the average calculation.