EV3RT C API Reference [English]
An RTOS-based development platform for LEGO Mindstorms EV3.
 All Data Structures Functions Variables Enumerations Enumerator Groups
ev3api_led.h
1 
29 #pragma once
30 
38 typedef enum {
39  LED_OFF = 0,
40  LED_RED = 1 << 0,
41  LED_GREEN = 1 << 1,
43 } ledcolor_t;
44 
61 
ER ev3_led_set_color(ledcolor_t color)
Control the color of LED lights.
Definition: ev3api_brick.c:13
Green.
Definition: ev3api_led.h:41
Turn off.
Definition: ev3api_led.h:39
Red.
Definition: ev3api_led.h:40
ledcolor_t
Enumeration type for supported LED colors.
Definition: ev3api_led.h:38
Orange.
Definition: ev3api_led.h:42