From c0b111b587067445e331755b14ed245f5a508b5e Mon Sep 17 00:00:00 2001 From: Luis Andrade Date: Wed, 7 Feb 2024 18:51:42 -0500 Subject: [PATCH 1/2] led brightness parameter --- examples/2mic_service.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/2mic_service.py b/examples/2mic_service.py index ac58c4a..929e4d8 100644 --- a/examples/2mic_service.py +++ b/examples/2mic_service.py @@ -41,8 +41,8 @@ async def main() -> None: """Main entry point.""" parser = argparse.ArgumentParser() parser.add_argument("--uri", required=True, help="unix:// or tcp://") - # parser.add_argument("--debug", action="store_true", help="Log DEBUG messages") + parser.add_argument("--led-brightness", type=int, default=31, help="LED brightness (integer from 1 to 31)") args = parser.parse_args() logging.basicConfig(level=logging.DEBUG if args.debug else logging.INFO) @@ -54,7 +54,7 @@ async def main() -> None: led_power = gpiozero.LED(LEDS_GPIO, active_high=False) led_power.on() - leds = APA102(num_led=NUM_LEDS) + leds = APA102(num_led=NUM_LEDS, global_brightness=args.led_brightness) # Start server server = AsyncServer.from_uri(args.uri) @@ -148,7 +148,7 @@ class APA102: def __init__( self, num_led, - global_brightness=MAX_BRIGHTNESS, + global_brightness, order="rgb", bus=0, device=1, @@ -162,6 +162,7 @@ def __init__( self.global_brightness = self.MAX_BRIGHTNESS else: self.global_brightness = global_brightness + _LOGGER.debug("LED brightness: %d", self.global_brightness) self.leds = [self.LED_START, 0, 0, 0] * self.num_led # Pixel buffer self.spi = spidev.SpiDev() # Init the SPI device From 90b5f9ab4f921f3b1f1e8bdbade11bbc41a232db Mon Sep 17 00:00:00 2001 From: Luis Andrade Date: Wed, 7 Feb 2024 23:26:32 -0500 Subject: [PATCH 2/2] doc for led-brightness --- docs/tutorial_2mic.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/tutorial_2mic.md b/docs/tutorial_2mic.md index dd2b805..7231044 100644 --- a/docs/tutorial_2mic.md +++ b/docs/tutorial_2mic.md @@ -385,4 +385,7 @@ Try a voice command and see if the LEDs change. Use `journalctl` to check the lo journalctl -u 2mic_leds.service -f ``` +If you encounter any issues, you can add the `--debug` argument to the command line to increase the log level. +To control the brightness of the LEDS, use the `--led-brightness ` argument, which accepts integer numbers from 1 to 31. + Make sure to run `sudo systemctl daemon-reload` every time you make changes to the service.