File tree Expand file tree Collapse file tree 4 files changed +24
-21
lines changed
Expand file tree Collapse file tree 4 files changed +24
-21
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change @@ -9,5 +9,6 @@ getErrorDescription KEYWORD2
99getStream KEYWORD2
1010StreamHttpReply KEYWORD1
1111StreamHttpErrorReply KEYWORD1
12+ StreamHttpAuthenticateReply KEYWORD1
1213send KEYWORD2
1314getCode KEYWORD2
Original file line number Diff line number Diff line change 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" :
Original file line number Diff line number Diff line change 1212src_dir = examples/HelloHttp
1313lib_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
You can’t perform that action at this time.
0 commit comments