Skip to content

Commit bb9633d

Browse files
Merge pull request #13 from tcirstea/master
Allow reading status register
2 parents 347a7d5 + 480d752 commit bb9633d

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SparkFun APDS9960 RGB and Gesture Sensor
2-
version=1.4.2
2+
version=1.4.3
33
author=SparkFun Electronics <[email protected]>
44
maintainer=SparkFun Electronics <sparkfun.com>
55
sentence=Library for the Avago APDS-9960 sensor

src/SparkFun_APDS9960.cpp

+17
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,23 @@ bool SparkFun_APDS9960::init()
198198
* Public methods for controlling the APDS-9960
199199
******************************************************************************/
200200

201+
/**
202+
* @brief Reads and returns the contents of the STATUS register
203+
*
204+
* @return Contents of the STATUS register. 0xFF if error.
205+
*/
206+
uint8_t SparkFun_APDS9960::getStatusRegister()
207+
{
208+
uint8_t status_value;
209+
210+
/* Read current ENABLE register */
211+
if(!wireReadDataByte(APDS9960_STATUS, status_value) ) {
212+
return ERROR;
213+
}
214+
215+
return status_value;
216+
}
217+
201218
/**
202219
* @brief Reads and returns the contents of the ENABLE register
203220
*

src/SparkFun_APDS9960.h

+9
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,14 @@
9898
#define APDS9960_GEN 0b01000000
9999
#define APDS9960_GVALID 0b00000001
100100

101+
/* Status bit fields */
102+
#define APDS9960_AVALID 0b0000001
103+
#define APDS9960_PVALID 0b0000010
104+
#define APDS9960_GINT 0b0000100
105+
#define APDS9960_AINT 0b0010000
106+
#define APDS9960_PGSAT 0b0100000
107+
#define APDS9960_CPSAT 0b1000000
108+
101109
/* On/Off definitions */
102110
#define OFF 0
103111
#define ON 1
@@ -221,6 +229,7 @@ class SparkFun_APDS9960 {
221229
SparkFun_APDS9960();
222230
~SparkFun_APDS9960();
223231
bool init();
232+
uint8_t getStatusRegister();
224233
uint8_t getMode();
225234
bool setMode(uint8_t mode, uint8_t enable);
226235

0 commit comments

Comments
 (0)