Main Page | Modules | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Examples

LCDSystemSensor.cpp

00001 #include "LCDSystemSensor.h"
00002 
00003 #include <sys/types.h>
00004 #include <time.h>
00005 #include <unistd.h>
00006 #include <string>
00007 
00008 using namespace std;
00009 
00010 LCDSystemSensor::LCDSystemSensor(const string &command)
00011 {
00012   _command = command;
00013 }
00014 
00015 void LCDSystemSensor::waitForChange()
00016 {
00017   sleep(1);
00018 }
00019 
00020 string LCDSystemSensor::getCurrentValue()
00021 {
00022   return executeCommand(_command);
00023 }

Generated on Wed Aug 4 19:39:09 2004 for LCDApi by doxygen 1.3.6