upm: Add sensor groups based on IO types

This commit also fixes adds some default constructor arguments to some i2c
sensors.

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2014-10-02 10:28:29 +01:00
parent 79e8a261ba
commit 397af51d7c
33 changed files with 97 additions and 39 deletions

View File

@ -62,7 +62,7 @@ namespace upm {
*
* This file defines the MLX90614 C++ interface for libmlx90614
*
* @ingroup mlx90641
* @ingroup mlx90641 i2c
* @snippet mlx90641.cxx Interesting
*/
class MLX90614 {
@ -74,7 +74,7 @@ class MLX90614 {
* @param bus number of used bus
* @param devAddr addres of used i2c device
*/
MLX90614 (int bus, int devAddr);
MLX90614 (int bus=0, int devAddr=0x5A);
/**
* MLX90614 object destructor, basicaly it close i2c connection.