Files at this revision

API Documentation at this revision

Comitter:
inst
Date:
Fri Aug 21 04:52:35 2015 +0000
Child:
1:215e05be641b
Commit message:
y evol

Changed in this revision

Shooter.cpp Show annotated file Show diff for this revision Revisions of this file
Shooter.h Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Shooter.cpp	Fri Aug 21 04:52:35 2015 +0000
@@ -0,0 +1,18 @@
+#include "Shooter.h"
+#include "I2CDevice.h"
+
+Shooter::Shooter( char address ) : I2CDevice( address ){
+    
+}
+
+void Shooter::write(){
+    
+}
+
+void Shooter::stop(){
+    
+}
+
+void Shooter::launch(){
+    
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Shooter.h	Fri Aug 21 04:52:35 2015 +0000
@@ -0,0 +1,19 @@
+#ifndef INCLUDED_SHOOTER_H
+#define INCLUDED_SHOOTER_H
+
+#include "I2CDevice.h"
+
+class Shooter : public I2CDevice{
+public:
+    Shooter( char address );
+    void launch();
+    void stop();
+    
+protected:
+    virtual void write();
+    virtual void read(){}
+
+private:
+};
+
+#endif