kobe leysen / DAQ

Dependents:   TEST

Revision:
0:88f8e80dc5fd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Amplifier.h	Wed Mar 19 10:29:32 2014 +0000
@@ -0,0 +1,23 @@
+#ifndef AMPLIFIER_H
+#define AMPLIFIER_H
+
+class Amplifier
+{
+private:
+    bool enable;
+    int amplification;
+    
+public:
+    Amplifier(void);
+    ~Amplifier(void);
+
+    //GETTERS
+    bool Enabled(void);
+    int getAmplification(void);
+
+    //SETTERS
+    void setAmplification(int newAmplification);
+    void Enable(void);
+    void Disable(void);
+};
+#endif
\ No newline at end of file