NerfUS mobile node that manages a target for the Nerf gun firing range

Dependencies:   LedController mbed-rtos mbed NerfUSXbee Servomotor TargetManager

Fork of NerfUS by NerfUS

Revision:
16:fba7c8e39388
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TESTS/MockPwmOut.hpp	Sun Feb 26 10:20:18 2017 -0500
@@ -0,0 +1,12 @@
+#ifndef MOCK_PWM_OUT_HPP
+#define MOCK_PWM_OUT_HPP
+
+#include "PwmOutInterface.hpp"
+
+class MockPwmOut : public PwmOutInterface
+{
+    public:
+        MOCK_METHOD1(pulsewidth_ms, void(int ms));
+};
+
+#endif