1 /* Bluetooth: Mesh Generic OnOff, Generic Level, Lighting & Vendor Models
2  *
3  * Copyright (c) 2018 Vikrant More
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 #ifndef _APP_GPIO_H
9 #define _APP_GPIO_H
10 
11 /* GPIO */
12 extern const struct gpio_dt_spec button_device[];
13 extern const struct gpio_dt_spec led_device[];
14 
15 void app_gpio_init(void);
16 
17 #endif
18