forked from donaloconnor/automon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
o2voltage.h
36 lines (32 loc) · 1.85 KB
/
o2voltage.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef O2VOLTAGESENSOR_H
#define O2VOLTAGESENSOR_H
/*
==================================================================================================
| o2voltage.h |
| Part of the Automon application. |
| |
| Final Year Project - "An Embedded Automotive Monitoring Device" |
| |
| By Donal O' Connor for completion of B.Sc (Hons) Software Development and Computer Networking |
| Email: [email protected] |
| Website/Blog: http://automon.killarneyonline.eu |
| |
| Cork Institute of Technology, Cork, Ireland - http://www.cit.ie/ |
| |
| Copyright © 2009 Donal O'Connor <[email protected]> |
==================================================================================================
This class is a derivitive of the Sensor class. It is used in the Serial I/O thread for reading this sensor
*/
#include "sensor.h"
namespace AutomonKernel
{
class O2Voltage : public Sensor
{
public:
O2Voltage(QString command, QString englishMeaning);
O2Voltage();
double convertResult();
~O2Voltage() { }
};
}
#endif // O2VOLTAGESENSOR_H