FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Arduino/libraries/NibbleArray/nibbleArray.h at master · gunstr/Arduino · GitHub
gunstr
/
Arduino
Public
forked from
RobTillaart/Arduino
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Arduino
/
libraries
/
NibbleArray
/
nibbleArray.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (33 loc) · 587 Bytes
Breadcrumbs
Arduino
/
libraries
/
NibbleArray
/
nibbleArray.h
Copy path
File metadata and controls
39 lines (33 loc) · 587 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
//
//
FILE: nibbleArray.h
//
AUTHOR: Rob Tillaart
//
VERSION: 0.1.00
//
PURPOSE: compact storage for array of nibbles
//
URL:
//
//
HISTORY:
//
see nibbleArray.cpp
//
#
ifndef
nibbleArray_h
#
define
nibbleArray_h
#
if
ARDUINO < 100
#
include
<
WProgram.h
>
#
else
#
include
<
Arduino.h
>
#
endif
#
define
NIBBLEARRAY_LIB_VERSION
"
0.1.00
"
class
nibbleArray
{
public:
nibbleArray
(
uint16_t
size);
~nibbleArray
();
uint8_t
get
(
const
uint16_t
idx);
uint8_t
set
(
const
uint16_t
idx,
uint8_t
value);
private:
uint16_t
*arr;
uint16_t
_size;
};
#
endif
//
//
END OF FILE
//
Back
|
FazBrowse Home
|
New Git URL