Skip to content

qsjhyy/DFRobot_VEML7700

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VEML7700

VEML7700 ambient light sensor

Connections

The VEML7700 uses I2C communication. Connect it to the arduino SCL and SDA pins.

Caution: the VEML7700 runs on 3.6V maximum, and does not have 5V-tolerant I/O pins. If you have a 3.3V arduino-compatible board, you can connect the SCL/SDA lines directly to the VEML7700. Otherwise you will need a 5V-to-3.3V level converter.

Usage

see examples/read_VEML7700 for a simple example

API

The code exposes a low-level set of API functions corresponding to the command set described in the datasheet and a higher-level API for ease of use

High-level API

uint8_t VEML7700::getALSLux(float& lux);

samples the current ambient light value (photopic curve) using the current gain and integration time settings. Returns 0 on success, non-zero on failure.

uint8_t VEML7700::getWhiteLux(float& lux);

samples the current ambient light value (white-like curve) using the current gain and integration time settings. Returns 0 on success, non-zero on failure.

uint8_t VEML7700::getAutoALSLux(float& lux);

samples the current ambient light value (photopic curve) using auto-ranging algorithm described in application note. Returns 0 on success, non-zero on failure.

uint8_t VEML7700::getAutoWhiteLux(float& lux);

samples the current ambient light value (white-like curve) using auto-ranging algorithm described in application note. Returns 0 on success, non-zero on failure.

void VEML7700::sampleDelay();

delays (busy-wait) long enough to ensure a new sample is generated after the call is executed, based on current setting of integration time.

  • file readVEML7700.ino
  • brief DFRobot's VEML7700 ambient light sensor
  • @n Get the module here
  • @n This example Set the volume size and play music snippet.
  • @n Connection and Diagram
  • Copyright DFRobot, 2016
  • Copyright GNU Lesser General Public License
  • @author yangyang
  • version V1.0
  • date 2016-12-8

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 95.6%
  • Other 4.4%