StarBoard Orange - Example application No.1 GoogleChartLogger with StarBoard Orange

Dependencies:   EthernetNetIf mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Sensor.h Source File

Sensor.h

00001 /**
00002  * Sensor interface driver. (Version 0.0.1)
00003  *
00004  * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems)
00005  * http://shinta.main.jp/
00006  */
00007 
00008 #ifndef _SENSOR_H_
00009 #define _SENSOR_H_
00010 
00011 class Sensor {
00012 public:
00013     Sensor();
00014     virtual ~Sensor();
00015     virtual double read() = 0;
00016 };
00017 
00018 #endif