光线传感器__CAPGO_KEEP_0__仓库
复制一个包含安装步骤和本插件全markdown指南的配置提示。
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 助手来安装插件。将 Capgo 技能添加到您的 AI 工具中,使用以下命令:
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.如果您更喜欢手动设置,请运行以下命令安装插件,并按照以下平台特定的说明进行操作:
bun add @capgo/capacitor-light-sensorbunx cap sync导入
标题:导入import { LightSensor } from '@capgo/capacitor-light-sensor';API概述
标题:API概述isAvailable
标题:isAvailable检查当前设备上的光感应器是否可用。 您应该始终在尝试使用感应器之前检查感应器的可用性。
import { LightSensor } from '@capgo/capacitor-light-sensor';
const { available } = await LightSensor.isAvailable();start
开始开始监听光线传感器更新。
这将在指定的间隔开始传感器测量。
使用 addListener 接收传感器数据。
import { LightSensor } from '@capgo/capacitor-light-sensor';
await LightSensor.start({ updateInterval: 500 });stop
停止停止监听光线传感器更新。 这将停止传感器并节省电池。
import { LightSensor } from '@capgo/capacitor-light-sensor';
await LightSensor.stop();checkPermissions
检查高采样率传感器的当前权限状态。
在 Android 12+ 上,HIGH_SAMPLING_RATE_SENSORS 权限是必需的
用于传感器更新间隔小于 200ms。复制到剪贴板
import { LightSensor } from '@capgo/capacitor-light-sensor';
const status = await LightSensor.checkPermissions();requestPermissions
复制到剪贴板复制到剪贴板
import { LightSensor } from '@capgo/capacitor-light-sensor';
const status = await LightSensor.requestPermissions();类型参考
类型参考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
光线传感器启动选项复制到剪贴板
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
光线传感器更新的回调函数复制到剪贴板
export type LightSensorCallback = (measurement: LightSensorMeasurement) => void;PermissionStatus
Section titled “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
Section titled “VersionResult”插件版本信息。
export interface VersionResult { /** * The current version of the plugin. * * @since 0.0.1 */ version: string;}LightSensorMeasurement
Section titled “LightSensorMeasurement”单个光感测量值。
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 来规划仪表板和API操作,请将其连接到 使用@capgo/capacitor-light-sensor 为native能力在使用@capgo/capacitor-light-sensor中 API概述 为API概述的实现细节 介绍 为介绍的实现细节 API 键 为 API 键的实现细节提供键,和 设备 为设备的实现细节提供键。