File tree 3 files changed +27
-1
lines changed
3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1
1
name =SparkFun APDS9960 RGB and Gesture Sensor
2
- version =1.4.2
2
+ version =1.4.3
3
3
author =SparkFun Electronics <
[email protected] >
4
4
maintainer =SparkFun Electronics <sparkfun.com>
5
5
sentence =Library for the Avago APDS-9960 sensor
Original file line number Diff line number Diff line change @@ -198,6 +198,23 @@ bool SparkFun_APDS9960::init()
198
198
* Public methods for controlling the APDS-9960
199
199
******************************************************************************/
200
200
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
+
201
218
/* *
202
219
* @brief Reads and returns the contents of the ENABLE register
203
220
*
Original file line number Diff line number Diff line change 98
98
#define APDS9960_GEN 0b01000000
99
99
#define APDS9960_GVALID 0b00000001
100
100
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
+
101
109
/* On/Off definitions */
102
110
#define OFF 0
103
111
#define ON 1
@@ -221,6 +229,7 @@ class SparkFun_APDS9960 {
221
229
SparkFun_APDS9960 ();
222
230
~SparkFun_APDS9960 ();
223
231
bool init ();
232
+ uint8_t getStatusRegister ();
224
233
uint8_t getMode ();
225
234
bool setMode (uint8_t mode, uint8_t enable);
226
235
You can’t perform that action at this time.
0 commit comments