I’m looking for ways to display actual outdoor temperature on a thermostat LCD screen.
So far, I have tried association between a multi-sensor device and the thermostat.
I have limited success with this approach since the multi-sensor I’m using only supports 1 association group with a maximum of 5 NodeIDs. Another sensor I have is a non-listening device, therefore I’m having trouble getting the association to work properly.
My goal is to use the same outdoor sensor to send its temperature to 10-12 thermostats.
I was wondering if it’s possible to ask the hub for the outdoor temperature.
Any idea anyone?
P.S. Also, if any of you have good ways to perform association between a multi-sensor and a thermostat, feel free to share your ideas.
First, it depends on whether the thermostat itself allows for manipulation of its own display with outside data. Most don’t. There are a few industrial ones that do, but they come with their own remote sensors for just that purpose.
Anyway, let’s start with the basics. What’s the exact brand and model of the thermostat?
(Also…zwave direct association is typically limited to 5 devices. Just a protocol convention to reduce memory requirements. So you will run into that a lot.)
As far as weather information sources, you can use weather underground as a web service, lots of examples of that, just search the forums.
The thermostat is currently under development, and we are willing to have an external outdoor temperature to be pushed to our device. The source could be a weather app or a sensor.
We are currently investigating the possibility to use physical outdoor sensors.
The Keep Me Cozy II Smart App is to have another sensor to replace the embedded sensor in a thermostat.
This is not want I want to achieve.
The thermostat I’m developing has its own internal sensor to display the indoor temperature.
But on the LCD, there is a place to display the outdoor temperature. The thermostat will not come with an extra sensor. It will rely on the network to provide the outdoor temperature.
My questions are the following:
Can SmartThings hub send the Outdoor Temperature received from a Multi-Sensor device to a Z-Wave Thermostat Device on its network?
Can SmartThings hub send the Outdoor Temperature fetched from a weather service to a Z-Wave Thermostat Device on its network?
Well, yes, I may ask for the SmartApp coding if there is no other solution.
But it’s more of an integration question: is it possible to do what I describe?
Is is possible, in a SmartThings environment, one way or another, to have a temperature being sent from one device to another through the SmartThings hub?
Can the SmartThings hub receive a temperature from a device and transfer it to another device?
These are the answers I’m looking for.
I’ve already proven that it works using the direct association, but I’m limited to 5 NodeIDs and it does not involve the hub.
I don’t know how SmartThings is designed under the hood.
So far, I’ve seen many devices displayed altogether on the SmartThings mobile app, but I haven’t seen any interactions between the devices THROUGH the hub.
I’m looking for a way to tell SmartThings to take temperature from device A and send a temperature report to device B.
SmartThings is certified as a zwave controller for the Basic command set. That’s what’s “under the hood” for your situation. You’ve read the ST developer docs, right?
If your device is a zwave certified thermostat, you can send it a supported zwave command.
How you get the content of that command is up to you. Typically through a SmartApp, which is why this is a coding question.
The hub just passes on the messages, it doesn’t create them. So you more likely have a SmartApp that gets the temperature from Device A, then formats a message for the hub to pass to Device B. The hub just passes along the messages the SmartApps tell it to pass along.
Thank you @JDRoberts. I will pass along my questions into the Smart App forum.
1 Like
tgauchat
(ActionTiles.com co-founder Terry @ActionTiles; GitHub: @cosmicpuppy)
17
Gosh… Quite a long thread when the answer is YES.
Any Devices (“Things”) connected to your SmartThings Account (the hub is just a transmission layer and doesn’t do any processing) can interact with each other, but ONLY through one or more SmartApps. (Devices cannot (or should not) directly interact with each other.)
This includes reading the temperature value of a temperature sensing device and sending it to a value displaying device.
The other thread gives a two line example: subscribe to the sensing device, and execute a Comman, or perhaps a direct Attribute update Event, to the display Device.
Devices certainly can interact directly. Association in zwave, Binding in zigbee.
It’s just that’s not typically how you pass values like temperature.
(See what happens when you mix coding and device integration discussions! )
tgauchat
(ActionTiles.com co-founder Terry @ActionTiles; GitHub: @cosmicpuppy)
19
Yes, but I guess I mean within the specific context of within SmartThings.
I just don’t know what terminology to use to be accurate, but I was attempting to simplify the model.
SmartThings Device Handlers cannot (or should not, per Device Type certification guidelines) interconnect Devices directly with a few very limited exceptions.
Associations & Bindings are not SmartThings features or tools, as far as my definition is concerned.
See the last section on this page. It’s definitely part of the ST codebase, as it should be. (The Minimote, among other devices, wouldn’t work in SmartThings without it.).