JAJSGC5D February   2011  – December 2018 TMP103

PRODUCTION DATA.  

  1. 特長
  2. アプリケーション
  3. 概要
    1.     Device Images
      1.      代表的なアプリケーションの図
  4. 改訂履歴
  5. Pin Configuration and Functions
    1.     Pin Functions
  6. Specifications
    1. 6.1 Absolute Maximum Ratings
    2. 6.2 ESD Ratings
    3. 6.3 Recommended Operating Conditions
    4. 6.4 Thermal Information
    5. 6.5 Electrical Characteristics
    6. 6.6 Timing Requirements
    7. 6.7 Typical Characteristics
  7. Detailed Description
    1. 7.1 Overview
    2. 7.2 Functional Block Diagram
    3. 7.3 Feature Description
    4. 7.4 Device Functional Modes
      1. 7.4.1 Shutdown Mode
      2. 7.4.2 One-Shot Mode
      3. 7.4.3 Continuous Conversion Mode
    5. 7.5 Programming
      1. 7.5.1  Temperature Watchdog Function
      2. 7.5.2  Conversion Rate
      3. 7.5.3  Shutdown Mode (M1 = 0, M0 = 0)
      4. 7.5.4  One-Shot (M1 = 0, M0 = 1)
      5. 7.5.5  Continuous Conversion Mode (M1 = 1)
      6. 7.5.6  Bus Overview
      7. 7.5.7  Serial Interface
      8. 7.5.8  Serial Bus Address
      9. 7.5.9  Writing and Reading Operation
      10. 7.5.10 Slave Mode Operations
        1. 7.5.10.1 Slave Receiver Mode
        2. 7.5.10.2 Slave Transmitter Mode
      11. 7.5.11 General Call
      12. 7.5.12 High-Speed (Hs) Mode
      13. 7.5.13 Timeout Function
      14. 7.5.14 Multiple Device Access
        1. 7.5.14.1 Multiple Device Access Write
        2. 7.5.14.2 Multiple Device Access Read
      15. 7.5.15 NOISE
    6. 7.6 Register Maps
      1. 7.6.1 Pointer Register
      2. 7.6.2 Temperature Register
      3. 7.6.3 Configuration Register
      4. 7.6.4 Temperature Limit Registers
  8. Application and Implementation
    1. 8.1 Application Information
    2. 8.2 Typical Application
      1. 8.2.1 Design Requirements
      2. 8.2.2 Detailed Design Procedure
      3. 8.2.3 Application Curve
  9. Power Supply Recommendations
  10. 10Layout
    1. 10.1 Layout Guidelines
    2. 10.2 Layout Example
  11. 11デバイスおよびドキュメントのサポート
    1. 11.1 ドキュメントの更新通知を受け取る方法
    2. 11.2 コミュニティ・リソース
    3. 11.3 商標
    4. 11.4 静電気放電に関する注意事項
    5. 11.5 Glossary
  12. 12メカニカル、パッケージ、および注文情報

パッケージ・オプション

デバイスごとのパッケージ図は、PDF版データシートをご参照ください。

メカニカル・データ(パッケージ|ピン)
  • YFF|4
サーマルパッド・メカニカル・データ
発注情報

Temperature Register

The Temperature Register of the TMP103 device is configured as an eight-bit, read-only register that stores the output of the most recent conversion. A single byte must be read to obtain data, and is described in Table 5. The data format for temperature is summarized in Table 6. One LSB equals 1°C.

Table 5. Temperature Register

D7 D6 D5 D4 D3 D2 D1 D0
T7 T6 T5 T4 T3 T2 T1 T0

Negative numbers are represented in binary twos complement format. Following power up or reset, the Temperature Register reads 0°C until the first conversion is complete.

Table 6. 8-Bit Temperature Data Format(1)

TEMPERATURE (°C) DIGITAL OUTPUT (BINARY) HEX
128 0111 1111 7F
127 0111 1111 7F
100 0110 0100 64
80 0101 0000 50
75 0100 1011 4B
50 0011 0010 32
25 0001 1001 19
0 0000 0000 00
–1 1111 1111 FF
–25 1110 0111 E7
–55 1100 1001 C9
The resolution for the ADC is 1°C/count, where count is equal to the digital output of the ADC.

For positive temperatures (for example, 50°C):

Twos complement is not performed on positive numbers. Therefore, simply convert the number to binary code, left-justified format. Denote a positive number with MSB = 0.

Example: (50°C)/(1°C/count) = 50 = 32h = 0011 0010

For negative temperatures (for example, –25°C):

Generate the twos complement of a negative number by complementing the absolute value binary number and adding 1. Denote a negative number with MSB = 1.

Example: (|–25°C|)/(1°C/count) = 25 = 19h = 0001 1001

Twos complement format: 1110 0110 + 1 = 1110 0111