Thermostats
A thermostat on the Texture Platform is a cloud-connected smart thermostat. We support a variety of thermostat manufacturers and models, and are always adding more.
Supported Thermostats
For the list of vehicle models we currently support on the Texture Platform, see the Supported Devices page. We are always adding support for more so if you see a smart thermostat that you would like to see on platform, please contact us and let us know.
Thermostat Data Model
Below is a sample payload from a smart thermostat on the Texture Platform. This happens to be an Ecobee Smart Thermostat Premium:
{
"id": "cllgn0u4r000008l7eazybfbo",
"name": "string",
"serialNumber": "b1143000-69ac-481f-9bef-4bfd96198786",
"referenceId": "2952bc94-0273-4087-830b-d0ab2bece1e7",
"manufacturer": "ecobee",
"type": "thermostat",
"model": "nikeSmart",
"modelYear": 2021,
"state": {
"ambientTemperature": 72.3,
"operatingMode": "auto",
"heatTarget": 72.5,
"coolTarget": 75.5,
"fanMode": "auto"
},
"location": {
"address": {
"streetOne": "123 Main St",
"streetTwo": "Apt 101",
"city": "Beverly Hills",
"state": "CA",
"postalCode": "90210",
"country": "USA"
},
"coordinates": {
"latitude": 34.1,
"longitude": -118.3
}
},
"availableCommands": [
{
"slug": "thermostat:set-operating-mode",
"description": "Sets the operating mode of the thermostat."
},
{
"slug": "thermostat:set-fan-mode",
"description": "Sets the fan mode of the thermostat."
}
],
"tags": [
"bedroom",
"upstairs"
],
"createdAt": "2024-04-01T00:00:00.000Z",
"updatedAt": "2024-04-01T00:00:00.000Z"
}
First I'll break down all of the fields in the root of the thermostat object:
id
- a unique identifier that Texture assigns to the thermostattype
- the type of device, in this case, athermostat
serialNumber
- the serial number of the devicemanufacturer
- the manufacturer of the devicemodel
- the model of the deviceavailableCommands
- the commands that are available to send to the thermostatstate
- the current state of the thermostat (see below for details)location
- the location of the thermostataddress
- the address of the thermostatcoordinates
- the coordinates (latitude/longitude) of the thermostat
name
- the name of the thermostat that the user has assigned with the manufacturer, if any (optional)tags
- the tags that are associated with the device that you provided during the connection process to help group devices (optional)referenceId
- the customer reference ID of the thermostat, an identifier in your system that you provide to identify this customer on Texture
Next, I'll break down each field in the state
object in detail below:
id
- a unique identifier that Texture assigns to the state updateambientTemperature
- the current ambient temperature in degrees FahrenheitoperatingMode
- the current operating mode of the thermostat. Possible values areoff
,heat
,cool
,auto
,eco
,unknown
indicating the thermostat operating modeheatTarget
- the current heat target temperature in degrees FahrenheitcoolTarget
- the current cool target temperature in degrees FahrenheitfanMode
- the current fan mode of the thermostat. Possible values areauto
,on
,off
,circulate
,unknown
indicating the current mode of the fancreatedAt
- the date the state update was created in ISO 8601 format
Thermostat Specifics
Below are some more in-depth descriptions of concepts which are specific to smart thermostats.