nRF Connect SDK API 2.8.99
|
int nrf_cloud_coap_sensor_send | ( | const char * | app_id, |
double | value, | ||
int64_t | ts_ms, | ||
bool | confirmable ) |
#include <include/net/nrf_cloud_coap.h>
Send a sensor value to nRF Cloud.
The sensor message is sent either as a non-confirmable or confirmable CoAP message. Use non-confirmable when sending low priority information for which some data loss is acceptable.
[in] | app_id | The app ID identifying the type of data. See the values that begin with NRF_CLOUD_JSON_APPID_ in nrf_cloud_defs.h. You may also use custom names. |
[in] | value | Sensor reading. |
[in] | ts_ms | Timestamp the data was measured, or NRF_CLOUD_NO_TIMESTAMP. |
[in] | confirmable | Select whether to use a CON or NON CoAP transfer. |
-EACCES | Device does not have a valid nRF Cloud CoAP connection. |