forked from EmbeddedTeam/app_photomagnetic
21 lines
427 B
Plaintext
21 lines
427 B
Plaintext
&indicator {
|
|
led-strip = <&led_strip>;
|
|
compatible = "led-strip-indicator";
|
|
en-gpios = <&gpiob 13 GPIO_ACTIVE_HIGH>;
|
|
standby {
|
|
// rgb = <0 0 180>; // Blue
|
|
rgb = <0 0 255>; // Blue
|
|
};
|
|
running {
|
|
// rgb = <0 172 0>; // Green
|
|
rgb = <0 255 0>; // Green
|
|
};
|
|
// pause {
|
|
// rgb = <254 254 0>;
|
|
// interval-ms = <500>;
|
|
// };
|
|
error {
|
|
// rgb = <160 0 0>; //Red
|
|
rgb = <255 0 0>; //Red
|
|
};
|
|
}; |