Yanıtlar:
Bu talimatlara bakın .
Oluşturma bir AWS geliştirici hesabı ve AWS hesabı.
AWS konsolunda
İşte bir python betiği. Değişim modify_state
1 veya 0 olması
import urllib2
def modify_state( port, state, token):
url = 'https://us.wio.seeed.io/v1/node/%s/onoff/%s?access_token=%s' % (port, state, token)
req = urllib2.Request(url,'')
response = urllib2.urlopen(req)
def lambda_handler(event, context):
modify_state('GroveRelayD0', <STATE:0:1>, '<APIKEY')
# TODO implement
return {
'version': '1.0',
'sessionAttributes': {},
'response': {
'outputSpeech': {
'type': 'PlainText',
'text': '<whatever whitty remark alexa should say>'
},
'card': {
'type': 'Simple',
'title': "SessionSpeechlet - foo",
'content': "SessionSpeechlet - bar"
},
'reprompt': {
'outputSpeech': {
'type': 'PlainText',
'text': 'I know right'
}
},
'shouldEndSession': True
}
}
Geliştirici konsolunda
Son 2 adımı atlayabilirsiniz. Beceri geliştirme modunda çalışır ve sadece siz erişebilirsiniz. Son 2 adımı ancak yeteneğinizi dünyadaki herhangi biriyle paylaşmak istiyorsanız tamamlayın.