Blame view

RIOT/drivers/bh1750fvi/bh1750fvi.c 1.9 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
65
66
67
68
69
70
71
72
73
74
75
76
77
  /*
   * Copyright (C) 2016 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.
   */
  
  /**
   * @ingroup     drivers_bh1750fvi
   * @{
   *
   * @file
   * @brief       BH1750FVI ambient light sensor driver implementation
   *
   * @author      Hauke Petersen <hauke.petersen@fu-berlin.de>
   *
   * @}
   */
  
  #include <stdio.h>
  
  #include "xtimer.h"
  
  #include "bh1750fvi.h"
  #include "bh1750fvi_internal.h"
  
  #define ENABLE_DEBUG        (0)
  #include "debug.h"
  
  int bh1750fvi_init(bh1750fvi_t *dev, bh1750fvi_params_t *params)
  {
      int res;
  
      /* initialize the device descriptor */
      dev->i2c = params->i2c;
      dev->addr = params->addr;
  
      /* initialize the I2C bus */
      i2c_acquire(dev->i2c);
      i2c_init_master(dev->i2c, params->clk);
  
      /* send a power down command to make sure we can speak to the device */
      res = i2c_write_byte(dev->i2c, dev->addr, OP_POWER_DOWN);
      i2c_release(dev->i2c);
      if (res < 0) {
          return BH1750FVI_ERR_I2C;
      }
      return BH1750FVI_OK;
  }
  
  uint16_t bh1750fvi_sample(const bh1750fvi_t *dev)
  {
      uint32_t tmp;
      uint8_t raw[2];
  
      /* power on the device and send single H-mode measurement command */
      DEBUG("[bh1750fvi] sample: triggering a conversion\n");
      i2c_acquire(dev->i2c);
      i2c_write_byte(dev->i2c, dev->addr, OP_POWER_ON);
      i2c_write_byte(dev->i2c, dev->addr, OP_SINGLE_HRES1);
      i2c_release(dev->i2c);
  
      /* wait for measurement to complete */
      xtimer_usleep(DELAY_HMODE);
  
      /* read the results */
      DEBUG("[bh1750fvi] sample: reading the results\n");
      i2c_acquire(dev->i2c);
      i2c_read_bytes(dev->i2c, dev->addr, raw, 2);
      i2c_release(dev->i2c);
  
      /* and finally we calculate the actual LUX value */
      tmp = ((uint32_t)raw[0] << 24) | ((uint32_t)raw[1] << 16);
      tmp /= RES_DIV;
      return (uint16_t)(tmp);
  }