I2C 接続の温度センサ ADT7410 用のライブラリ. Library for temperature sensor ADT7410 connected using I2C interface.

Dependents:   Mbed2_ConnectTestAll Demo_ADT7410

Revision:
4:3769397d3803
Parent:
3:e0717c58a396
Child:
5:bbcd91ba7c6b
--- a/ADT7410.hpp	Wed Sep 14 23:35:30 2016 +0000
+++ b/ADT7410.hpp	Fri Sep 01 11:14:31 2017 +0000
@@ -1,7 +1,7 @@
 //--------------------------------------------------------------
 //  Class for using ADT7410 (Header)
 //      Default: 13-bit resolution
-//  2015/09/27, Copyright (c) 2015 MIKAMI, Naoki
+//  2017/09/01, Copyright (c) 2017 MIKAMI, Naoki
 //--------------------------------------------------------------
 
 #ifndef ADT7410_HPP
@@ -45,7 +45,7 @@
         // "STOP" を送らずにふたたび "START" を送る,つまりリスタート・コンディションに
         // する場合は,"repeated" を "true" にする
         void WriteSingleByte(char reg, bool repeated = false)
-        { i2c_.write(addr_, &reg, 1, repeated); };
+        { i2c_.write(ADDR_, &reg, 1, repeated); }
     
     private:
         // Register addresses
@@ -53,7 +53,7 @@
         static const uint8_t CONFIG_ = 0x03;   // Configuration
         static const uint8_t RESET_  = 0x2F;   // Software reset
         
-        const uint8_t addr_;    // left-justified 7-bit slave address of ADT7410
+        const uint8_t ADDR_;    // left-justified 7-bit slave address of ADT7410
         I2C i2c_;               // Object of I2C
     };
 }