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 _PUBLISHER_H 9 #define _PUBLISHER_H 10 11 #include <zephyr/kernel.h> 12 13 /* Others */ 14 #define LEVEL_S0 -32768 15 #define LEVEL_S25 -16384 16 #define LEVEL_S50 0 17 #define LEVEL_S75 16384 18 #define LEVEL_S100 32767 19 20 #define LEVEL_U0 0 21 #define LEVEL_U25 16384 22 #define LEVEL_U50 32768 23 #define LEVEL_U75 49152 24 #define LEVEL_U100 65535 25 26 void publish(struct k_work *work); 27 28 #endif 29