Skip to content

Commit 91ea1fd

Browse files
committed
Remove installation instructions, update dependencies
1 parent c5484da commit 91ea1fd

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,17 @@ Derived from [Adrian McEwen's HttpClient library](https://github.com/amcewen/Htt
66

77
## Dependencies
88

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:
10+
- [WiFi101](https://github.com/arduino-libraries/WiFi101)
11+
- [Ethernet](https://github.com/arduino-libraries/Ethernet)
12+
- [WiFi](https://github.com/arduino-libraries/WiFi)
13+
- [GSM](https://github.com/arduino-libraries/GSM)
1714

1815
## Usage
1916

2017
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).
2118

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.
2320

2421
See the examples for more detail on how the library is used.
2522

0 commit comments

Comments
 (0)