mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
72 lines
2.1 KiB
C
72 lines
2.1 KiB
C
/*
|
|
* Copyright (C) 2024 HAW Hamburg
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
/**
|
|
* @{
|
|
* @ingroup lwm2m_objects_temperature
|
|
*
|
|
* @file
|
|
* @brief Temperature Sensor object implementation for LwM2M client using Wakaama
|
|
*
|
|
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
|
|
* @}
|
|
*/
|
|
|
|
#include "mutex.h"
|
|
#include "liblwm2m.h"
|
|
#include "lwm2m_client.h"
|
|
#include "objects/temperature.h"
|
|
#include "objects/ipso_sensor_base.h"
|
|
|
|
#define ENABLE_DEBUG 0
|
|
#include "debug.h"
|
|
|
|
/**
|
|
* @brief Temperature Sensor object implementation descriptor.
|
|
*/
|
|
static lwm2m_obj_ipso_sensor_base_t _temperature_object;
|
|
|
|
/**
|
|
* @brief Pool of object instances.
|
|
*/
|
|
static lwm2m_obj_ipso_sensor_base_inst_t _instances[CONFIG_LWM2M_TEMPERATURE_INSTANCES_MAX];
|
|
|
|
lwm2m_object_t *lwm2m_object_temperature_init(lwm2m_client_data_t *client_data)
|
|
{
|
|
assert(client_data);
|
|
int res = lwm2m_object_ipso_sensor_base_init_derived(client_data, &_temperature_object,
|
|
LWM2M_TEMPERATURE_OBJECT_ID,
|
|
_instances,
|
|
CONFIG_LWM2M_TEMPERATURE_INSTANCES_MAX);
|
|
|
|
if (res) {
|
|
DEBUG("[lwm2m:temperature]: failed to create object\n");
|
|
return NULL;
|
|
}
|
|
|
|
return &_temperature_object.object;
|
|
}
|
|
|
|
int32_t lwm2m_object_temperature_instance_create(const lwm2m_obj_temperature_args_t *args)
|
|
{
|
|
int32_t result = lwm2m_object_ipso_sensor_base_instance_create(&_temperature_object, args);
|
|
|
|
if (result) {
|
|
DEBUG("[lwm2m:temperature]: failed to create instance\n");
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void lwm2m_object_temperature_update_value(const lwm2m_client_data_t *client_data,
|
|
uint16_t instance_id,
|
|
int16_t value)
|
|
{
|
|
lwm2m_object_ipso_sensor_base_update_value(client_data, &_temperature_object, instance_id,
|
|
value);
|
|
}
|