NovaCloud-EN
  1. Program widget examples
NovaCloud-EN
  • API Access Guide
  • Common HTTP Status Codes
  • VNNOX
    • Player
      • Player Management
        • Obtain player list
      • Obtaining Player Status
        • Obtaining Basic Player Information
        • Obtaining Player Configuration Status
    • Solutions
      • Emergency Insertion
        • Single-Page Emergency Insertion Solutions
        • Canceling Emergency Insertion Solutions
      • Program widget examples
        • Hand-drawn clock widget
        • Weather widget
        • Environmental Monitoring widget
      • Common Solutions
        POST
      • Offline Export
        POST
      • Over-specification Detection Switching
        POST
      • Program Over-specification Detection
        POST
    • Real-Time Control
      • NTP Time Synchronization
      • Synchronous playback
      • Brightness Adjustment
      • Screenshots
      • Volume Adjustment
      • Video Source Switching
      • Screen Status
      • Restart Players
      • Screen Power
    • Scheduled Control
      • Scheduled Screen Status
      • Scheduled Restart Players
      • Scheduled Volume Adjustment
      • Scheduled Brightness Adjustment
      • Scheduled Video Source Switching
    • Logs
      • Play Logs
        • Batch Searching for Play Log Overviews
        • Batch Searching for Play Log Details
        • Searching for the Play Log Detail of a Single Player
        • Searching for the Play Log Overview of a Single Player
      • Obtaining Control Command Execution Logs
    • Notifications
      • Video Source Change Notifications
      • Solution Change Notifications
  • VNNOXCare
    • Notes
    • Device Status Monitoring
      • Receiving Card
        • Topology Information
        • Basic Information
        • Monitoring Information
        • Alarm Information
      • Screen
        • Screen list
        • Screen detail
        • Monitoring Information
      • Master Controller
        • Basic Information
        • Alarm Information
        • Operating Parameters Information
      • Smart Module
        • Monitoring Information
        • Alarm Infomation
      • Input Source
        • Monitor Infomation
      • Module/Cabinet
        • Monitoring Information
      • Monitoring Card
        • Monitoring Information
      • Camera
        • Camera configuration
        • The camera monitors the aggregated information
    • Brightness Log
      • Brightness History
  • Others
    • Third-Party System Authorization
      • Obtaining User List
      • Obtaining Login URL
  1. Program widget examples

Environmental Monitoring widget

💡
This page describes the dedicated data structure and provide an example for API
Common Solutions when widget type = RT_MEDIA
Player Common Solution

{
    "playerIds": [
        "533d7c3151392500a57ba8b0d06436b4"
    ],
    "schedule": {
        "startDate": "2020-04-11",
        "endDate": "2060-05-12",
        "plans": [
            {
                "weekDays": [
                    1,
                    2,
                    3,
                    4,
                    5
                ],
                "startTime": "00:00:00",
                "endTime": "22:00:00"
            },
            {
                "weekDays": [
                    0,
                    6
                ],
                "startTime": "00:33:00",
                "endTime": "22:00:00"
            }
        ]
    },
    "pages": [
        {
            "name": "a-page",
            "widgets": [
                {
                    "zIndex": 1,
                    "type": "RT_MEDIA",
                    "fontFamily": "SimSun",
                    "labelFontSize": 18,
                    "valueFontSize": 18,
                    "unitFontSize": 18,
                    "bold": true,
                    "italic": true,
                    "underline": true,
                    "textColor": "#F90840",
                    "refreshPeriod": 600000,
                    "style": 1,
                    "playMode": "STATIC",
                    "seedByPixelEnable": false,
                    "speedGear": 3,
                    "speedPixel": 160,
                    "customLabel": {
                        "NOI": {
                            "name": "NAIs",
                            "enable": true,
                            "unit": "ions/cm³"
                        },
                        "coII": {
                            "name": "CO2",
                            "enable": true,
                            "unit": "ppm"
                        },
                        "UVR": {
                            "name": "UV radiation",
                            "enable": true,
                            "unit": "nm"
                        },
                        "airHumidity": {
                            "name": "Air humidity",
                            "enable": true,
                            "unit": "%RH"
                        },
                        "airPressure": {
                            "name": "Air pressure",
                            "enable": true,
                            "type": 0,
                            "unit": "bar"
                        },
                        "ambiantLight": {
                            "name": "Ambient Light",
                            "enable": true,
                            "unit": "Lux"
                        },
                        "noise": {
                            "name": "Noise",
                            "enable": true,
                            "unit": "db"
                        },
                        "pmC": {
                            "name": "PM100",
                            "enable": true,
                            "unit": "μg/m³"
                        },
                        "pmIIV": {
                            "name": "PM2.5",
                            "enable": true,
                            "unit": "μg/m³"
                        },
                        "pmX": {
                            "name": "PM10",
                            "enable": true,
                            "unit": "μg/m³"
                        },
                        "rainfall": {
                            "name": "Rainfall",
                            "enable": true,
                            "unit": "mm"
                        },
                        "snowfall": {
                            "name": "Snowfall",
                            "enable": true,
                            "unit": "mm"
                        },
                        "soilMoisture": {
                            "name": "Soil moisture",
                            "enable": true,
                            "unit": "rh"
                        },
                        "soilPH": {
                            "name": "Soil pH",
                            "enable": true,
                            "unit": "ph"
                        },
                        "soilTemperature": {
                            "name": "Soil temperature",
                            "enable": true,
                            "type": 0,
                            "unit": "℃"
                        },
                        "sunshineDuration": {
                            "name": "Sunshine duration",
                            "enable": true,
                            "unit": "W/m²"
                        },
                        "temperature": {
                            "name": "Temperature",
                            "enable": true,
                            "type": 0,
                            "unit": "C°",
                            "tempCompensate": 0
                        },
                        "windDirection": {
                            "name": "Wind direction",
                            "enable": true,
                            "templates": [
                                "North Wind",
                                "Northeast Wind",
                                "East Wind",
                                "Southeast Wind",
                                "South Wind",
                                "Southwest Wind",
                                "West Wind",
                                "Northwest Wind
"
                            ]
                        },
                        "windSpeed": {
                            "name": "Wind Speed",
                            "enable": true,
                            "type": 0,
                            "unit": "km/h"
                        }
                    },
                    "duration": 10000,
                    "layout": {
                        "x": "0%",
                        "y": "0%",
                        "width": "50%",
                        "height": "50%"
                    }
                }
            ]
        }
    ]
}
Modified at 2025-05-13 02:19:17
Previous
Weather widget
Next
Common Solutions
Built with