Final program for the test of the RGB sensor

Dependencies:   ISL29125 SDFileSystem mbed

Committer:
Jeriah
Date:
Thu Mar 17 18:41:44 2016 +0000
Revision:
4:08069730374b
Parent:
2:04c2f253ec87
Error fixed, I didn't have a reading for blue

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jeriah 0:547856de255b 1 #ifndef SAVE
Jeriah 0:547856de255b 2 #define SAVE
Jeriah 0:547856de255b 3
Jeriah 0:547856de255b 4 void createDataFile();
Jeriah 0:547856de255b 5 void createDataFile_testRGB();
Jeriah 0:547856de255b 6 void writeData(uint16_t time, uint16_t temp, uint16_t uv, uint16_t red, uint16_t green, uint16_t blue);
Jeriah 0:547856de255b 7 void writeData_testRGB(float time, uint16_t red, uint16_t green, uint16_t blue);
Jeriah 0:547856de255b 8 void closeDataFile();
Jeriah 2:04c2f253ec87 9 bool mountSDCard();
Jeriah 0:547856de255b 10
Jeriah 0:547856de255b 11 #endif