13 lines
268 B
C
13 lines
268 B
C
|
|
// Library to simplify HTTP fetching on Arduino
|
||
|
|
// (c) Copyright Arduino. 2016
|
||
|
|
// Released under Apache License, version 2.0
|
||
|
|
|
||
|
|
#ifndef ArduinoHttpClient_h
|
||
|
|
#define ArduinoHttpClient_h
|
||
|
|
|
||
|
|
#include "HttpClient.h"
|
||
|
|
#include "WebSocketClient.h"
|
||
|
|
#include "URLEncoder.h"
|
||
|
|
|
||
|
|
#endif
|