blob: 4adf22f3d0dcce20ca464e6c7b07c768ae13f625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* Copyright (c) 2018 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __RESOURCE_LED_H__
#define __RESOURCE_LED_H__
/**
* @brief Writes value of gpio connected led light
* @param[in] pin_num The gpio pin number for the led light
* @param[out] out_value The value of turniing the led light on/off
* @return 0 on success, otherwise a negative error value
* @see If the gpio pin is not open, create gpio handle before writing the value
*/
extern int resource_write_led(int pin_num, int write_value);
/**
* @brief Releases the gpio handle
*/
extern void resource_close_led(void);
#endif /* __RESOURCE_LED_H__ */
|