├── .gitignore ├── Azure_IoT_Central └── Device_Template │ └── Model │ └── Espressif ESP32 Azure IoT Kit.json ├── Azure_IoT_Central_ESP32 ├── AzureIoT.cpp ├── AzureIoT.h ├── Azure_IoT_Central_ESP32.ino ├── Azure_IoT_PnP_Template.cpp ├── Azure_IoT_PnP_Template.h └── iot_configs.h ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md └── images └── dht11+SI1145.png /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /Azure_IoT_Central/Device_Template/Model/Espressif ESP32 Azure IoT Kit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/Azure_IoT_Central/Device_Template/Model/Espressif ESP32 Azure IoT Kit.json -------------------------------------------------------------------------------- /Azure_IoT_Central_ESP32/AzureIoT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/Azure_IoT_Central_ESP32/AzureIoT.cpp -------------------------------------------------------------------------------- /Azure_IoT_Central_ESP32/AzureIoT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/Azure_IoT_Central_ESP32/AzureIoT.h -------------------------------------------------------------------------------- /Azure_IoT_Central_ESP32/Azure_IoT_Central_ESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/Azure_IoT_Central_ESP32/Azure_IoT_Central_ESP32.ino -------------------------------------------------------------------------------- /Azure_IoT_Central_ESP32/Azure_IoT_PnP_Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/Azure_IoT_Central_ESP32/Azure_IoT_PnP_Template.cpp -------------------------------------------------------------------------------- /Azure_IoT_Central_ESP32/Azure_IoT_PnP_Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/Azure_IoT_Central_ESP32/Azure_IoT_PnP_Template.h -------------------------------------------------------------------------------- /Azure_IoT_Central_ESP32/iot_configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/Azure_IoT_Central_ESP32/iot_configs.h -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /images/dht11+SI1145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-iot-central-esp32-sample/HEAD/images/dht11+SI1145.png --------------------------------------------------------------------------------