├── .gitignore ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── avr-examples ├── .cargo │ └── config.toml ├── .gitignore ├── Cargo.toml ├── README.md ├── avr-atmega32u4.json ├── examples │ └── avr_ws2812_blink_spi_pre.rs ├── leonardo-runner.sh ├── rust-toolchain.toml └── src │ └── lib.rs ├── cpx-examples ├── .cargo │ └── config ├── Cargo.toml ├── build.rs ├── examples │ ├── cpx_ws2812_spi_blink.rs │ ├── cpx_ws2812_spi_rainbow.rs │ ├── cpx_ws2812_spi_slider.rs │ └── cpx_ws2812_timer_rainbow.rs ├── memory.x └── src │ └── lib.rs ├── longan-nano-examples ├── .cargo │ └── config.toml ├── Cargo.toml ├── README.md ├── examples │ └── longan_nano_ws2812_spi_rgbw_blink.rs ├── openocd.gdb ├── sipeed-jtag.cfg └── src │ └── lib.rs ├── lpc845-examples ├── .cargo │ └── config ├── .gitignore ├── Cargo.toml ├── Embed.toml ├── README.md ├── build.rs ├── examples │ └── lpc845_ws2812_spi_blink.rs ├── memory.x └── src │ └── lib.rs ├── microbit-v2-examples ├── .cargo │ └── config ├── Cargo.toml ├── Embed.toml ├── README.md ├── examples │ └── microbit_v2_ws2812_spi_blink.rs └── src │ └── lib.rs ├── raspberry-pi-pico-examples ├── .cargo │ └── config.toml ├── Cargo.toml ├── README.md ├── build.rs ├── examples │ └── raspberry_pi_pico_ws2812_spi_rgbw_blink.rs ├── memory.x └── src │ └── lib.rs ├── raspberry-pi-ws281x-rpi-examples ├── Cargo.toml ├── README.md ├── examples │ └── raspberry_pi_ws281x_rpi_rgbw_blink.rs └── src │ └── lib.rs ├── stm32f0-examples ├── .cargo │ └── config ├── .gitignore ├── Cargo.toml ├── Embed.toml ├── build.rs ├── examples │ ├── stm32f0_apa102_slider.rs │ ├── stm32f0_ws2812_spi_blink.rs │ ├── stm32f0_ws2812_spi_rainbow.rs │ ├── stm32f0_ws2812_spi_slider.rs │ ├── stm32f0_ws2812_timer_blink.rs │ └── stm32f0_ws2812_timer_rainbow.rs ├── memory.x └── src │ └── lib.rs ├── stm32f1-examples ├── .cargo │ └── config ├── .gitignore ├── Cargo.toml ├── Embed.toml ├── build.rs ├── examples │ └── stm32f1_ws2812_spi_blink.rs ├── memory.x └── src │ └── lib.rs ├── stm32f411-examples ├── .cargo │ └── config ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples │ └── stm32f411_example_spi_rainbow.rs ├── memory.x └── src │ └── main.rs └── trinket-m0-examples ├── .cargo └── config ├── Cargo.toml ├── README.md ├── examples ├── trinket_apa102_onboard_blink.rs └── trinket_ws2812_spi_blink.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/README.md -------------------------------------------------------------------------------- /avr-examples/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/avr-examples/.cargo/config.toml -------------------------------------------------------------------------------- /avr-examples/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /avr-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/avr-examples/Cargo.toml -------------------------------------------------------------------------------- /avr-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/avr-examples/README.md -------------------------------------------------------------------------------- /avr-examples/avr-atmega32u4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/avr-examples/avr-atmega32u4.json -------------------------------------------------------------------------------- /avr-examples/examples/avr_ws2812_blink_spi_pre.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/avr-examples/examples/avr_ws2812_blink_spi_pre.rs -------------------------------------------------------------------------------- /avr-examples/leonardo-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/avr-examples/leonardo-runner.sh -------------------------------------------------------------------------------- /avr-examples/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/avr-examples/rust-toolchain.toml -------------------------------------------------------------------------------- /avr-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /cpx-examples/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/cpx-examples/.cargo/config -------------------------------------------------------------------------------- /cpx-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/cpx-examples/Cargo.toml -------------------------------------------------------------------------------- /cpx-examples/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/cpx-examples/build.rs -------------------------------------------------------------------------------- /cpx-examples/examples/cpx_ws2812_spi_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/cpx-examples/examples/cpx_ws2812_spi_blink.rs -------------------------------------------------------------------------------- /cpx-examples/examples/cpx_ws2812_spi_rainbow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/cpx-examples/examples/cpx_ws2812_spi_rainbow.rs -------------------------------------------------------------------------------- /cpx-examples/examples/cpx_ws2812_spi_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/cpx-examples/examples/cpx_ws2812_spi_slider.rs -------------------------------------------------------------------------------- /cpx-examples/examples/cpx_ws2812_timer_rainbow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/cpx-examples/examples/cpx_ws2812_timer_rainbow.rs -------------------------------------------------------------------------------- /cpx-examples/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/cpx-examples/memory.x -------------------------------------------------------------------------------- /cpx-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /longan-nano-examples/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/longan-nano-examples/.cargo/config.toml -------------------------------------------------------------------------------- /longan-nano-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/longan-nano-examples/Cargo.toml -------------------------------------------------------------------------------- /longan-nano-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/longan-nano-examples/README.md -------------------------------------------------------------------------------- /longan-nano-examples/examples/longan_nano_ws2812_spi_rgbw_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/longan-nano-examples/examples/longan_nano_ws2812_spi_rgbw_blink.rs -------------------------------------------------------------------------------- /longan-nano-examples/openocd.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/longan-nano-examples/openocd.gdb -------------------------------------------------------------------------------- /longan-nano-examples/sipeed-jtag.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/longan-nano-examples/sipeed-jtag.cfg -------------------------------------------------------------------------------- /longan-nano-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /lpc845-examples/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/lpc845-examples/.cargo/config -------------------------------------------------------------------------------- /lpc845-examples/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /lpc845-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/lpc845-examples/Cargo.toml -------------------------------------------------------------------------------- /lpc845-examples/Embed.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/lpc845-examples/Embed.toml -------------------------------------------------------------------------------- /lpc845-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/lpc845-examples/README.md -------------------------------------------------------------------------------- /lpc845-examples/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/lpc845-examples/build.rs -------------------------------------------------------------------------------- /lpc845-examples/examples/lpc845_ws2812_spi_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/lpc845-examples/examples/lpc845_ws2812_spi_blink.rs -------------------------------------------------------------------------------- /lpc845-examples/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/lpc845-examples/memory.x -------------------------------------------------------------------------------- /lpc845-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /microbit-v2-examples/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/microbit-v2-examples/.cargo/config -------------------------------------------------------------------------------- /microbit-v2-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/microbit-v2-examples/Cargo.toml -------------------------------------------------------------------------------- /microbit-v2-examples/Embed.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/microbit-v2-examples/Embed.toml -------------------------------------------------------------------------------- /microbit-v2-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/microbit-v2-examples/README.md -------------------------------------------------------------------------------- /microbit-v2-examples/examples/microbit_v2_ws2812_spi_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/microbit-v2-examples/examples/microbit_v2_ws2812_spi_blink.rs -------------------------------------------------------------------------------- /microbit-v2-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /raspberry-pi-pico-examples/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/raspberry-pi-pico-examples/.cargo/config.toml -------------------------------------------------------------------------------- /raspberry-pi-pico-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/raspberry-pi-pico-examples/Cargo.toml -------------------------------------------------------------------------------- /raspberry-pi-pico-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/raspberry-pi-pico-examples/README.md -------------------------------------------------------------------------------- /raspberry-pi-pico-examples/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/raspberry-pi-pico-examples/build.rs -------------------------------------------------------------------------------- /raspberry-pi-pico-examples/examples/raspberry_pi_pico_ws2812_spi_rgbw_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/raspberry-pi-pico-examples/examples/raspberry_pi_pico_ws2812_spi_rgbw_blink.rs -------------------------------------------------------------------------------- /raspberry-pi-pico-examples/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/raspberry-pi-pico-examples/memory.x -------------------------------------------------------------------------------- /raspberry-pi-pico-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /raspberry-pi-ws281x-rpi-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/raspberry-pi-ws281x-rpi-examples/Cargo.toml -------------------------------------------------------------------------------- /raspberry-pi-ws281x-rpi-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/raspberry-pi-ws281x-rpi-examples/README.md -------------------------------------------------------------------------------- /raspberry-pi-ws281x-rpi-examples/examples/raspberry_pi_ws281x_rpi_rgbw_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/raspberry-pi-ws281x-rpi-examples/examples/raspberry_pi_ws281x_rpi_rgbw_blink.rs -------------------------------------------------------------------------------- /raspberry-pi-ws281x-rpi-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /stm32f0-examples/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/.cargo/config -------------------------------------------------------------------------------- /stm32f0-examples/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /stm32f0-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/Cargo.toml -------------------------------------------------------------------------------- /stm32f0-examples/Embed.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/Embed.toml -------------------------------------------------------------------------------- /stm32f0-examples/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/build.rs -------------------------------------------------------------------------------- /stm32f0-examples/examples/stm32f0_apa102_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/examples/stm32f0_apa102_slider.rs -------------------------------------------------------------------------------- /stm32f0-examples/examples/stm32f0_ws2812_spi_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/examples/stm32f0_ws2812_spi_blink.rs -------------------------------------------------------------------------------- /stm32f0-examples/examples/stm32f0_ws2812_spi_rainbow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/examples/stm32f0_ws2812_spi_rainbow.rs -------------------------------------------------------------------------------- /stm32f0-examples/examples/stm32f0_ws2812_spi_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/examples/stm32f0_ws2812_spi_slider.rs -------------------------------------------------------------------------------- /stm32f0-examples/examples/stm32f0_ws2812_timer_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/examples/stm32f0_ws2812_timer_blink.rs -------------------------------------------------------------------------------- /stm32f0-examples/examples/stm32f0_ws2812_timer_rainbow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/examples/stm32f0_ws2812_timer_rainbow.rs -------------------------------------------------------------------------------- /stm32f0-examples/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f0-examples/memory.x -------------------------------------------------------------------------------- /stm32f0-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /stm32f1-examples/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f1-examples/.cargo/config -------------------------------------------------------------------------------- /stm32f1-examples/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /stm32f1-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f1-examples/Cargo.toml -------------------------------------------------------------------------------- /stm32f1-examples/Embed.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f1-examples/Embed.toml -------------------------------------------------------------------------------- /stm32f1-examples/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f1-examples/build.rs -------------------------------------------------------------------------------- /stm32f1-examples/examples/stm32f1_ws2812_spi_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f1-examples/examples/stm32f1_ws2812_spi_blink.rs -------------------------------------------------------------------------------- /stm32f1-examples/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f1-examples/memory.x -------------------------------------------------------------------------------- /stm32f1-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | -------------------------------------------------------------------------------- /stm32f411-examples/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f411-examples/.cargo/config -------------------------------------------------------------------------------- /stm32f411-examples/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode 3 | -------------------------------------------------------------------------------- /stm32f411-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f411-examples/Cargo.toml -------------------------------------------------------------------------------- /stm32f411-examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f411-examples/LICENSE -------------------------------------------------------------------------------- /stm32f411-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f411-examples/README.md -------------------------------------------------------------------------------- /stm32f411-examples/examples/stm32f411_example_spi_rainbow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f411-examples/examples/stm32f411_example_spi_rainbow.rs -------------------------------------------------------------------------------- /stm32f411-examples/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/stm32f411-examples/memory.x -------------------------------------------------------------------------------- /stm32f411-examples/src/main.rs: -------------------------------------------------------------------------------- 1 | #![no_std] -------------------------------------------------------------------------------- /trinket-m0-examples/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/trinket-m0-examples/.cargo/config -------------------------------------------------------------------------------- /trinket-m0-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/trinket-m0-examples/Cargo.toml -------------------------------------------------------------------------------- /trinket-m0-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/trinket-m0-examples/README.md -------------------------------------------------------------------------------- /trinket-m0-examples/examples/trinket_apa102_onboard_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/trinket-m0-examples/examples/trinket_apa102_onboard_blink.rs -------------------------------------------------------------------------------- /trinket-m0-examples/examples/trinket_ws2812_spi_blink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-leds-rs/smart-leds-samples/HEAD/trinket-m0-examples/examples/trinket_ws2812_spi_blink.rs -------------------------------------------------------------------------------- /trinket-m0-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | --------------------------------------------------------------------------------