2016-08-17 17:58:21 -07:00
|
|
|
/*
|
|
|
|
* Authors:
|
|
|
|
* Copyright (c) 2016 Intel Corporation.
|
|
|
|
*
|
2019-07-30 19:41:32 -07:00
|
|
|
* This program and the accompanying materials are made available under the
|
|
|
|
* terms of the The MIT License which is available at
|
|
|
|
* https://opensource.org/licenses/MIT.
|
2016-08-17 17:58:21 -07:00
|
|
|
*
|
2019-07-30 19:41:32 -07:00
|
|
|
* SPDX-License-Identifier: MIT
|
2016-08-17 17:58:21 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef UPM_SENSOR_MOISTURE_H_
|
|
|
|
#define UPM_SENSOR_MOISTURE_H_
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
typedef struct _upm_moisture_ft {
|
|
|
|
upm_result_t (*upm_moisture_sensor_get_moisture) (void* dev, int* moisture);
|
|
|
|
} upm_moisture_ft;
|
|
|
|
|
|
|
|
#endif /* UPM_SENSOR_MOISTURE_H_ */
|