Final program for the test of the RGB sensor
Dependencies: ISL29125 SDFileSystem mbed
RGBSensor.cpp
- Committer:
- Jeriah
- Date:
- 2016-03-12
- Revision:
- 1:e0fc716e2394
- Parent:
- 0:547856de255b
File content as of revision 1:e0fc716e2394:
#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); }