Skip to content

Commit

Permalink
Update info files
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamerDeLy committed Nov 2, 2022
1 parent 2427ec1 commit dc34ae7
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 16 deletions.
21 changes: 19 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## v0.1.0
*10.08.2022*

* Портовано з EnvOS без значних змін в файлах.
* Малі виправлення, що дозволяють працювати як бібліотека.
Expand All @@ -9,11 +10,27 @@
* Додано приклад роботи з SerialLog.

## v0.2.0
*11.08.2022*

* Невеликі фікси та перероблений шаблон SerialLog.
* Додано приклади роботи з CLI та з Value.

## v0.3.0
*01.09.2022*

* Доданий приклад з UnitCorvesion.
* Функціонал SimpleTimer розширено: додана можливість працювати з калбеками. Додані приклади роботи в різних варіантах.
* Доданий приклад з UnitConversion.
* Функціонал SimpleTimer розширено: додана можливість працювати з калбеками. Додані приклади роботи в різних варіантах.

## v0.4.0
*23.10.2022*

* В SerialLogging видалена можливість додавати декілька вихідних Stream об'єктів.
* З CLI видалена залежність від SerialLogging.
* В CLI додана можливість постійного зчитування з Stream та виконання.
* Перейменовані деякі приклади.

## v0.5.0
*02.11.2022*

* SimpleTimer та SimpleStopwatch додані до загального namespace.
* Додано HTTPPackage.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ lib_deps =
- **Debug**
- [**CLI**](src/debug/cli.h) - Library for the developer's CLI, into which any command can be integrated.
- [**Serial Logging**](src/debug/serial_logging.h) - Macro-based logging library.
- **NET**
- [**HTTPPackage**](src/net/HTTPPackage.h) - Module for generating HTTP packages.
- **Realtime**
- [**Simple Timer**](src/realtime/simple_timer.h) - Simple software timer.
- [**Simple Stopwatch**](src/realtime/simple_stopwatch.h) - A simple object for measuring the elapsed time between the execution of some functions.
Expand All @@ -61,6 +63,7 @@ pio ci --board=esp32dev examples/UnitsConversion/ --lib src/
pio ci --board=esp32dev examples/Values/ --lib src/
pio ci --board=esp32dev examples/Timer_Basic/ --lib src/
pio ci --board=esp32dev examples/Timer_Callbacks/ --lib src/
pio ci --board=esp32dev examples/HTTPPackage/ --lib src/
```

Use this command to run tests (you have to have connected ESP32 to your computer):
Expand Down
25 changes: 11 additions & 14 deletions library.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,21 @@
"name": "DREAM",
"keywords": "Debug, CLI, Logging, Data, Values, Timer, Stopwatch",
"description": "DREAM - Dynamic Real-time Embedded Arduino Modules",
"authors":
[
{
"name": "Dmytro DeLy Obukhov",
"email": "[email protected]",
"maintainer": true
}
"authors": [
{
"name": "Dmytro DeLy Obukhov",
"email": "[email protected]",
"maintainer": true
}
],
"repository":
{
"repository": {
"type": "git",
"url": "https://github.com/DreamerDeLy/dream.git"
},
"version": "0.4.0",
"version": "0.5.0",
"license": "GPL-3.0-or-later",
"frameworks": "arduino",
"platforms":
[
"espressif"
"platforms": [
"espressif"
]
}
}

0 comments on commit dc34ae7

Please sign in to comment.