2014-08-20 11:09:31 +00:00
|
|
|
/*
|
|
|
|
* Author: Yevgeniy Kiveisha <yevgeniy.kiveisha@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>
|
2015-08-07 16:37:07 -06:00
|
|
|
#include <stdexcept>
|
2014-08-20 11:09:31 +00:00
|
|
|
|
2016-04-25 14:27:51 -07:00
|
|
|
#include "mlx90614.hpp"
|
2014-08-20 11:09:31 +00:00
|
|
|
|
|
|
|
using namespace upm;
|
|
|
|
|
2015-09-02 14:56:13 +03:00
|
|
|
MLX90614::MLX90614 (int bus, int devAddr) : m_i2Ctx(bus) {
|
2014-08-20 11:09:31 +00:00
|
|
|
m_name = "MLX90614";
|
|
|
|
|
|
|
|
m_i2cAddr = devAddr;
|
|
|
|
m_bus = bus;
|
|
|
|
|
2015-09-02 14:56:13 +03:00
|
|
|
mraa::Result ret = m_i2Ctx.address(m_i2cAddr);
|
|
|
|
if (ret != mraa::SUCCESS) {
|
2015-08-07 16:37:07 -06:00
|
|
|
throw std::invalid_argument(std::string(__FUNCTION__) +
|
2015-09-02 14:56:13 +03:00
|
|
|
": address() failed");
|
2014-08-20 11:09:31 +00:00
|
|
|
}
|
2016-07-14 14:13:58 -07:00
|
|
|
|
|
|
|
if ((ret = m_i2Ctx.frequency(mraa::I2C_STD)) != mraa::SUCCESS ) {
|
|
|
|
throw std::invalid_argument(std::string(__FUNCTION__) +
|
|
|
|
": I2c.frequency(I2C_STD) failed");
|
|
|
|
return;
|
|
|
|
}
|
2014-08-20 11:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
MLX90614::readObjectTempF(void) {
|
2015-09-02 14:56:13 +03:00
|
|
|
return (readTemperature(MLX90614_TOBJ1) * 9 / 5) + 32;
|
2014-08-20 11:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
MLX90614::readAmbientTempF(void) {
|
2015-09-02 14:56:13 +03:00
|
|
|
return (readTemperature(MLX90614_TA) * 9 / 5) + 32;
|
2014-08-20 11:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
MLX90614::readObjectTempC(void) {
|
2015-09-02 14:56:13 +03:00
|
|
|
return readTemperature(MLX90614_TOBJ1);
|
2014-08-20 11:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
MLX90614::readAmbientTempC(void) {
|
2015-09-02 14:56:13 +03:00
|
|
|
return readTemperature(MLX90614_TA);
|
2014-08-20 11:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* **************
|
|
|
|
* private area
|
|
|
|
* **************
|
|
|
|
*/
|
|
|
|
uint16_t
|
|
|
|
MLX90614::i2cReadReg_N (int reg, unsigned int len, uint8_t * buffer) {
|
|
|
|
int readByte = 0;
|
|
|
|
|
2015-09-02 14:56:13 +03:00
|
|
|
m_i2Ctx.address(m_i2cAddr);
|
|
|
|
m_i2Ctx.writeByte(reg);
|
2014-08-20 11:09:31 +00:00
|
|
|
|
2015-09-02 14:56:13 +03:00
|
|
|
readByte = m_i2Ctx.read(buffer, len);
|
2014-08-20 11:09:31 +00:00
|
|
|
return readByte;
|
|
|
|
}
|
|
|
|
|
2015-09-02 14:56:13 +03:00
|
|
|
mraa::Result
|
2014-08-20 11:09:31 +00:00
|
|
|
MLX90614::i2cWriteReg_N (uint8_t reg, unsigned int len, uint8_t * buffer) {
|
2015-09-02 14:56:13 +03:00
|
|
|
mraa::Result error = mraa::SUCCESS;
|
2014-08-20 11:09:31 +00:00
|
|
|
|
2015-09-02 14:56:13 +03:00
|
|
|
error = m_i2Ctx.address(m_i2cAddr);
|
|
|
|
error = m_i2Ctx.write(buffer, len);
|
2014-08-20 11:09:31 +00:00
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
MLX90614::readTemperature (uint8_t address) {
|
|
|
|
uint8_t buffer[3];
|
|
|
|
float temperature = 0;
|
|
|
|
|
|
|
|
/* Reading temperature from sensor.
|
|
|
|
Answer contained of 3 bytes (TEMP_LSB | TEMP_MSB | PEC)
|
|
|
|
*/
|
2015-09-02 14:56:13 +03:00
|
|
|
if (i2cReadReg_N(address, 3, buffer) > 2) {
|
2014-08-20 11:09:31 +00:00
|
|
|
temperature = buffer[0];
|
|
|
|
temperature = buffer[1] << 8;
|
|
|
|
|
|
|
|
temperature *= .02;
|
|
|
|
temperature -= 273.15;
|
|
|
|
}
|
|
|
|
|
|
|
|
return temperature;
|
|
|
|
}
|