aboutsummaryrefslogtreecommitdiff
path: root/behaviors/AllPixels.py
diff options
context:
space:
mode:
Diffstat (limited to 'behaviors/AllPixels.py')
-rw-r--r--behaviors/AllPixels.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/behaviors/AllPixels.py b/behaviors/AllPixels.py
index e155e55..7f66ad6 100644
--- a/behaviors/AllPixels.py
+++ b/behaviors/AllPixels.py
@@ -1,6 +1,9 @@
from operationscore.Behavior import *
class AllPixels(Behavior):
- def processResponse(self, sensorInputs, recursiveInputs):
- for sensory in sensorInputs:#TODO: consider replicating the dict
- sensory['Location'] = 'True'
- return (sensorInputs, recursiveInputs)
+ """Turns on all Pixels in the installation. Must use SimpleMapper, or other Mapper supporting
+ conditional pixel locations."""
+
+ def processResponse(self, sensorInputs, recursiveInputs):
+ for sensory in sensorInputs:#TODO: consider replicating the dict
+ sensory['Location'] = 'True'
+ return (sensorInputs, recursiveInputs)