Blame view

RIOT/tests/driver_veml6070/main.c 1.16 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
  /*
   * Copyright (C) 2017 Inria
   *
   * 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 VEML6070 UV sensor
   *
   * @author      Alexandre Abadie <alexandre.abadie@inria.fr>
   *
   * @}
   */
  
  #include <stdio.h>
  #include <inttypes.h>
  
  #include "veml6070.h"
  #include "veml6070_params.h"
  #include "xtimer.h"
  #include "board.h"
  
  int main(void)
  {
      veml6070_t dev;
      int result;
  
      puts("VEML6070 test application\n");
  
      printf("+------------Initializing------------+\n");
      result = veml6070_init(&dev, &veml6070_params[0]);
      if (result == VEML6070_ERR_I2C) {
          puts("[Error] The given i2c is not enabled");
          return 1;
      }
  
      puts("Initialization successful");
  
      printf("\n+--------Starting Measurements--------+\n");
      while (1) {
          printf("UV index: %d"
                 "\n+-------------------------------------+\n",
                 veml6070_read_uv(&dev));
  
          /* 2s delay before next measure*/
          xtimer_sleep(2);
      }
  
      return 0;
  }