aboutsummaryrefslogtreecommitdiff
path: root/pixelcore
diff options
context:
space:
mode:
authorGravatar Dan <dan@rcoh-ubuntu-small.(none)>2011-01-25 00:33:46 -0500
committerGravatar Dan <dan@rcoh-ubuntu-small.(none)>2011-01-25 00:33:46 -0500
commiteaaef5460a95d2de1dddc847f6c3bbcb2aef8047 (patch)
tree004f6e326959cb5d6bfcf0793686dab74260a3db /pixelcore
parent2019fb2895237aa9d86450daaf6d90831189fc13 (diff)
Adding an OSC input.
Diffstat (limited to 'pixelcore')
-rw-r--r--pixelcore/PixelStrip.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/pixelcore/PixelStrip.py b/pixelcore/PixelStrip.py
index 662b8fe..647991d 100644
--- a/pixelcore/PixelStrip.py
+++ b/pixelcore/PixelStrip.py
@@ -14,9 +14,6 @@ class PixelStrip:
self.pixels = [Pixel(l) for l in pixelLocations]
def __iter__(self):
return self.pixels.__iter__()
- def render(self, surface):
- [l.render(surface) for l in self.pixels]
- #step
def allOn(self, time):
[l.turnOnFor(time) for l in self.pixels] #TODO: add test-on method to
#pixels