@@ -25,7 +25,7 @@ Also you can select specific version, using tag:
2525
2626``` ini
2727lib_deps =
28- https://github.com/DreamerDeLy/dream.git# v0.4 .0
28+ https://github.com/DreamerDeLy/dream.git# v0.7 .0
2929```
3030
3131** For ArduinoIDE** :
@@ -44,8 +44,8 @@ lib_deps =
4444 - [ ** CLI** ] ( src/debug/cli.h ) - Library for the developer's CLI, into which any command can be integrated.
4545 - [ ** Serial Logging** ] ( src/debug/serial_logging.h ) - Macro-based logging library.
4646- ** NET**
47- - [ ** HTTPPackage ** ] ( src/net/HTTPPackage .h ) - Module for generating HTTP packages.
48- - [ ** HTTPPackageParser ** ] ( src/net/HTTPPackageParser .h ) - HTTP packages parser for reading responses from servers .
47+ - [ ** HTTPRequest ** ] ( src/net/HTTPRequest .h ) - Generator of HTTP request packages.
48+ - [ ** HTTPResponse ** ] ( src/net/HTTPResponse .h ) - Module for parsing HTTP response packages .
4949- ** Realtime**
5050 - [ ** Simple Timer** ] ( src/realtime/simple_timer.h ) - Simple software timer.
5151 - [ ** Simple Stopwatch** ] ( src/realtime/simple_stopwatch.h ) - A simple object for measuring the elapsed time between the execution of some functions.
@@ -57,15 +57,14 @@ This project created with [PlatformIO](https://platformio.org/).
5757Use this commands to build examples:
5858
5959``` powershell
60- pio ci --board=esp32dev examples/CLI_Basic/ --lib src/
61- pio ci --board=esp32dev examples/CLI_Continuous/ --lib src/
60+ pio ci --board=esp32dev examples/CLI/ --lib src/
6261pio ci --board=esp32dev examples/SerialLogging/ --lib src/
6362pio ci --board=esp32dev examples/UnitsConversion/ --lib src/
6463pio ci --board=esp32dev examples/Values/ --lib src/
6564pio ci --board=esp32dev examples/Timer_Basic/ --lib src/
6665pio ci --board=esp32dev examples/Timer_Callbacks/ --lib src/
67- pio ci --board=esp32dev examples/HTTPPackage / --lib src/
68- pio ci --board=esp32dev examples/HTTPParser / --lib src/
66+ pio ci --board=esp32dev examples/HTTPRequest / --lib src/
67+ pio ci --board=esp32dev examples/HTTPResponse / --lib src/
6968```
7069
7170Use this command to run tests (you have to have connected ESP32 to your computer):
0 commit comments