]> Repositories - Adafruit_Blinka-hackapet.git/blobdiff - src/adafruit_blinka/microcontroller/bcm283x/neopixel.py
neopixel_write: add support for PWM1 pins on Raspberry Pis
[Adafruit_Blinka-hackapet.git] / src / adafruit_blinka / microcontroller / bcm283x / neopixel.py
index 1753419c136608fcc3f380fc5968d4c8ce02204c..069c0c5481528e193443fa7290800998d68fbe94 100644 (file)
@@ -1,12 +1,21 @@
+# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries
+#
+# SPDX-License-Identifier: MIT
 """BCM283x NeoPixel Driver Class"""
 import time
 import atexit
 import _rpi_ws281x as ws
 
+try:
+    # Used only for typing
+    from typing import Optional
+    from digitalio import DigitalInOut
+except ImportError:
+    pass
+
 # LED configuration.
 # pylint: disable=redefined-outer-name,too-many-branches,too-many-statements
 # pylint: disable=global-statement,protected-access
-LED_CHANNEL = 0
 LED_FREQ_HZ = 800000  # Frequency of the LED signal.  We only support 800KHz
 LED_DMA_NUM = 10  # DMA channel to use, can be 0-14.
 LED_BRIGHTNESS = 255  # We manage the brightness in the neopixel library
@@ -16,15 +25,15 @@ LED_STRIP = None  # We manage the color order within the neopixel library
 # a 'static' object that we will use to manage our PWM DMA channel
 # we only support one LED strip per raspi
 _led_strip = None
-_buf_len = None
+_buf: Optional[bytearray] = None
 
 
-def neopixel_write(gpio, buf):
+def neopixel_write(gpio: DigitalInOut, buf: bytearray) -> None:
     """NeoPixel Writing Function"""
     global _led_strip  # we'll have one strip we init if its not at first
-    global _buf_len # we save the length of the buf, and if it changes we will cleanup and re-initalize.
+    global _buf  # we save a reference to the buf, and if it changes we will cleanup and re-init.
 
-    if _led_strip is None or _buf_len != len(buf):
+    if _led_strip is None or buf is not _buf:
         # This is safe to call since it doesn't do anything if _led_strip is None
         neopixel_cleanup()
 
@@ -33,7 +42,7 @@ def neopixel_write(gpio, buf):
         # need to be careful that you delete its memory by calling
         # delete_ws2811_t when it's not needed.
         _led_strip = ws.new_ws2811_t()
-        _buf_len = len(buf)
+        _buf = buf
 
         # Initialize all channels to off
         for channum in range(2):
@@ -43,7 +52,7 @@ def neopixel_write(gpio, buf):
             ws.ws2811_channel_t_invert_set(channel, 0)
             ws.ws2811_channel_t_brightness_set(channel, 0)
 
-        channel = ws.ws2811_channel_get(_led_strip, LED_CHANNEL)
+        channel = ws.ws2811_channel_get(_led_strip, _neopixel_detect_channel(gpio))
 
         # Initialize the channel in use
         count = 0
@@ -81,7 +90,7 @@ def neopixel_write(gpio, buf):
             )
         atexit.register(neopixel_cleanup)
 
-    channel = ws.ws2811_channel_get(_led_strip, LED_CHANNEL)
+    channel = ws.ws2811_channel_get(_led_strip, _neopixel_detect_channel(gpio))
     if gpio._pin.id != ws.ws2811_channel_t_gpionum_get(channel):
         raise RuntimeError("Raspberry Pi neopixel support is for one strip only!")
 
@@ -121,3 +130,10 @@ def neopixel_cleanup():
         # strictly necessary at the end of the program execution here, but is good practice.
         ws.delete_ws2811_t(_led_strip)
         _led_strip = None
+
+
+def _neopixel_detect_channel(gpio: DigitalInOut) -> int:
+    """Detect the channel for a given GPIO, added for support PWM1 pins"""
+    if gpio._pin.id in (13, 19, 41, 45):
+        return 1
+    return 0