I2C 接続の温度センサ ADT7410 用のライブラリの使用例. Demo program of the library for temperature sensor ADT7410 connected using I2C interface.

Dependencies:   mbed UIT_ADT7410

main.cpp

Committer:
MikamiUitOpen
Date:
2015-06-15
Revision:
2:ed374946c673
Parent:
1:639e2ad4ab5e
Child:
3:176a92f43b5b

File content as of revision 2:ed374946c673:

//--------------------------------------------------------------
//  ADT7410 and LCD display using I2C interface
//  2015/06/15, Copyright (c) 2015 MIKAMI, Naoki
//--------------------------------------------------------------

#include "ADT7410.hpp"

// If you want to display the temperature on AQM1602,
// enable following #define statement
//#define USING_AQM1602

#ifdef USING_AQM1602
#include "AQM1602.hpp"
#endif

using namespace Mikami;

#ifdef USING_AQM1602
Aqm1602 lcd_;       // using default port
#endif
ADT7410 tempr_;     // using default

int main()
{
    printf("\r\nStart ADT7410\r\n");
#ifdef USING_AQM1602
    lcd_.WriteStringXY("ADT7410", 0, 0);
#endif

    // Confirmation of setting
    uint8_t cReg = tempr_.GetConfig();
    printf("Mode: 0x%02x\r\n", cReg);
 
    while (true)
    {
        // Member function version
//        float tempr = tempr_.Read();
        // Operator version
        float value = tempr_;

#ifdef USING_AQM1602
        char str[8];
        sprintf(str, "%5.1f ", value);
        string s1 = (string)str + (char)0xDF + "C";
        lcd_.WriteStringXY(s1, 0, 1);
#endif
        printf("%5.1f deg. Celsius\r\n", value);
        wait(1);
    }
}