#!/usr/bin/env python from samplebase import SampleBase import time class GrayscaleBlock(SampleBase): def __init__(self, *args, **kwargs): super(GrayscaleBlock, self).__init__(*args, **kwargs) def Run(self): max_brightness = self.matrix.brightness count = 0 c = 255 while (True): if self.matrix.brightness < 1: self.matrix.brightness = max_brightness count += 1 else: self.matrix.brightness -= 1 if count % 4 == 0: self.matrix.Fill(c, 0, 0) elif count % 4 == 1: self.matrix.Fill(0, c, 0) elif count % 4 == 2: self.matrix.Fill(0, 0, c) elif count % 4 == 3: self.matrix.Fill(c, c, c) self.usleep(20 * 1000) # Main function if __name__ == "__main__": parser = GrayscaleBlock() if (not parser.process()): parser.print_help()