1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-07-05 04:01:10 +03:00

St update

This commit is contained in:
marcus johansson
2017-09-14 16:27:32 +02:00
parent 050821b224
commit 889d7b35d9
34 changed files with 126 additions and 81 deletions

View File

@ -11,8 +11,14 @@
// This example downloads the URL "http://arduino.cc/"
char ssid[] = "yourNetwork"; // your network SSID (name)
char pass[] = "secretPassword"; // your network password
#include "arduino_secrets.h"
///////please enter your sensitive data in the Secret tab/arduino_secrets.h
/////// Wifi Settings ///////
char ssid[] = SECRET_SSID;
char pass[] = SECRET_PASS;
// Name of the server we want to connect to
const char kHostname[] = "arduino.cc";

View File

@ -0,0 +1,3 @@
#define SECRET_SSID ""
#define SECRET_PASS ""