← Documents Documentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Panasonic AMG88xx Grid-Eye

8×8 thermal datapoint를 10Hz로 기록하는 Grid-Eye sensor입니다.

Source pathDocumentation/devicetree/bindings/media/i2c/panasonic,amg88xx.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

panasonic,amg88xx.txt:1-19

AMG88xx의 thermal frame과 I2C 주소를 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * Panasonic AMG88xx
2
3 The Panasonic family of AMG88xx Grid-Eye sensors allow recording
4 8x8 10Hz video which consists of thermal datapoints
5
6 Required Properties:
7 - compatible : Must be "panasonic,amg88xx"
8 - reg : i2c address of the device
9
10 Example:
11
12 i2c0@1c22000 {
13 ...
14 amg88xx@69 {
15 compatible = "panasonic,amg88xx";
16 reg = <0x69>;
17 };
18 ...
19 };
20

3. 한국어 전문 번역

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

AMG88xx Grid-Eye thermal sensor

1-9

Panasonic AMG88xx Grid-Eye sensor family는 thermal datapoint로 이루어진 8×8 해상도, 10Hz video를 기록합니다. 필수 `compatible`은 `panasonic,amg88xx`, `reg`는 장치 I2C address입니다.

AMG88xx thermal frame
AMG88xx Grid-Eye8 × 8 sensor array
64 thermal datapoints한 frame
10Hz samplingThermal video

64개 thermal datapoint를 초당 10 frame으로 읽습니다.

I2C 주소 0x69 예제

10-19

예제는 I2C bus 아래 주소 `0x69`에 `panasonic,amg88xx` 장치를 선언합니다.

i2c0@1c22000 {
        ...
        amg88xx@69 {
                compatible = "panasonic,amg88xx";
                reg = <0x69>;
        };
        ...
};