はじめから始める
このプラグインのインストール手順とマークダウンガイドをコピーする
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-light-sensor`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/light-sensor/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
インストール
「インストール」のセクションAI-Assisted Setupを使用してプラグインをインストールできます。AIツールにCapgoスキルを追加するには、以下のコマンドを実行してください。
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins次に、以下のコマンドを使用してください:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-light-sensor` plugin in my project.Manual Setupを使用する場合は、以下のコマンドを実行してください。以下のプラットフォーム固有の指示に従ってください。
bun add @capgo/capacitor-light-sensorbunx cap syncインポート
「インポート」のセクションimport { LightSensor } from '@capgo/capacitor-light-sensor';「API オーバービュー」のセクション
Section titled “API Overview”isAvailable
protectedTokensデバイス上の光センサーが利用可能であるかどうかを確認してください。 常にセンサーの利用可能性を確認する必要があります。
import { LightSensor } from '@capgo/capacitor-light-sensor';
const { available } = await LightSensor.isAvailable();start
セクション「start」光センサー更新を開始する。
この操作により、指定された間隔でセンサー測定を開始します。
addListener を使用して、センサー データを受信します。
import { LightSensor } from '@capgo/capacitor-light-sensor';
await LightSensor.start({ updateInterval: 500 });stop
セクション「stop」光センサー更新を停止する。 この操作により、センサーを停止し、バッテリーを節約します。
import { LightSensor } from '@capgo/capacitor-light-sensor';
await LightSensor.stop();checkPermissions
セクション「checkPermissions」高サンプリングレートセンサーの現在の許可状態を確認する。 Android 12+ では、センサー更新間隔が 200ms 未満の場合、HIGH_SAMPLING_RATE_SENSORS 許可が必要です。
import { LightSensor } from '@capgo/capacitor-light-sensor';
const status = await LightSensor.checkPermissions();requestPermissions
Section titled “requestPermissions”高サンプリングレートセンサーの許可を求めます。 Android 12+では、このHIGH_SAMPLING_RATE_SENSORS許可を要求します。
import { LightSensor } from '@capgo/capacitor-light-sensor';
const status = await LightSensor.requestPermissions();Type Reference
Section titled “Type Reference”IsAvailableResult
Section titled “IsAvailableResult”センサが利用可能であるかどうかの結果を示します。
export interface IsAvailableResult { /** * Whether the light sensor is available on this device. * Always false on iOS as the light sensor API is not available. * * @since 0.0.1 */ available: boolean;}StartOptions
Section titled “StartOptions”光センサリスナーの開始オプション
export interface StartOptions { /** * The desired interval between sensor updates in milliseconds. * On Android 12+, there's a minimum interval of 200ms unless the app * has the HIGH_SAMPLING_RATE_SENSORS permission. * * @default 200 * @since 0.0.1 */ updateInterval?: number;}LightSensorCallback
Section titled “LightSensorCallback”光センサーの更新のためのコールバック関数。
export type LightSensorCallback = (measurement: LightSensorMeasurement) => void;PermissionStatus
「許可状態」セクション許可の要求または確認の結果。
export interface PermissionStatus { /** * Whether the high sampling rate sensor permission is granted. * On Android 12+, this permission is required for update intervals below 200ms. * * @since 0.0.1 */ highSamplingRate: 'prompt' | 'prompt-with-rationale' | 'granted' | 'denied';}VersionResult
「バージョン結果」セクションプラグインのバージョン情報。
export interface VersionResult { /** * The current version of the plugin. * * @since 0.0.1 */ version: string;}LightSensorMeasurement
「光センサーメッサージメント」セクション1つの光センサーメッサージメント。
export interface LightSensorMeasurement { /** * Ambient light level in lux (lx). * * @since 0.0.1 */ illuminance: number;
/** * Timestamp of the measurement in seconds since epoch. * * @since 0.0.1 */ timestamp: number;}真実の源
「ソース オブ トゥルース」このページはプラグインの src/definitions.tsリランするsyncをpublic APIがアップストリームで変更されたときに。
「Getting Started」から続けて
「Getting Started」から続けて「Getting Started」を使用している場合 「Getting Started」 「Getting Started」を使用してダッシュボードとAPIの作業を計画する場合、APIを 「@capgo/capacitor-light-sensor」 「@capgo/capacitor-light-sensor」で使用するネイティブ機能のために「@capgo/capacitor-light-sensor」 「API」 「API」の実装詳細のために「API」 導入 導入の実装詳細のために API キー API キーの実装詳細のために、 デバイス デバイスの実装詳細のために