← Documents Documentation/hwmon/hih6130.rst GitHub 원문 ↗

Linux 6.18.37 · Hardware Monitoring

Kernel driver hih6130

HIH-6130·6131의 I2C humidity·temperature 입력입니다.

Source pathDocumentation/hwmon/hih6130.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약·해설

hih6130.rst:1-45

기본 주소 0x27의 SO8 환경 sensor를 명시적으로 instantiate합니다.

문서 개요
항목
SourceDocumentation/hwmon/hih6130.rst
분량45 source lines
I2C0x27
측정Temperature·humidity

원문 분량과 핵심 범위입니다.

핵심 흐름
Board 정보 작성I2C client 생성환경 값 읽기미지원 기능 제외

장치 동작의 기본 순서입니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 Kernel driver hih6130
2 =====================
3
4 Supported chips:
5
6 * Honeywell HIH-6130 / HIH-6131
7
8 Prefix: 'hih6130'
9
10 Addresses scanned: none
11
12 Datasheet: Publicly available at the Honeywell website
13
14 http://sensing.honeywell.com/index.php?ci_id=3106&la_id=1&defId=44872
15
16 Author:
17 Iain Paton <ipaton0@gmail.com>
18
19 Description
20 -----------
21
22 The HIH-6130 & HIH-6131 are humidity and temperature sensors in a SO8 package.
23 The difference between the two devices is that the HIH-6131 has a condensation
24 filter.
25
26 The devices communicate with the I2C protocol. All sensors are set to the same
27 I2C address 0x27 by default, so an entry with I2C_BOARD_INFO("hih6130", 0x27)
28 can be used in the board setup code.
29
30 Please see Documentation/i2c/instantiating-devices.rst for details on how to
31 instantiate I2C devices.
32
33 sysfs-Interface
34 ---------------
35
36 temp1_input
37 temperature input
38
39 humidity1_input
40 humidity input
41
42 Notes
43 -----
44
45 Command mode and alarms are not currently supported.
46

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

HIH-6130·HIH-6131 지원

1-20

드라이버는 Honeywell HIH-6130과 HIH-6131을 prefix `hih6130`으로 지원합니다. 주소를 scan하지 않으며 datasheet는 Honeywell website의 원문 URL에서 공개됩니다. 저자는 Iain Paton입니다.

HIH6130 metadata
항목
ChipHIH-6130, HIH-6131
Prefixhih6130
주소 scan없음
PackageSO8

두 humidity·temperature sensor의 공통 binding입니다.

HIH6130 등록
Board I2C 정보 작성hih6130 type 지정0x27 address 등록Temperature·humidity 게시

Board가 I2C address를 지정해 두 sensor 값을 엽니다.

Kernel driver hih6130
=====================

Supported chips:

  * Honeywell HIH-6130 / HIH-6131

    Prefix: 'hih6130'

    Addresses scanned: none

    Datasheet: Publicly available at the Honeywell website

        http://sensing.honeywell.com/index.php?ci_id=3106&la_id=1&defId=44872

Author:
  Iain Paton <ipaton0@gmail.com>

Description
-----------

Condensation filter와 I2C 등록

21-32

HIH-6130과 HIH-6131은 SO8 package의 humidity·temperature sensor입니다. 두 장치의 차이는 HIH-6131에 condensation filter가 있다는 점입니다.

장치는 I2C protocol로 통신하며 모든 sensor의 기본 주소는 `0x27`입니다. Board setup code에서 `I2C_BOARD_INFO("hih6130", 0x27)` entry를 사용할 수 있습니다. I2C 장치 instantiate 방법은 `Documentation/i2c/instantiating-devices.rst`를 참조합니다.

HIH variant
ChipCondensation filter기본 I2C
HIH-6130없음0x27
HIH-6131있음0x27

Filter 차이 외에는 같은 driver interface를 사용합니다.

명시적 instantiate
I2C bus 선택I2C_BOARD_INFO 작성Address 0x27 지정Driver binding

Scan 대신 board 정보로 client를 만듭니다.


The HIH-6130 & HIH-6131 are humidity and temperature sensors in a SO8 package.
The difference between the two devices is that the HIH-6131 has a condensation
filter.

The devices communicate with the I2C protocol. All sensors are set to the same
I2C address 0x27 by default, so an entry with I2C_BOARD_INFO("hih6130", 0x27)
can be used in the board setup code.

Please see Documentation/i2c/instantiating-devices.rst for details on how to
instantiate I2C devices.

Temperature·humidity sysfs와 제한

33-45

Sysfs의 `temp1_input`은 temperature input이고 `humidity1_input`은 humidity input입니다.

Command mode와 alarm은 현재 지원하지 않습니다.

HIH6130 sysfs
항목상태
temp1_inputTemperature input
humidity1_inputHumidity input
Command mode미지원
Alarms미지원

현재 제공하는 두 측정값과 미지원 기능입니다.

Sensor read
Measurement triggerTemperature 읽기Humidity 읽기Command·alarm 제외

두 환경 값을 읽되 command·alarm 기능은 사용하지 않습니다.

sysfs-Interface
---------------

temp1_input
        temperature input

humidity1_input
        humidity input

Notes
-----

Command mode and alarms are not currently supported.