Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

led brightness argument #101

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/tutorial_2mic.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
7 changes: 4 additions & 3 deletions examples/2mic_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add choices=range(1, 32) to restrict the range?

args = parser.parse_args()

logging.basicConfig(level=logging.DEBUG if args.debug else logging.INFO)
Expand All @@ -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)
Expand Down Expand Up @@ -148,7 +148,7 @@ class APA102:
def __init__(
self,
num_led,
global_brightness=MAX_BRIGHTNESS,
global_brightness,
order="rgb",
bus=0,
device=1,
Expand All @@ -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
Expand Down
Loading