lib for realtimeMM funcs

Fork of realtimeMMLib by Graham Nicholson

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers MBedStation.h Source File

MBedStation.h

00001 
00002 #include "sensor_base.h"
00003 #include <iostream>
00004 #include <string>
00005 
00006 using namespace std;
00007 
00008 class MBedStation
00009 {
00010     public:
00011         MBedStation();
00012         string name;
00013         //sensor_base sensors[];
00014         int test[5];
00015         void setup();
00016         sensor_base sensors[8];
00017         sensor_onoff sensor_0;
00018         sensor_vin sensor_1;
00019         sensor_vin sensor_2;
00020         //sensor_pulse sensor_3;
00021         //sensor_max6675 sensor_4;
00022         //sensor_max6675 sensor_5;
00023 };