upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions

C++ API for MAXDS3231M chip (Ambient and Infrared Proximity Sensor) More...

Detailed Description

This file defines the maxds3231m C++ interface for maxds3231m

sensor = new upm::MAXDS3231M(0, ADDR);
t.second = 1;
t.minute = 3;
t.hour = 3;
t.day = 3;
t.month = 3;
t.year = 3;
t.weekDay = 3;
sensor->setDate (t); // Note, second should be set to 1.
usleep (500000);
while (!doWork) {
if (sensor->getDate (t)) {
std::cout << (int)t.hour << ":" << (int)t.minute << ":" << (int)t.second << std::endl;
}
std::cout << "Temperature " << sensor->getTemperature() << std::endl;
usleep (1000000);
}

Public Member Functions

 MAXDS3231M (int bus=0, int devAddr=0x68)
 
 ~MAXDS3231M ()
 
void setDate (Time3231 &time)
 
bool getDate (Time3231 &time)
 
uint16_t getTemperature ()
 
std::string name ()
 

Constructor & Destructor Documentation

MAXDS3231M ( int  bus = 0,
int  devAddr = 0x68 
)

Instanciates a MAXDS3231M object

Parameters
busnumber of used bus
devAddraddres of used i2c device
~MAXDS3231M ( )

MAXDS3231M object destructor, basicaly it close i2c connection.

Member Function Documentation

void setDate ( Time3231 time)

Set date and time on the chip.

Parameters
timestaracture
bool getDate ( Time3231 time)

Get date and time located on the chip.

Parameters
timestaracture
uint16_t getTemperature ( void  )

Get on board temperature.

std::string name ( )
inline

Return name of the component


The documentation for this class was generated from the following files: