File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
variants/b_u585i_iot02a_stm32u585xx Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 11
11
zephyr,bt-hci = &usart1; // TODO remove
12
12
zephyr,camera = &dcmi;
13
13
};
14
+
15
+ leds {
16
+ compatible = "gpio-leds";
17
+
18
+ led3_red: led3_red {
19
+ gpios = <&gpioh 10 GPIO_ACTIVE_LOW>;
20
+ label = "RGB LED 3 Red";
21
+ };
22
+
23
+ led3_green: led3_green {
24
+ gpios = <&gpioh 11 GPIO_ACTIVE_LOW>;
25
+ label = "RGB LED 3 Green";
26
+ };
27
+
28
+ led3_blue: led3_blue {
29
+ gpios = <&gpioh 12 GPIO_ACTIVE_LOW>;
30
+ label = "RGB LED 3 Blue";
31
+ };
32
+
33
+ led4_red: led4_red {
34
+ gpios = <&gpioh 13 GPIO_ACTIVE_LOW>;
35
+ label = "RGB LED 4 Red";
36
+ };
37
+
38
+ led4_green: led4_green {
39
+ gpios = <&gpioh 14 GPIO_ACTIVE_LOW>;
40
+ label = "RGB LED 4 Green";
41
+ };
42
+
43
+ led4_blue: led4_blue {
44
+ gpios = <&gpioh 15 GPIO_ACTIVE_LOW>;
45
+ label = "RGB LED 4 Blue";
46
+ };
47
+ };
14
48
};
15
49
16
50
You can’t perform that action at this time.
0 commit comments