aboutsummaryrefslogtreecommitdiff
path: root/behaviors/DebugBehavior.py
diff options
context:
space:
mode:
Diffstat (limited to 'behaviors/DebugBehavior.py')
-rw-r--r--behaviors/DebugBehavior.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/behaviors/DebugBehavior.py b/behaviors/DebugBehavior.py
new file mode 100644
index 0000000..4c8550a
--- /dev/null
+++ b/behaviors/DebugBehavior.py
@@ -0,0 +1,8 @@
+from operationscore.Behavior import *
+import Util
+import pdb
+class DebugBehavior(Behavior):
+ def processResponse(self, sensorInputs, recursiveInputs):
+ if sensorInputs != []:
+ print 'Sensor Inputs: ', sensorInputs
+ return []