1 /** 2 * @file ipso_filling_sensor.h 3 * @brief 4 * 5 * Copyright (c) 2021 Laird Connectivity 6 * 7 * SPDX-License-Identifier: Apache-2.0 8 */ 9 #ifndef __IPSO_FILLING_SENSOR__ 10 #define __IPSO_FILLING_SENSOR__ 11 12 #include <zephyr/net/lwm2m.h> 13 14 /* Resource IDs for filling sensor */ 15 /* clang-format off */ 16 #define CONTAINER_HEIGHT_FILLING_SENSOR_RID 1 17 #define ACTUAL_FILL_PERCENTAGE_FILLING_SENSOR_RID 2 18 #define ACTUAL_FILL_LEVEL_FILLING_SENSOR_RID 3 19 #define HIGH_THRESHOLD_PERCENTAGE_FILLING_SENSOR_RID 4 20 #define CONTAINER_FULL_FILLING_SENSOR_RID 5 21 #define LOW_THRESHOLD_PERCENTAGE_FILLING_SENSOR_RID 6 22 #define CONTAINER_EMPTY_FILLING_SENSOR_RID 7 23 #define AVERAGE_FILL_SPEED_FILLING_SENSOR_RID 8 24 #define RESET_AVERAGE_FILL_SPEED_FILLING_SENSOR_RID 9 25 #define FORECAST_FULL_DATE_FILLING_SENSOR_RID 10 26 #define FORECAST_EMPTY_DATE_FILLING_SENSOR_RID 11 27 #define CONTAINER_OUT_OF_LOCATION_FILLING_SENSOR_RID 12 28 #define CONTAINER_OUT_OF_POSITION_FILLING_SENSOR_RID 13 29 /* clang-format on */ 30 31 #endif /* __IPSO_FILLING_SENSOR__ */ 32