mirror of
https://github.com/eclipse/upm.git
synced 2025-03-15 04:57:30 +03:00
max44009: Initial Implementation Maxim 44009 light sensor
Signed-off-by: Henry Bruce <henry.bruce@intel.com> Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
This commit is contained in:
parent
1f1a1bce8e
commit
33734dc2e2
6
src/max44009/CMakeLists.txt
Normal file
6
src/max44009/CMakeLists.txt
Normal file
@ -0,0 +1,6 @@
|
||||
include_directories(..)
|
||||
set (libname "max44009")
|
||||
set (libdescription "upm MAX44009")
|
||||
set (module_src ${libname}.cxx)
|
||||
set (module_h ${libname}.h)
|
||||
upm_module_init()
|
8
src/max44009/jsupm_max44009.i
Normal file
8
src/max44009/jsupm_max44009.i
Normal file
@ -0,0 +1,8 @@
|
||||
%module jsupm_max44009
|
||||
%include "../upm.i"
|
||||
|
||||
%{
|
||||
#include "max44009.h"
|
||||
%}
|
||||
|
||||
%include "max44009.h"
|
99
src/max44009/max44009.cxx
Normal file
99
src/max44009/max44009.cxx
Normal file
@ -0,0 +1,99 @@
|
||||
/*
|
||||
* Author: Scott Ware <scott.r.ware@intel.com>
|
||||
* Copyright (c) 2014 Intel Corporation.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining
|
||||
* a copy of this software and associated documentation files (the
|
||||
* "Software"), to deal in the Software without restriction, including
|
||||
* without limitation the rights to use, copy, modify, merge, publish,
|
||||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||
* permit persons to whom the Software is furnished to do so, subject to
|
||||
* the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "max44009.h"
|
||||
|
||||
using namespace upm;
|
||||
|
||||
MAX44009::MAX44009 (int bus, int devAddr) {
|
||||
|
||||
m_maxControlAddr = devAddr;
|
||||
i2c = new mraa::I2c(bus);
|
||||
i2c->address(m_maxControlAddr);
|
||||
|
||||
// Reset chip to defaults
|
||||
status = mraa::SUCCESS;
|
||||
reset();
|
||||
if (!isConfigured())
|
||||
UPM_THROW("config failure");
|
||||
}
|
||||
|
||||
MAX44009::~MAX44009() {
|
||||
delete i2c;
|
||||
}
|
||||
|
||||
mraa::Result
|
||||
MAX44009::reset() {
|
||||
uint8_t address[5] = {MAX44009_INT_ENABLE_ADDR, MAX44009_CONFIG_ADDR, \
|
||||
MAX44009_THR_HIGH_ADDR, MAX44009_THR_LOW_ADDR, \
|
||||
MAX44009_THR_TIMER_ADDR};
|
||||
uint8_t value[5] = {MAX44009_INT_DISABLED, MAX44009_DEFAULT_CONFIGURATION, \
|
||||
0xFF, 0x00, 0xFF};
|
||||
uint8_t i;
|
||||
for (i = 0; i < sizeof(address) && status == mraa::SUCCESS; i++) {
|
||||
status = i2c->writeReg(address[i], value[i]);
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
uint16_t
|
||||
MAX44009::getVisibleRaw() {
|
||||
uint8_t exponent, mantissa;
|
||||
uint8_t data[MAX44009_LUX_LENGTH];
|
||||
uint16_t* value = reinterpret_cast<uint16_t*>(&data[0]);
|
||||
|
||||
int length = i2c->readBytesReg(MAX44009_LUX_START_ADDR, data, MAX44009_LUX_LENGTH);
|
||||
|
||||
if(length != MAX44009_LUX_LENGTH)
|
||||
UPM_THROW("Read error");
|
||||
|
||||
return *value;
|
||||
}
|
||||
|
||||
|
||||
double
|
||||
MAX44009::getVisibleLux() {
|
||||
uint16_t rawValue = getVisibleRaw();
|
||||
uint8_t rawValueMsb = rawValue >> 8;
|
||||
uint8_t rawValueLsb = rawValue & 0xFF;
|
||||
uint8_t exponent = (( rawValueMsb & 0xF0 ) >> 4);
|
||||
uint8_t mantissa = (( rawValueMsb & 0x0F ) << 4 ) | ( rawValueLsb & 0x0F );
|
||||
|
||||
// Check for overrange condition
|
||||
if(exponent == MAX44009_OVERRANGE_CONDITION)
|
||||
UPM_THROW("Overrange error");
|
||||
|
||||
return pow((double)2,(double)exponent) * mantissa * 0.045;
|
||||
}
|
||||
|
||||
|
||||
bool
|
||||
MAX44009::isConfigured() {
|
||||
return status == mraa::SUCCESS;
|
||||
}
|
147
src/max44009/max44009.h
Normal file
147
src/max44009/max44009.h
Normal file
@ -0,0 +1,147 @@
|
||||
/*
|
||||
* Author: Scott Ware <scott.r.ware@intel.com>
|
||||
* Copyright (c) 2014 Intel Corporation.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining
|
||||
* a copy of this software and associated documentation files (the
|
||||
* "Software"), to deal in the Software without restriction, including
|
||||
* without limitation the rights to use, copy, modify, merge, publish,
|
||||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||
* permit persons to whom the Software is furnished to do so, subject to
|
||||
* the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <mraa/i2c.hpp>
|
||||
|
||||
#include "upm/iLightSensor.h"
|
||||
|
||||
/* ADDRESS AND NOT_FOUND VALUE */
|
||||
#define MAX44009_ADDRESS ( 0x4A )
|
||||
#define MAX44009_NOT_FOUND ( 0x00 )
|
||||
|
||||
/* I2C BUS */
|
||||
#define MAX44009_I2C_BUS ( 1 )
|
||||
|
||||
/* REGISTER ADDRESSES */
|
||||
#define MAX44009_INT_STATUS_ADDR ( 0x00 ) // R
|
||||
#define MAX44009_INT_ENABLE_ADDR ( 0x01 ) // R/W
|
||||
#define MAX44009_CONFIG_ADDR ( 0x02 ) // R/W
|
||||
#define MAX44009_LUX_START_ADDR ( 0x03 )
|
||||
#define MAX44009_LUX_LENGTH ( 2 )
|
||||
#define MAX44009_LUX_HIGH ( 0 )
|
||||
#define MAX44009_LUX_LOW ( 1 )
|
||||
#define MAX44009_THR_HIGH_ADDR ( 0x05 ) // R/W
|
||||
#define MAX44009_THR_LOW_ADDR ( 0x06 ) // R/W
|
||||
#define MAX44009_THR_TIMER_ADDR ( 0x07 ) // R/W
|
||||
|
||||
/* INTERRUPT VALUES */
|
||||
#define MAX44009_INT_STATUS_OFF ( 0x00 )
|
||||
#define MAX44009_INT_STATUS_ON ( 0x01 )
|
||||
#define MAX44009_INT_DISABLED ( 0x00 )
|
||||
#define MAX44009_INT_ENABLED ( 0x01 )
|
||||
|
||||
/* CONFIGURATION VALUES */
|
||||
#define MAX44009_CONFIG_DEFAULT ( 0 << 7 )
|
||||
#define MAX44009_CONFIG_CONTINUOUS ( 1 << 7 )
|
||||
#define MAX44009_CONFIG_AUTO ( 0 << 6 )
|
||||
#define MAX44009_CONFIG_MANUAL ( 1 << 6 )
|
||||
#define MAX44009_CONFIG_CDR_NORMAL ( 0 << 3 )
|
||||
#define MAX44009_CONFIG_CDR_DIVIDED ( 1 << 3 )
|
||||
#define MAX44009_CONFIG_INTEGRATION_800ms ( 0 << 0 )
|
||||
#define MAX44009_CONFIG_INTEGRATION_400ms ( 1 << 0 )
|
||||
#define MAX44009_CONFIG_INTEGRATION_200ms ( 2 << 0 )
|
||||
#define MAX44009_CONFIG_INTEGRATION_100ms ( 3 << 0 )
|
||||
#define MAX44009_CONFIG_INTEGRATION_50ms ( 4 << 0 )
|
||||
#define MAX44009_CONFIG_INTEGRATION_25ms ( 5 << 0 )
|
||||
#define MAX44009_CONFIG_INTEGRATION_12ms ( 6 << 0 )
|
||||
#define MAX44009_CONFIG_INTEGRATION_6ms ( 7 << 0 )
|
||||
|
||||
/* DEFAULT CONFIGURATION */
|
||||
#define MAX44009_DEFAULT_CONFIGURATION ( MAX44009_CONFIG_DEFAULT | \
|
||||
MAX44009_CONFIG_AUTO | \
|
||||
MAX44009_CONFIG_CDR_NORMAL | \
|
||||
MAX44009_CONFIG_INTEGRATION_100ms )
|
||||
|
||||
/* MISCELLANEOUS */
|
||||
#define MAX44009_OVERRANGE_CONDITION ( 0x0F )
|
||||
|
||||
namespace upm {
|
||||
|
||||
/**
|
||||
* @brief max44009 ambient light sensor library
|
||||
* @defgroup max44009 libupm-max44009
|
||||
* @ingroup maxim i2c light ilightsensor
|
||||
*/
|
||||
|
||||
/**
|
||||
* @brief C++ API for MAX44009 chip (Ambient Light Sensor)
|
||||
*
|
||||
* The Maxim Integrated
|
||||
* [MAX44009](http://datasheets.maximintegrated.com/en/ds/MAX44009.pdf)
|
||||
* is Industry’s Lowest-Power Ambient Light Sensor with ADC.
|
||||
*
|
||||
* @library max44009
|
||||
* @sensor max44009
|
||||
* @comname MAX44009 Ambient Light Sensor
|
||||
* @altname MAX44009
|
||||
* @type light
|
||||
* @man maxim
|
||||
* @con i2c
|
||||
* @if ilightsensor
|
||||
*
|
||||
* @snippet iLightSensor.h Interesting
|
||||
*
|
||||
*/
|
||||
class MAX44009 : public ILightSensor {
|
||||
public:
|
||||
/**
|
||||
* Instanciates a MAX44009 object
|
||||
*
|
||||
* @param bus number of used bus
|
||||
* @param devAddr address of used i2c device
|
||||
*/
|
||||
MAX44009 (int bus = MAX44009_I2C_BUS, int devAddr = MAX44009_ADDRESS);
|
||||
|
||||
/**
|
||||
* MAX44009 object destructor, basicaly it close i2c connection.
|
||||
*/
|
||||
~MAX44009 ();
|
||||
|
||||
/**
|
||||
* Read the raw visible light value
|
||||
*/
|
||||
uint16_t getVisibleRaw();
|
||||
|
||||
/**
|
||||
* Read the lux value
|
||||
*/
|
||||
double getVisibleLux();
|
||||
|
||||
/**
|
||||
* Returns whether the sensor is configured.
|
||||
*/
|
||||
bool isConfigured();
|
||||
const char* getModuleName() { return "max44009"; }
|
||||
|
||||
private:
|
||||
mraa::Result reset();
|
||||
|
||||
int m_maxControlAddr;
|
||||
mraa::I2c* i2c;
|
||||
mraa::Result status;
|
||||
};
|
||||
|
||||
}
|
11
src/max44009/pyupm_max44009.i
Normal file
11
src/max44009/pyupm_max44009.i
Normal file
@ -0,0 +1,11 @@
|
||||
%module pyupm_max44009
|
||||
%include "../upm.i"
|
||||
|
||||
%include "stdint.i"
|
||||
|
||||
%feature("autodoc", "3");
|
||||
|
||||
%include "max44009.h"
|
||||
%{
|
||||
#include "max44009.h"
|
||||
%}
|
Loading…
x
Reference in New Issue
Block a user