From 0a2877a6b89328e1c16bd51885e39bfba169a272 Mon Sep 17 00:00:00 2001 From: Patrick Goebel Date: Mon, 12 Sep 2016 06:10:16 -0700 Subject: [PATCH] Removed getDiagnostics from controllers.py --- .../src/ros_arduino_python/controllers.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/ros_arduino_python/src/ros_arduino_python/controllers.py b/ros_arduino_python/src/ros_arduino_python/controllers.py index 96f191a..6130250 100644 --- a/ros_arduino_python/src/ros_arduino_python/controllers.py +++ b/ros_arduino_python/src/ros_arduino_python/controllers.py @@ -61,13 +61,4 @@ class Controller: ## @brief Is the controller actively sending commands to joints? def active(self): return False - - ## @brief Get a diagnostics message for this joint. - ## - ## @return Diagnostics message. - def getDiagnostics(self): - msg = DiagnosticStatus() - msg.name = self.name - msg.level = DiagnosticStatus.OK - msg.message = "OK" - return msg +