원클릭으로
environmental-skill
Get Android environmental sensor data - temperature, humidity, pressure, and ambient light level.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Get Android environmental sensor data - temperature, humidity, pressure, and ambient light level.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | environmental-skill |
| description | Get Android environmental sensor data - temperature, humidity, pressure, and ambient light level. |
| allowed-tools | environmental_sensors |
| metadata | {"author":"opencompany","version":"1.0","category":"android"} |
Access environmental sensors on Android device.
This skill provides instructions for the Environmental Sensors tool node. Connect the Environmental Sensors node to Zeenie's input-tools handle to enable environmental sensing.
Get temperature, humidity, pressure, and light data.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | "status" - Get sensor data |
Get environmental data:
{
"action": "status"
}
{
"success": true,
"service": "environmental_sensors",
"action": "status",
"data": {
"temperature": 23.5,
"humidity": 45.0,
"pressure": 1013.25,
"light": 350.0,
"sensors_available": {
"temperature": true,
"humidity": true,
"pressure": true,
"light": true
}
}
}
| Field | Type | Unit | Description |
|---|---|---|---|
| temperature | float | Celsius | Ambient temperature |
| humidity | float | % | Relative humidity |
| pressure | float | hPa | Atmospheric pressure |
| light | float | lux | Ambient light level |
| sensors_available | object | - | Which sensors exist |
Not all devices have all sensors. Check sensors_available to see what's supported.
| Lux | Condition |
|---|---|
| < 50 | Dark/dim room |
| 50-300 | Indoor lighting |
| 300-1000 | Bright indoor |
| 1000-10000 | Overcast outdoor |
| 10000-100000 | Direct sunlight |
| hPa | Weather |
|---|---|
| < 1000 | Low pressure (storms) |
| 1000-1020 | Normal |
| > 1020 | High pressure (clear) |
| Use Case | Sensor | Description |
|---|---|---|
| Weather tracking | pressure | Monitor local pressure |
| Humidity alert | humidity | Warn on high/low humidity |
| Light-based actions | light | Trigger on dark/bright |
| Temperature monitoring | temperature | Track ambient temp |
input-tools handle