alexa-samples / alexa-smarthome

Resources for Alexa Smart Home developers.
https://alexa.design/smarthome
Other
682 stars 336 forks source link

Not able to control temperature in AC using thermostatController #96

Closed sarojk562 closed 5 years ago

sarojk562 commented 5 years ago
              "type": "AlexaInterface",
              "interface": "Alexa",
              "version": "3"
            },
            {
              "type": "AlexaInterface",
              "interface": "Alexa.EndpointHealth",
              "version": "3",
              "properties": {
                "supported": [
                  {
                    "name": "connectivity"
                  }
                ],
                "proactivelyReported": true,
                "retrievable": true
              }
            },
            {
              "type": "AlexaInterface",
              "interface": "Alexa.PowerController",
              "version": "3",
              "properties": {
                "supported": [
                  {
                    "name": "powerState"
                  }
                ],
                "proactivelyReported": true,
                "retrievable": true
              }
            },
            {
              "type": "AlexaInterface",
              "interface": "Alexa.ThermostatController",
              "version": "3",
              "properties": {
                "supported": [{
                  "name": "targetSetpoint"
                  },
                  {
                    "name": "lowerSetpoint"
                  },
                  {
                    "name": "upperSetpoint"
                  },
                  {
                    "name": "thermostatMode"
                  }
                ],
                "proactivelyReported": true,
                "retrievable": true
              },
              "configuration": {
                "supportsScheduling": false,
                "supportedModes": [
                  "HEAT",
                  "COOL",
                  "AUTO"
                ]
              }
            }
sarojk562 commented 5 years ago

Hi all, I am trying to control turn on and turn off along with set temperature at single point using targetSetPoint namespace. But unable to even hit the api. Any suggestions and leads would be helpful.

Thanks, SarojK

sarojk562 commented 5 years ago

My bad, didn't write the controller in my lambda function. Closing the issue.