Searched full:strip (Results 1 – 25 of 190) sorted by relevance
12345678
/Zephyr-latest/samples/drivers/led/led_strip/ |
D | README.rst | 1 .. zephyr:code-sample:: led-strip 2 :name: LED strip 5 Control an LED strip. 10 This sample application demonstrates basic usage of the LED strip. 15 Zephyr supports various LED strip chips. For example, 17 - WS2812, such as the `NeoPixel(WS2812 compatible) LED Strip from AdaFruit`_. 18 - APA102, such as the `Dotstar(APA102 compatible) LED Strip from AdaFruit`_. 19 - LPD8806, such as the `LPD8806 LED Strip from AdaFruit`_. 23 - If the LED strip connects to the SPI bus, SPI communications usually use 5V 27 .. _NeoPixel(WS2812 compatible) LED Strip from AdaFruit: https://www.adafruit.com/product/3919 [all …]
|
D | sample.yaml | 2 description: Demonstration of the LED strip driver 3 name: LED strip sample 7 filter: dt_alias_exists("led-strip")
|
/Zephyr-latest/samples/drivers/led/led_strip/src/ |
D | main.c | 27 #error Unable to determine length of LED strip 42 static const struct device *const strip = DEVICE_DT_GET(STRIP_NODE); variable 49 if (device_is_ready(strip)) { in main() 50 LOG_INF("Found LED strip device %s", strip->name); in main() 52 LOG_ERR("LED strip device %s is not ready", strip->name); in main() 56 LOG_INF("Displaying pattern on strip"); in main() 62 rc = led_strip_update_rgb(strip, pixels, STRIP_NUM_PIXELS); in main() 64 LOG_ERR("couldn't update strip: %d", rc); in main()
|
/Zephyr-latest/include/zephyr/drivers/ |
D | led_strip.h | 20 * @brief LED Strip Interface 21 * @defgroup led_strip_interface LED Strip Interface 37 * Individual strip drivers may ignore lower-order bits if their 58 * @brief Callback API for updating an RGB LED strip 78 * @brief Callback API for getting length of an LED strip. 85 * @brief LED strip driver API 87 * This is the mandatory API any LED strip driver needs to expose. 96 * @brief Mandatory function to update an LED strip with the given RGB array. 98 * @param dev LED strip device. 128 * @brief Optional function to update an LED strip with the given channel array [all …]
|
/Zephyr-latest/drivers/led_strip/ |
D | Kconfig | 1 # Top-level configuration file for LED strip drivers. 8 bool "Light-Emitting Diode (LED) strip drivers" 10 Include LED strip drivers in the system configuration. 15 module-str = LED strip 19 int "LED strip initialization priority" 22 System initialization priority for LED strip drivers.
|
D | Kconfig.ws2812 | 11 bool "WS2812 LED strip SPI driver" 16 Enable driver for WS2812 (and compatibles) LED strip using SPI. 21 bool "WS2812 LED strip I2S driver" 26 Enable driver for WS2812 (and compatibles) LED strip using I2S. 32 bool "WS2812 LED strip GPIO driver" 40 Enable driver for WS2812 (and compatibles) LED strip directly 49 DT_CHOSEN_LED_STRIP := zephyr,led-strip 96 bool "WS2812 LED strip Raspberry Pi Pico PIO driver" 101 Enable driver for WS2812 (and compatibles) LED strip using
|
D | Kconfig.tlc5971 | 6 bool "TLC5971 (and compatible) LED strip driver" 11 Enable LED strip driver for daisy chains of TLC5971-ish devices
|
D | Kconfig.apa102 | 8 bool "APA102 SPI LED strip driver" 14 Enable the LED strip driver for a chain of APA102 RGB LEDs.
|
D | Kconfig.lpd880x | 5 bool "LPD880x SPI LED strip driver" 11 Enable LED strip driver for daisy chains of LPD880x
|
/Zephyr-latest/cmake/bintools/llvm/ |
D | target_bintools.cmake | 86 # - strip: Name of command for stripping symbols 87 # In this implementation `strip` is used 90 # strip_flag_all : --strip-all 91 # strip_flag_debug : --strip-debug 92 # strip_flag_dwo : --strip-dwo 93 # strip_flag_infile : empty, strip doesn't take arguments for input file 96 # This is using strip from bintools. 99 # Any flag the strip command requires for processing 103 set_property(TARGET bintools PROPERTY strip_flag_all --strip-all) 104 set_property(TARGET bintools PROPERTY strip_flag_debug --strip-debug) [all …]
|
/Zephyr-latest/drivers/display/ |
D | Kconfig.led_strip_matrix | 5 bool "LED strip matrix display driver" 10 Enable LED strip matrix display (LED strip arranged in
|
/Zephyr-latest/cmake/bintools/gnu/ |
D | target_bintools.cmake | 79 # - strip: Name of command for stripping symbols 80 # In this implementation `strip` is used 83 # strip_flag_all : --strip-all 84 # strip_flag_debug : --strip-debug 85 # strip_flag_dwo : --strip-dwo 86 # strip_flag_infile : empty, strip doesn't take arguments for input file 89 # This is using strip from bintools. 92 # Any flag the strip command requires for processing 96 set_property(TARGET bintools PROPERTY strip_flag_all --strip-all) 97 set_property(TARGET bintools PROPERTY strip_flag_debug --strip-debug) [all …]
|
/Zephyr-latest/include/zephyr/drivers/led_strip/ |
D | tlc5971.h | 16 * @brief Set the global brightness control levels for the tlc5971 strip. 18 * change will take effect on next update of the led strip 20 * @param dev LED strip device
|
/Zephyr-latest/dts/bindings/led_strip/ |
D | apa,apa102.yaml | 1 description: APA102 SPI LED strip 5 include: [spi-device.yaml, led-strip.yaml]
|
D | greeled,lpd8803.yaml | 4 description: GreeLed LPD8803 SPI LED strip 8 include: [spi-device.yaml, led-strip.yaml]
|
D | greeled,lpd8806.yaml | 4 description: GreeLed LPD8806 SPI LED strip 8 include: [spi-device.yaml, led-strip.yaml]
|
D | worldsemi,ws2812-gpio.yaml | 5 Worldsemi WS2812 LED strip, GPIO binding 7 Driver bindings for bit-banging a WS2812 or compatible LED strip. 16 below. The exact timings of the LED strip data line might vary on the 55 zephyr,led-strip = &rgb_led;
|
D | worldsemi,ws2812-i2s.yaml | 5 Worldsemi WS2812 LED strip, I2S binding 8 strip with an I2S master.
|
D | worldsemi,ws2812-spi.yaml | 5 Worldsemi WS2812 LED strip, SPI binding 8 strip with a SPI master.
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | led.rst | 10 strip form. 28 LED Strip
|
/Zephyr-latest/cmake/bintools/ |
D | bintools_template.cmake | 13 # - strip : Tool for symbol stripping 68 # elfconvert_flag_strip_debug : Flag that is used to strip debug symbols when converting 104 # - strip: Name of command for stripping symbols 105 # For GNU binary utilities this is strip 106 # strip_flag : Flags that must always be applied when calling strip command 107 # strip_flag_final : Flags that must always be applied last at the strip command 160 # strip command for stripping symbols 161 set_property(TARGET bintools PROPERTY strip_command ${CMAKE_COMMAND} -E echo "strip ${COMMAND_NOT_S…
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/ |
D | utils.py | 22 logger.debug('Found matching key: %s' % line.strip()) 23 return m.group(1).strip('"\'')
|
/Zephyr-latest/dts/bindings/display/ |
D | led-strip-matrix.yaml | 5 Generic LED strip matrix (LED strip arranged in a grid pattern) 7 compatible: "led-strip-matrix" 160 Specify the LED strip that is the substance of the matrix. 170 Specify the number of LEDs for each strip. 171 It can omit the value if all strip nodes have a `chain-length` property.
|
/Zephyr-latest/cmake/bintools/armclang/ |
D | elfconvert_command.cmake | 11 set(obj_copy_strip "--strip=all") 13 set(obj_copy_strip "--strip=debug")
|
/Zephyr-latest/cmake/bintools/arcmwdt/ |
D | target_bintools.cmake | 82 # - strip: Name of command for stripping symbols 92 # This is using strip from bintools. 95 # Any flag the strip command requires for processing
|
12345678