blob: cd06519b4464a32c63cf04c039d3dfa74780b029 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Documentation for `strip`
::: luxcena_neo.strip.Strip
handler: python
options:
show_root_heading: true
show_source: false
---
## A note on colors
Most methods which need colors takes a `*color` parameter. This is because it interprets multiple types of colors. The example below illustrates this, each of the lines has the exact same effect on the led strip.
```python
set_pixel_color(0, "#fafafa")
set_pixel_color(0, 16448250)
set_pixel_color(0, 250, 250, 250)
set_pixel_color(0, (250, 250, 250))
```
|