-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.h
27 lines (19 loc) · 1.03 KB
/
settings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
esp32-ai-cam
by James Zahary [email protected]
https://github.com/jameszah/ESP32-AI-CAM
jameszah/ESP32-AI_CAM is licensed under the
GNU General Public License v3.0
*/
#define IOT_CONFIG_WIFI_SSID "..."
#define IOT_CONFIG_WIFI_PASSWORD "..."
/*String containing Hostname, Device Id & Device Key in the format: */
/* "HostName=<host_name>;DeviceId=<device_id>;SharedAccessKey=<device_key>" */
/* "HostName=<host_name>;DeviceId=<device_id>;SharedAccessSignature=<device_sas_token>" */
//static const char* connectionString = "[device connection string]";
static const char* connectionString = "HostName=myhubname.azure-devices.net;DeviceId=jzLogger;SharedAccessKey=............................................";
const char* host = "myazureregion.api.cognitive.microsoft.com";
const char* Ocp_Apim_Subscription_Key = "................................";
const int Port = 443;
#define ms_between_pictures 10000
#define number_of_pictures 2