NerfUS / NerfUSXbee

Dependents:   NerfUS-Coord NerfUSTarget

Fork of APP3_xbee by Team APP

Revision:
23:2b67589150d9
Parent:
21:441645a394c2
Child:
27:8f2b613c7bb3
diff -r 1f0ed206313b -r 2b67589150d9 include/XbeeTransmitterInterface.hpp
--- a/include/XbeeTransmitterInterface.hpp	Thu Mar 30 20:35:51 2017 +0000
+++ b/include/XbeeTransmitterInterface.hpp	Wed Apr 05 20:27:53 2017 +0000
@@ -2,11 +2,12 @@
 #define XBEE_TRANSMITTER_INTERFACE_HPP
 
 #include <vector>
+#include "stdint.h"
 
 class XbeeTransmitterInterface
 {
     public:
-        virtual void transmit(const std::vector<uint8_t>& bytes) = 0;
+        virtual void transmit(const std::vector<uint8_t>& bytes, int address[8]) = 0;
 };
 
 #endif
\ No newline at end of file