changed because of naming conflict

Fork of LinearBlend by Bradley Perry

Revision:
2:8e81d72bf792
Child:
4:a25456624155
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LinearBlend.h	Fri Nov 14 22:38:29 2014 +0000
@@ -0,0 +1,32 @@
+#ifndef LINEARBLEND_H
+#define LINEARBLEND_H
+
+#include "mbed.h"
+
+// Define a BaseClass called LinearBlend
+class LinearBlend{
+    /***********************************************************
+    Constructor
+    ***********************************************************/
+
+
+    /***********************************************************
+    Functions
+    ***********************************************************/
+    public:
+    LinearBlend(); 
+    /*void init(float end, float start, int t_blend);
+    float* blend(float ref[]);*/
+    float* blend(float end, float s, int t_blend, float ref[]);
+
+    /***********************************************************
+    Initialize and Define Variables
+    ***********************************************************/
+    private:
+    float slope;
+    int t_blend;
+    float start;
+
+};
+
+#endif
\ No newline at end of file