Contiki-NG
tmp102.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015, Zolertia - http://www.zolertia.com
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the Institute nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * This file is part of the Contiki operating system.
30 *
31 */
32/*---------------------------------------------------------------------------*/
33/**
34 * \addtogroup zoul-sensors
35 * @{
36 *
37 * \defgroup zoul-tmp102-sensor TMP102 Sensor
38 *
39 * Driver for the TMP102 sensor
40 *
41 * The TMP102 driver returns the converted temperature value in centiCelsius
42 * with 2 digits precision, to get Celsius just divide by 100.
43 * @{
44 *
45 * \file
46 * Header file for the TMP102 Sensor Driver
47 */
48/*---------------------------------------------------------------------------*/
49#ifndef TMP102_H_
50#define TMP102_H_
51#include <stdio.h>
52#include "i2c.h"
53/* -------------------------------------------------------------------------- */
54/**
55 * \name Generic TMP102 sensor
56 * @{
57 */
58/* -------------------------------------------------------------------------- */
59#define TMP102_ADDR 0x48 /**< TMP102 slave address */
60#define TMP102_TEMP 0x00 /**< TMP102 temperature data register */
61/** @} */
62/* -------------------------------------------------------------------------- */
63#endif /* ifndef TMP102_H_ */
64/*---------------------------------------------------------------------------*/
65
66/** \brief Initialiser for the TMP102 sensor driver */
67void tmp102_init(void);
68
69/** \brief Get a temperature reading from the TMP102 sensor */
70uint8_t tmp102_read(uint16_t *data);
71
72/**
73 * @}
74 * @}
75 */
uint8_t tmp102_read(uint16_t *data)
Get a temperature reading from the TMP102 sensor.
Definition: tmp102.c:52
void tmp102_init(void)
Initialiser for the TMP102 sensor driver.
Definition: tmp102.c:59