Hello guys,
I made simple weather station using ESP8266 Wemos which can measure temperature, humidity, maximum wind speed, wind speed, rainfall…
All of them are triggered to Homey as float. Looks like this:
Homey.trigger("temperatureOut", (float)Temperature);
Homey.trigger("windSpeed", (float)windSpeed);
I created Virtual Device where I can “store” values…its working perfect with Temperature and Humidity but others don’t work. This is how looks my Virtual Device:
and here is example of flow which doesn’t works.
I get just “invalid capability” error. Any ideas? Thanks a lot.