Skip to content

Instantly share code, notes, and snippets.

View kcootedinh's full-sized avatar

Kieran Coote-Dinh kcootedinh

View GitHub Profile
@ksasao
ksasao / HTTPSTest.ino
Last active August 29, 2020 05:16
M5Stack HTTPS Client with Azure Functions
#include <M5Stack.h>
#include <WiFiClientSecure.h>
WiFiClientSecure client;
const char* ssid = "your SSID"; // WiFi SSID
const char* password = "your WiFi password"; // WiFi PW
const char* host = "host name (e.g. example.azurewebsites.net)";
const char* path = "url (e.g. /api/EnvMonitor?code=AAA==)";