1 /* 2 * Copyright (c) 2020 Seagate Technology LLC 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef TEST_LED_API_H_ 8 #define TEST_LED_API_H_ 9 10 const struct device *get_led_controller(void); 11 12 void test_led_setup(void); 13 void test_led_get_info(void); 14 void test_led_on(void); 15 void test_led_off(void); 16 void test_led_set_color(void); 17 void test_led_set_brightness(void); 18 19 #endif 20