naofireblade / homebridge-weather-plus

A comprehensive weather plugin for homebridge.
MIT License
311 stars 61 forks source link

This plugin generated a warning from the characteristic... #206

Open CyberChris79 opened 3 years ago

CyberChris79 commented 3 years ago

[7/5/2021, 1:09:45 PM] [homebridge-weather-plus] This plugin generated a warning from the characteristic 'Air Pressure': Characteristic not in required or optional characteristic section for service TemperatureSensor. Adding anyway.. See https://git.io/JtMGR for more info. [7/5/2021, 1:09:45 PM] [homebridge-weather-plus] This plugin generated a warning from the characteristic 'Current Relative Humidity': Characteristic not in required or optional characteristic section for service TemperatureSensor. Adding anyway.. See https://git.io/JtMGR for more info.

longtallsudo commented 1 year ago

I have had these two errors too ever since installing the plugin a year or so ago.

Current versions:

naofireblade commented 1 year ago

Could you post your plug-in config please?

longtallsudo commented 1 year ago

Could you post your plug-in config please?

"platforms": [ { "name": "Config", "port": 8581, "auth": "form", "theme": "auto", "tempUnits": "f", "lang": "auto", "platform": "config" }, { "units": "us", "interval": 30, "stations": [ { "nameNow": "XVille Weather", "service": "openweathermap", "key": "xxxxxxx", "locationGeo": [ 99.999, -99.9999 ], "language": "en", "compatibility": "eve", "conditionCategory": "simple", "now": true, "extraHumidity": false, "hidden": [ "Air Pressure", "Cloud Cover", "Condition", "Condition Category", "Dew Point", "Forecast Day", "Humidity", "Observation Station", "Observation Time", "Ozone", "Rain", "Rain 1h", "Rain Day", "Rain Chance", "Snow", "Solar Radiation", "Sunrise Time", "Sunset Time", "Temperature Min", "Temperature Apparent", "UV Index", "Visibility", "Wind Direction", "Wind Speed", "Wind Speed Max" ] } ], "platform": "WeatherPlus" } ]

Kentzo commented 7 months ago

Just got a similar warning with the following config:

            "platform": "WeatherPlus",
            "service": "openweathermap",
            "key": ...,
            "locationGeo": ...,
            "compatibility": "home",
            "conditionCategory": "detailed",
            "hidden": ["AirPressure", "DewPoint", "ForecastDay", "Ozone", "SnowBool", "SolarRadiation", "Visibility", "WindSpeedMax"],
            "interval": 10,
            "nameNow": "Outside",
            "units": "us"
nac6 commented 6 months ago

Just installed it today and also getting the same two warnings. The fix was to enable both Humidity and Pressure in the config.

dacarson commented 3 months ago

I have seen similar issues. They are warnings and the plugin works fine with them. Though it would be good to understand and correct them.

JayJay-Master commented 2 weeks ago

I have a similar Problem: [homebridge-weather-plus] This plugin generated a warning from the characteristic 'Current Ambient Light Level': Characteristic not in required or optional characteristic section for service TemperatureSensor. Adding anyway.. See https://homebridge.io/w/JtMGR for more info.

Also values for dew point are allways 0°C or -50°C (inside temperature).

        {
            "units": "si",
            "interval": 5,
            "stations": [
                {
                    "nameNow": "xxxxxxx",
                    "service": "openweathermap",
                    "key": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
                    "locationGeo": [
                        xx.xxxxx,
                        x.xxxxx
                    ],
                    "locationCity": "xxxxxxx.de",
                    "language": "de",
                    "compatibility": "both",
                    "forecast": [
                        "Today"
                    ],
                    "conditionCategory": "detailed",
                    "now": true,
                    "extraHumidity": true,
                    "thresholdAirPressure": 980,
                    "thresholdCloudCover": 75,
                    "thresholdUvIndex": 6,
                    "thresholdWindSpeed": 17
                }
            ],
            "_bridge": {
                "username": "xx:xx:xx:xx:xx:xx",
                "port": 47581
            },
            "platform": "WeatherPlus"
        },