diff --git a/README.md b/README.md index 9f5c4f3..37b7ecf 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ ESDS is part of a research project. Studies and validation experiments are avail ### Installation `> pip install esds` -To ensure that esds is properly working and installed on your system, you can run the simulation tests with one of the following scripts: +To ensure that esds is properly working and installed on your system, you can clone this repository, and run the simulation tests with one of the following scripts: - `tests/run.sh` - `tests/run.py` @@ -19,8 +19,8 @@ To ensure that esds is properly working and installed on your system, you can ru - Small API - Agent-based: node implementations are located in dedicated python files - Wireless interferences detection (i.e not modelization) -- Node mobility (by updating the network matrices) -- Nodes plugins (e.g: energy consumption) +- Node mobility (through dynamic updates of the network matrices) +- Node plugins (e.g: energy consumption) ### What ESDS does not implements ? - Network protocols (e.g IP/TCP/UDP) @@ -40,7 +40,9 @@ To ensure that esds is properly working and installed on your system, you can ru - `api.read()` - `api.turn_on()` - `api.turn_off()` -- *More details on the API in [example/sender.py](example/sender.py)* +- More detailed examples are available here: + - [example/sender.py](https://gitlab.com/manzerbredes/esds/-/blob/main/example/sender.py) + - [example/receiver.py](https://gitlab.com/manzerbredes/esds/-/blob/main/example/receiver.py) ### Documentation -The documentation of ESDS is available in the [user manual](https://gitlab.com/manzerbredes/esds/-/blob/main/manual/manual.pdf). \ No newline at end of file +The documentation of ESDS is available in the [user manual](https://gitlab.com/manzerbredes/esds/-/blob/main/manual/manual.pdf). diff --git a/esds/__init__.py b/esds/__init__.py index d6c4c16..975bea7 100644 --- a/esds/__init__.py +++ b/esds/__init__.py @@ -1,5 +1,5 @@ __all__ = ["simulator", "node", "plugins", "helpers", "rcode", "debug", "platform"] -__version__ = "0.0.7" +__version__ = "0.0.8" from esds.simulator import Simulator from esds.rcode import RCode