Getting Started
このプラグインのインストール手順とマークダウンガイドを含むセットアップのコピー用テキストをコピーします。
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.
Install
「インストール」のセクションAI-Assisted セットアップを使用してプラグインをインストールできます。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 syncImport
「Import」セクションimport { LightSensor } from '@capgo/capacitor-light-sensor';APIの概要
「APIの概要」セクションisAvailable
「isAvailable」セクション現在のデバイスで光センサが利用可能かどうかを確認してください。 センサを使用する前に常にセンサの利用可能性を確認してください。
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.再度、パブリック API がアップストリームで変更されたときは、再度同期を実行してください。
「Getting Started」から続けてください。
「Getting Started」から続けてください。あなたが「Getting Started」を使用してダッシュボードと __CAPGO_KEEP_0__ の作業を計画している場合、__CAPGO_KEEP_0__ を接続してください。 「@__CAPGO_KEEP_0__/__CAPGO_KEEP_1__-light-sensor」を使用して、@__CAPGO_KEEP_0__/__CAPGO_KEEP_1__-light-sensor のネイティブ機能を実装してください。 「@API/__CAPGO_KEEP_1__-light-sensor」 「@capgo/capacitor-light-sensor」のネイティブ機能の実装については、「capgo Overview」を参照してください。 for the native capability in Using @capgo/capacitor-light-sensor, 「API Overview」の実装詳細については、「API Overview」を参照してください。 「API Overview」 導入 導入の実装詳細について API キー API キーの実装詳細について デバイス デバイスの実装詳細について