From bee515227e7fe78f535831ae6b9dab908355679c Mon Sep 17 00:00:00 2001 From: Kyle McCreery Date: Mon, 1 May 2023 16:56:04 -0400 Subject: [PATCH] Fixed whitespace --- .../shields/bb65/boards/pillbug.overlay | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/app/boards/shields/bb65/boards/pillbug.overlay b/app/boards/shields/bb65/boards/pillbug.overlay index 9f19be72..be0eb580 100644 --- a/app/boards/shields/bb65/boards/pillbug.overlay +++ b/app/boards/shields/bb65/boards/pillbug.overlay @@ -7,32 +7,32 @@ #include &spi1 { - compatible = "nordic,nrf-spim"; - status = "okay"; - mosi-pin = <5>; - // Unused pins, needed for SPI definition, but not used by the ws2812 driver itself. - sck-pin = <27>; - miso-pin = <28>; + compatible = "nordic,nrf-spim"; + status = "okay"; + mosi-pin = <5>; + // Unused pins, needed for SPI definition, but not used by the ws2812 driver itself. + sck-pin = <27>; + miso-pin = <28>; - led_strip: ws2812@0 { - compatible = "worldsemi,ws2812-spi"; - label = "WS2812"; + led_strip: ws2812@0 { + compatible = "worldsemi,ws2812-spi"; + label = "WS2812"; - /* SPI */ - reg = <0>; /* ignored, but necessary for SPI bindings */ - spi-max-frequency = <4000000>; + /* SPI */ + reg = <0>; /* ignored, but necessary for SPI bindings */ + spi-max-frequency = <4000000>; - /* WS2812 */ - chain-length = <10>; /* number of LEDs */ - spi-one-frame = <0x70>; - spi-zero-frame = <0x40>; + /* WS2812 */ + chain-length = <10>; /* number of LEDs */ + spi-one-frame = <0x70>; + spi-zero-frame = <0x40>; - color-mapping = ; - }; + color-mapping = ; + }; }; / { - chosen { - zmk,underglow = &led_strip; - }; + chosen { + zmk,underglow = &led_strip; + }; };