Component Test's Software to work with "Universal Controller Box" - Software is an interpreter or "compiler" for programs to be done with a .txt file and read off of the SD Card

Dependencies:   BridgeDriver FrontPanelButtons MCP23017 SDFileSystem TextLCD mbed

Revision:
11:bc9cd2869f95
Child:
15:c944ee3c8a5b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Devices/CAN_Device.hpp	Wed Oct 01 18:11:38 2014 +0000
@@ -0,0 +1,21 @@
+#ifndef CANDEVICE_HPP
+#define CANDEVICE_HPP
+
+#include "Initialization.hpp"
+
+class CAN_Device: public Device{
+    
+    private:
+        int selectedCAN;
+        int freq;
+        vector<CANMessage> messages;
+        
+    public:
+        CAN_Device(LineData);
+        int interpret(LineData&);
+        int off();
+        int getSelectedCAN();
+        int getFreq();
+};
+
+#endif  
\ No newline at end of file