├── .gitattributes ├── .gitignore ├── AWS ├── AWSClient.cpp ├── AWSClient.h ├── AWSClient2.cpp ├── AWSClient2.h ├── AWSFoundationalTypes.cpp ├── AWSFoundationalTypes.h ├── AmazonDynamoDBClient.cpp ├── AmazonDynamoDBClient.h ├── AmazonSNSClient.cpp ├── AmazonSNSClient.h ├── DeviceIndependentInterfaces.cpp ├── DeviceIndependentInterfaces.h ├── Esp8266AWSImplementations.cpp ├── Esp8266AWSImplementations.h ├── Utils.cpp ├── Utils.h ├── jsmn.c ├── jsmn.h ├── keys.c ├── keys.h ├── sha256.cpp └── sha256.h ├── AWS_Get-SetDemo └── AWS_Get-SetDemo.ino └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/.gitignore -------------------------------------------------------------------------------- /AWS/AWSClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AWSClient.cpp -------------------------------------------------------------------------------- /AWS/AWSClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AWSClient.h -------------------------------------------------------------------------------- /AWS/AWSClient2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AWSClient2.cpp -------------------------------------------------------------------------------- /AWS/AWSClient2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AWSClient2.h -------------------------------------------------------------------------------- /AWS/AWSFoundationalTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AWSFoundationalTypes.cpp -------------------------------------------------------------------------------- /AWS/AWSFoundationalTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AWSFoundationalTypes.h -------------------------------------------------------------------------------- /AWS/AmazonDynamoDBClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AmazonDynamoDBClient.cpp -------------------------------------------------------------------------------- /AWS/AmazonDynamoDBClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AmazonDynamoDBClient.h -------------------------------------------------------------------------------- /AWS/AmazonSNSClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AmazonSNSClient.cpp -------------------------------------------------------------------------------- /AWS/AmazonSNSClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/AmazonSNSClient.h -------------------------------------------------------------------------------- /AWS/DeviceIndependentInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/DeviceIndependentInterfaces.cpp -------------------------------------------------------------------------------- /AWS/DeviceIndependentInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/DeviceIndependentInterfaces.h -------------------------------------------------------------------------------- /AWS/Esp8266AWSImplementations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/Esp8266AWSImplementations.cpp -------------------------------------------------------------------------------- /AWS/Esp8266AWSImplementations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/Esp8266AWSImplementations.h -------------------------------------------------------------------------------- /AWS/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/Utils.cpp -------------------------------------------------------------------------------- /AWS/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/Utils.h -------------------------------------------------------------------------------- /AWS/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/jsmn.c -------------------------------------------------------------------------------- /AWS/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/jsmn.h -------------------------------------------------------------------------------- /AWS/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/keys.c -------------------------------------------------------------------------------- /AWS/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/keys.h -------------------------------------------------------------------------------- /AWS/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/sha256.cpp -------------------------------------------------------------------------------- /AWS/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS/sha256.h -------------------------------------------------------------------------------- /AWS_Get-SetDemo/AWS_Get-SetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/AWS_Get-SetDemo/AWS_Get-SetDemo.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetofhomethings/AWS-ESP8266-API/HEAD/README.md --------------------------------------------------------------------------------