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 _COMMON_H 9 #define _COMMON_H 10 11 extern int button_device[]; 12 extern int led_device[]; 13 14 void update_light_state(void); 15 16 #endif 17