Giter Club home page Giter Club logo

ringbuffer's Introduction

RingBuffer

RingBuffer for Arduino (replacement of std::queue, std::deque or std::vector). AVR boards (like Uno and Mega) can't use std::queue, std::deque or std::vector. This library is simple (and limited) replacement of such STLs.

Usage

Simple

#include <RingBuffer.h>
RingBuffer<uint8_t, 4> buffer;

void setup()
{
    buffer.push(1);
    buffer.push(2);
    buffer.push(3);
    buffer.push(4);

    for(size_t i = 0; i < buffer.size(); ++i)
        Serial.println(buffer[i]);

    buffer.pop();

    for(auto& b : buffer)
        Serial.println(b);

    buffer.clear();
}

Original Data Class

#include <RingBuffer.h>
struct Data { int number; String str; };
RingBuffer<Data, 3> buffer;

void setup()
{
    buffer.push(Data({1, "one"}));
    buffer.push(Data({2, "two"}));
    Data data = {3, "three"};
    buffer.push(data);

    for(size_t i = 0; i < buffer.size(); ++i)
    {
        Serial.print(buffer[i].number);
        Serial.print(", ");
        Serial.println(buffer[i].str);
    }

    buffer.pop();

    for(auto& b : buffer)
    {
        Serial.print(b.number);
        Serial.print(", ");
        Serial.println(b.str);
    }
}

APIs

size_t capacity() const
size_t size() const
bool empty() const

const T* data() const
T* data()

void push(const T& data)
void push(T&& data)
void push_back(const T& data)
void push_back(T&& data)

void pop()
void pop_back()

const T& front() const
T& front()
const T& back() const
T& back()
const T& operator[] (uint8_t index) const
T& operator[] (uint8_t index)

const T* begin() const
T* begin()
const T* end() const
T* end()

void clear()
T* erase(T* p)
void resize(size_t sz)
void assign(const T* const first, const T* const end)

License

MIT

ringbuffer's People

Contributors

hideakitai avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.