Merge branch 'master' of /projects/lamatrix

This commit is contained in:
2022-10-24 17:37:41 +02:00
4 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@
"columns": 32, "columns": 32,
"stride": 8, "stride": 8,
"fps": 10, "fps": 10,
"rotation" : 0 "rotation" : 180
}, },
"Boot": { "Boot": {
"intensity": 0.03 "intensity": 0.03

View File

@@ -12,7 +12,7 @@ class DemoScene:
self.display = display self.display = display
self.intensity = 32 self.intensity = 32
self.x_pos = 0 self.x_pos = 0
self.text = 'example' self.text = 'DoubleU LaMatrix'
if not config: if not config:
return return
if 'intensity' in config: if 'intensity' in config:

View File

@@ -44,7 +44,7 @@ else:
try: try:
# If the rpi_ws281x Python module is available, then use that... # If the rpi_ws281x Python module is available, then use that...
from raspberrypihal import RaspberryPiHAL as HAL from raspberrypihal import RaspberryPiHAL as HAL
except exception as e: except Exception as e:
# ...else assume that there's an MCU (driving the display) connected # ...else assume that there's an MCU (driving the display) connected
# to a serial port # to a serial port
print('HAL: failed: {}'.format(e.args[0])) print('HAL: failed: {}'.format(e.args[0]))

View File

@@ -1,4 +1,4 @@
q# HAL for Raspberry Pi with https://github.com/rpi-ws281x/rpi-ws281x-python # HAL for Raspberry Pi with https://github.com/rpi-ws281x/rpi-ws281x-python
# See https://github.com/jgarff/rpi_ws281x for more details on this library. # See https://github.com/jgarff/rpi_ws281x for more details on this library.
# #
# The below code assumes the LED strip is connected to GPIO 18 (PCM CLK) # The below code assumes the LED strip is connected to GPIO 18 (PCM CLK)
@@ -37,7 +37,7 @@ class RaspberryPiHAL:
self.right_button.when_pressed = self.button_irq_press self.right_button.when_pressed = self.button_irq_press
self.left_button.when_released = self.button_irq self.left_button.when_released = self.button_irq
self.right_button.when_released = self.button_irq self.right_button.when_released = self.button_irq
self.suspend_host_pin.when_held = self.button_irw_held #self.suspend_host_pin.when_held = self.button_irq_held
self.left_down_t = 0 self.left_down_t = 0
self.right_down_t = 0 self.right_down_t = 0
self.button_state = 0 self.button_state = 0