program for final combination of working pieces

Dependencies:   SDFileSystem TMP102 mbed ISL29125

Fork of TEMP_Test by Thomas Dale

RGBSensor.cpp

Committer:
tdale19
Date:
2016-04-18
Revision:
13:906a647d7bd1
Parent:
9:9690da23e8d7

File content as of revision 13:906a647d7bd1:

#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);
}