Skip to content

Commit c521105

Browse files
author
QuickSander
committed
feat: Mention BlueAndi as contributor
fix: Expand keywords.txt
1 parent b62706d commit c521105

File tree

4 files changed

+24
-21
lines changed

4 files changed

+24
-21
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,4 @@ Characteristics
5252
* Customizable memory footprint for caching returned body data.
5353
* No external dependencies outside of the standard Arduino framework.
5454
* Object oriented implementation.
55+
* Basic authorization support (initial version by @BlueAndi)

keywords.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ getErrorDescription KEYWORD2
99
getStream KEYWORD2
1010
StreamHttpReply KEYWORD1
1111
StreamHttpErrorReply KEYWORD1
12+
StreamHttpAuthenticateReply KEYWORD1
1213
send KEYWORD2
1314
getCode KEYWORD2

library.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"authors":
66
{
77
"name": "Sander van Woensel",
8-
"url": "http://sander.technology"
8+
"url": "http://sander.technology",
9+
"maintainer": true
910
},
1011
"version": "0.9.6",
1112
"repository":

platformio.ini

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@
1212
src_dir = examples/HelloHttp
1313
lib_dir = ../
1414

15-
[env:huzzah]
16-
platform = espressif8266
17-
framework = arduino
18-
board = huzzah
19-
upload_port = /dev/cu.SLAB_USBtoUART
20-
monitor_port = /dev/cu.SLAB_USBtoUART
21-
monitor_speed = 115200
22-
lib_deps =
23-
agdl/Base64@^1.0.0
24-
25-
; [env:esp01]
15+
; [env:huzzah]
2616
; platform = espressif8266
2717
; framework = arduino
28-
; board = esp01
29-
; extra_scripts = ../../Tools/platformio_esptool.py
30-
; lib_deps = agdl/Base64@^1.0.0
31-
32-
; [env:uno]
33-
; platform = atmelavr
34-
; framework = arduino
35-
; board = uno
18+
; board = huzzah
19+
; upload_port = /dev/cu.SLAB_USBtoUART
20+
; monitor_port = /dev/cu.SLAB_USBtoUART
21+
; monitor_speed = 115200
3622
; lib_deps =
37-
; WiFi
3823
; agdl/Base64@^1.0.0
24+
25+
[env:esp01]
26+
platform = espressif8266
27+
framework = arduino
28+
board = esp01
29+
extra_scripts = ../../Tools/platformio_esptool.py
30+
lib_deps = agdl/Base64@^1.0.0
31+
32+
[env:uno]
33+
platform = atmelavr
34+
framework = arduino
35+
board = uno
36+
lib_deps =
37+
WiFi
38+
agdl/Base64@^1.0.0

0 commit comments

Comments
 (0)