Giter Site home page Giter Site logo

nibblearray's Introduction

Arduino CI License: MIT GitHub release

nibbleArray

Arduino library for a compact array of nibbles (4 bit units)

Description

A nibble is a 4 bit element, which can hold a value 0..15 (0..F in HEX). It can be seen as an uint4_t type.

The nibbleArray is an array that stores 2 nibbles in a byte therefor it is twice as small as a normal array.

The current implementation can hold 510 elements. This is due a limitation of the UNO which can alloc max 255 bytes in one malloc() call.

This NIBBLEARRAY_MAXSIZE can be defined compiletime "-D NIBBLEARRAY_MAXSIZE" or one can adjust it in the library if other platforms can allocate more memory.

Interface

The interface of the nibbleArray is straightforward:

  • nibbleArray(uint16_t size) constructor
  • set(index, value) set a value in the nibbleArray, index must be in range otherwise 0xFF will be returned.
  • get(index) get value from index, index must be in range otherwise 0xFF will be returned
  • size() returns the size of the array.
  • clear() set all elements to 0;
  • SetAll(value) set all elements to value (0..15)

Operation

See examples

Todo

  • todo's to issues
  • implement NIBBLEARRAY_ERROR_VALUE for set and setAll ??
  • allow larger allocations for non AVR, how?
  • setAll( f() ) - fill the array by calling a function n times?
  • align interface with boolArray and bitArray.

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.