1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-06-13 04:21:30 +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

@ -9,11 +9,7 @@
For more on dweet.io, see https://dweet.io/play/
note: WiFi SSID and password are stored in config.h file.
If it is not present, add a new tab, call it "config.h"
and add the following variables:
char ssid[] = "ssid"; // your network SSID (name)
char pass[] = "password"; // your network password
created 15 Feb 2016
updated 16 Feb 2016
@ -23,7 +19,12 @@
*/
#include <ArduinoHttpClient.h>
#include <WiFi101.h>
#include "config.h"
#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;
const char serverAddress[] = "dweet.io"; // server address
int port = 80;