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
{{ message }}
This repository was archived by the owner on Feb 1, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+50-50Lines changed: 50 additions & 50 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ This library is based on, modified from:
107
107
1.[`Arduino IDE 1.8.19+` for Arduino](https://github.com/arduino/Arduino). [](https://github.com/arduino/Arduino/releases/latest)
108
108
2.[`Teensy core v1.57+`](https://www.pjrc.com/teensy/td_download.html) for Teensy 4.1
109
109
3.[`QNEthernet Library version v0.15.0+`](https://github.com/ssilverman/QNEthernet) for Teensy 4.1 built-in Ethernet.
110
-
4.[`Teensy41_AsyncTCP library v1.0.0+`](https://github.com/khoih-prog/Teensy41_AsyncTCP) to use **Teensy 4.1 using QNEthernet Library**. To install, check [](https://www.ardu-badge.com/Teensy41_AsyncTCP)
110
+
4.[`Teensy41_AsyncTCP library v1.1.0+`](https://github.com/khoih-prog/Teensy41_AsyncTCP) to use **Teensy 4.1 using QNEthernet Library**. To install, check [](https://www.ardu-badge.com/Teensy41_AsyncTCP)
111
111
112
112
---
113
113
---
@@ -120,9 +120,9 @@ The best and easiest way is to use `Arduino Library Manager`. Search for `AsyncH
120
120
### Manual Install
121
121
122
122
1. Navigate to [AsyncHTTPRequest_Teensy41](https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41) page.
123
-
2. Download the latest release `AsyncHTTPRequest_Teensy41-master.zip`.
124
-
3. Extract the zip file to `AsyncHTTPRequest_Teensy41-master` directory
125
-
4. Copy the whole `AsyncHTTPRequest_Teensy41-master` folder to Arduino libraries' directory such as `~/Arduino/libraries/`.
123
+
2. Download the latest release `AsyncHTTPRequest_Teensy41-main.zip`.
124
+
3. Extract the zip file to `AsyncHTTPRequest_Teensy41-main` directory
125
+
4. Copy the whole `AsyncHTTPRequest_Teensy41-main` folder to Arduino libraries' directory such as `~/Arduino/libraries/`.
126
126
127
127
### VS Code & PlatformIO
128
128
@@ -164,14 +164,14 @@ The current library implementation, using `xyz-Impl.h` instead of standard `xyz.
164
164
165
165
You can include this `.hpp` file
166
166
167
-
```
167
+
```cpp
168
168
// Can be included as many times as necessary, without `Multiple Definitions` Linker Error
in many files. But be sure to use the following `.h` file **in just 1 `.h`, `.cpp` or `.ino` file**, which must **not be included in any other file**, to avoid `Multiple Definitions` Linker Error
173
173
174
-
```
174
+
```cpp
175
175
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
0 commit comments