2017-02-16 12:38:29 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-08-29 18:00:46 +02:00
|
|
|
* @ingroup drivers_tcs37727
|
2017-02-16 12:38:29 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief TCS37727 adaption to the RIOT actuator/sensor interface
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "saul.h"
|
|
|
|
#include "tcs37727.h"
|
|
|
|
|
2017-06-26 16:00:34 +02:00
|
|
|
static int read(const void *dev, phydat_t *res)
|
2017-02-16 12:38:29 +01:00
|
|
|
{
|
|
|
|
tcs37727_data_t val;
|
|
|
|
|
2017-06-26 16:00:34 +02:00
|
|
|
tcs37727_read((const tcs37727_t *)dev, &val);
|
2017-02-16 12:38:29 +01:00
|
|
|
|
|
|
|
res->val[0] = (int16_t)val.red;
|
|
|
|
res->val[1] = (int16_t)val.green;
|
|
|
|
res->val[2] = (int16_t)val.blue;
|
|
|
|
res->unit = UNIT_CD;
|
|
|
|
res->scale = 0;
|
|
|
|
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
const saul_driver_t tcs37727_saul_driver = {
|
|
|
|
.read = read,
|
2022-05-02 21:31:03 +02:00
|
|
|
.write = saul_write_notsup,
|
2017-02-16 12:38:29 +01:00
|
|
|
.type = SAUL_SENSE_COLOR,
|
|
|
|
};
|