요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
.. SPDX-License-Identifier: GPL-2.0-or-later
Kernel driver HTU31
====================
Supported chips:
* Measurement Specialties HTU31
Prefix: 'htu31'
Addresses scanned: -
Datasheet: Publicly available from https://www.te.com/en/product-CAT-HSC0007.html
Author:
- Andrei Lalaev <andrey.lalaev@gmail.com>
Description
-----------
HTU31 is a humidity and temperature sensor.
Supported temperature range is from -40 to 125 degrees Celsius.
Communication with the device is performed via I2C protocol. Sensor's default address
is 0x40.
sysfs-Interface
---------------
=================== =================
temp1_input: temperature input
humidity1_input: humidity input
heater_enable: heater control
=================== =================
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Measurement Specialties HTU31 지원
1-21GPL-2.0-or-later 드라이버 `HTU31`은 Measurement Specialties HTU31을 prefix `htu31`로 지원합니다. 주소 scan은 하지 않으며 datasheet는 TE product page에서 공개됩니다. 저자는 Andrei Lalaev입니다.
환경 sensor의 기본 driver 정보입니다.
명시적으로 만든 I2C client에 sensor와 heater를 게시합니다.
.. SPDX-License-Identifier: GPL-2.0-or-later
Kernel driver HTU31
====================
Supported chips:
* Measurement Specialties HTU31
Prefix: 'htu31'
Addresses scanned: -
Datasheet: Publicly available from https://www.te.com/en/product-CAT-HSC0007.html
Author:
- Andrei Lalaev <andrey.lalaev@gmail.com>
Description
-----------
온도 범위와 I2C 주소
22-29HTU31은 humidity·temperature sensor입니다. 지원 temperature range는 -40~125 degrees Celsius입니다.
장치 통신은 I2C protocol로 수행하며 sensor 기본 주소는 `0x40`입니다.
동작 범위와 bus address입니다.
I2C에서 환경 값을 읽고 필요 시 heater를 제어합니다.
HTU31 is a humidity and temperature sensor.
Supported temperature range is from -40 to 125 degrees Celsius.
Communication with the device is performed via I2C protocol. Sensor's default address
is 0x40.
HTU31 sysfs와 heater
30-37`temp1_input`은 temperature input, `humidity1_input`은 humidity input, `heater_enable`은 heater control입니다.
원문의 ASCII 표를 측정·제어 항목으로 구조화했습니다.
측정 상태에 따라 heater를 켜고 환경 값을 다시 확인합니다.
sysfs-Interface
---------------
=================== =================
temp1_input: temperature input
humidity1_input: humidity input
heater_enable: heater control
=================== =================
요약·해설
htu31.rst:1-37기본 주소 0x40의 환경 sensor와 내장 heater를 hwmon으로 제어합니다.
원문 분량과 핵심 범위입니다.
장치 동작의 기본 순서입니다.