Blame view

RIOT/tests/driver_hdc1000/main.c 1.39 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  /*
   * Copyright (C) 2014-2017 Freie Universität Berlin
   * Copyright (C) 2014 PHYTEC Messtechnik GmbH
   *
   * 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     tests
   * @{
   *
   * @file
   * @brief       Test application for the HDC1000 sensor driver
   *
   * @author      Hauke Petersen <hauke.petersen@fu-berlin.de>
   * @author      Johann Fischer <j.fischer@phytec.de>
   *
   * @}
   */
  
  #include <stdio.h>
  
  #include "fmt.h"
  #include "xtimer.h"
  #include "hdc1000.h"
  #include "hdc1000_params.h"
  
  #define SLEEP       (1000 * 1000U)
  
  int main(void)
  {
      hdc1000_t dev;
      int16_t temp, hum;
      char tstr[8];
      char hstr[8];
  
      puts("HDC1000 Temperature and Humidity Sensor driver test application\n");
      printf("Initializing HDC1000 sensor at I2C_DEV(%i)... ",
              (int)hdc1000_params[0].i2c);
      if (hdc1000_init(&dev, &hdc1000_params[0]) == HDC1000_OK) {
          puts("[OK]\n");
      }
      else {
          puts("[Failed]");
          return 1;
      }
  
      while (1) {
          size_t len;
          hdc1000_read(&dev, &temp, &hum);
  
          len = fmt_s16_dfp(tstr, temp, 2);
          tstr[len] = '\0';
          len = fmt_s16_dfp(hstr, hum, 2);
          hstr[len] = '\0';
          printf("Reading: T: %s °C  RH: %s %%\n", tstr, hstr);
  
          xtimer_usleep(SLEEP);
      }
  
      return 0;
  }