aboutsummaryrefslogtreecommitdiff
path: root/pixelcore
diff options
context:
space:
mode:
Diffstat (limited to 'pixelcore')
-rw-r--r--pixelcore/Screen.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/pixelcore/Screen.py b/pixelcore/Screen.py
index 198bd3f..3e8ad5e 100644
--- a/pixelcore/Screen.py
+++ b/pixelcore/Screen.py
@@ -37,9 +37,7 @@ class Screen:
self.xSortedPixels.sort()
self.xPixelLocs = [p[0] for p in self.xSortedPixels]
- def render(self, surface):
- [lS.render(surface) for lS in self.pixelStrips]
-
+ #For debug only
def allOn(self):
[lS.allOn(-1) for lS in self.pixelStrips]
@@ -89,8 +87,7 @@ class Screen:
#if type(mapper) != type(PixelMapper):
# raise Exception('No default mapper specified.')
pixelWeightList = mapper.mapEvent(responseInfo['Location'], self)
- main_log.debug(str(len(pixelWeightList)))
- main_log.debug(pixelWeightList)
+
PixelEvent.addPixelEventIfMissing(responseInfo)
currentTime = timeops.time()
for (pixel, weight) in pixelWeightList: