editable

Dependents:   LineCamLPC LineCamLPC

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TSL_1401.h Source File

TSL_1401.h

00001 #include <TSL_1401_config.h>
00002 
00003 class TSL_1401 
00004 {
00005     public:
00006     TSL_1401();
00007     ~TSL_1401();
00008     void scanFrame();
00009     void refreshLine();
00010     
00011     private:
00012     DigitalOut SI(SI_PIN);
00013     DigitalOut CLK (CLK_PIN);
00014     AnalogIn AO(p15);
00015     double rawData[128];
00016     int line[128]; 
00017     int status;   
00018 }