running on pi 3 on two matrices, setup added
This commit is contained in:
parent
2cc0797df9
commit
4c01e0ee2c
Binary file not shown.
@ -44,7 +44,7 @@ class StockTicker():
|
||||
options = RGBMatrixOptions()
|
||||
options.rows = 32
|
||||
options.cols = 64
|
||||
options.chain_length = 1
|
||||
options.chain_length = 2
|
||||
options.parallel = 1
|
||||
options.hardware_mapping = 'adafruit-hat' # If you have an Adafruit HAT: 'adafruit-hat'
|
||||
options.gpio_slowdown = 3
|
||||
@ -129,11 +129,11 @@ class StockTicker():
|
||||
break
|
||||
|
||||
elif msg == 's':
|
||||
stock_ticker.delay = 0.04
|
||||
stock_ticker.delay = 0.03
|
||||
elif msg == 'm':
|
||||
stock_ticker.delay = 0.02
|
||||
elif msg == 'f':
|
||||
stock_ticker.delay = 0.01
|
||||
elif msg == 'f':
|
||||
stock_ticker.delay = 0.005
|
||||
elif msg in ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']:
|
||||
self.brightness = min(1.0, float(msg)/10 + 0.1)
|
||||
|
||||
@ -350,11 +350,11 @@ if __name__ == '__main__':
|
||||
|
||||
|
||||
elif msg == 's':
|
||||
stock_ticker.delay = 0.04
|
||||
stock_ticker.delay = 0.03
|
||||
elif msg == 'm':
|
||||
stock_ticker.delay = 0.02
|
||||
elif msg == 'f':
|
||||
stock_ticker.delay = 0.01
|
||||
elif msg == 'f':
|
||||
stock_ticker.delay = 0.005
|
||||
elif msg in ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']:
|
||||
stock_ticker.brightness = min(1.0, float(msg)/10 + 0.1)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user