-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnibbleArray.h
51 lines (35 loc) · 952 Bytes
/
nibbleArray.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#pragma once
//
// FILE: nibbleArray.h
// AUTHOR: Rob Tillaart
// VERSION: 0.2.6
// PURPOSE: Arduino library for a compact array of nibbles (4 bits)
// URL: https://github.com/RobTillaart/nibbleArray
#include "Arduino.h"
#define NIBBLEARRAY_LIB_VERSION (F("0.2.6"))
#ifndef NIBBLEARRAY_MAXSIZE
// UNO BASED MAXSIZE?
#define NIBBLEARRAY_MAXSIZE 510
#endif
#define NIBBLEARRAY_OK 0x00
#define NIBBLEARRAY_ERROR_INDEX 0xFF
class nibbleArray
{
public:
nibbleArray(const uint16_t size);
~nibbleArray();
// return 0..F if ok
// returns 0xFF for index error.
uint8_t get(const uint16_t index);
// returns 0xFF for index error.
uint8_t set(const uint16_t index, uint8_t value);
uint16_t size();
uint16_t memory();
void clear();
void setAll(uint8_t value);
private:
uint8_t * _arr;
uint16_t _size;
uint8_t _bytes = 0;
};
// -- END OF FILE --