You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-9Lines changed: 6 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -6,20 +6,17 @@ Derived from [Adrian McEwen's HttpClient library](https://github.com/amcewen/Htt
6
6
7
7
## Dependencies
8
8
9
-
- Requires the new Ethernet library API (with DHCP and DNS) which is in Arduino 1.0 and later
10
-
11
-
## Installation
12
-
13
-
1. Download the latest version of the library from https://github.com/amcewen/HttpClient/releases and save the file somewhere
14
-
1. In the Arduino IDE, go to the Sketch -> Import Library -> Add Library... menu option
15
-
1. Find the zip file that you saved in the first step, and choose that
16
-
1. Check that it has been successfully added by opening the Sketch -> Import Library menu. You should now see HttpClient listed among the available libraries.
9
+
- Requires a networking hardware and a library that provides transport specific `Client` instance, such as:
In normal usage, handles the outgoing request and Host header. The returned status code is parsed for you, as is the Content-Length header (if present).
21
18
22
-
Because it expects an object of type Client, you can use it with any of the networking classes that derive from that. Which means it will work with EthernetClient, WiFiClient and GSMClient.
19
+
Because it expects an object of type Client, you can use it with any of the networking classes that derive from that. Which means it will work with WiFiClient, EthernetClient and GSMClient.
23
20
24
21
See the examples for more detail on how the library is used.
0 commit comments