Final program for the test of the RGB sensor
Dependencies: ISL29125 SDFileSystem mbed
Diff: RGBSensor.cpp
- Revision:
- 0:547856de255b
- Child:
- 1:e0fc716e2394
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/RGBSensor.cpp Fri Mar 11 23:43:27 2016 +0000 @@ -0,0 +1,15 @@ +#include "RGBSensor.h" +#include "ISL29125.h" + +// The location of the sensor on the FRDM-K64F// + +ISL29125 RGB_sensor(I2C_SDA,I2C_SCL); + +void RGB_init() { + RGB_sensor.RGBmode(ISL29125_RGB); + RGB_sensor.Range(ISL29125_10KLX); + RGB_sensor.Resolution(ISL29125_16BIT); +} +void get_rgb(uint16_t rgb[]){ + RGB_sensor.read(ISL29125_RGB, rgb); +}