Skip to content

Commit

Permalink
Add support for ESP-IDF component
Browse files Browse the repository at this point in the history
  • Loading branch information
ronanj committed Oct 5, 2024
1 parent b2336b8 commit ef4f6f7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,3 +368,23 @@ The decode method already does most of the necessary transformations, so in most
* Check the coverage (JavaScript) via `yarn coverage` (see `coverage/lcov-report`)

The CI will kick off once you create a pull request automatically.

# Installation

## ESP-IDF

Add the `lora-serialization` dependency to the `main/idf_component.yml` file in your ESP-IDF project:

```
dependencies:
lora-serialization:
git: https://github.com/thesolarnomad/lora-serialization.git
```

As well as to the `main/CMakeLists.txt`

```
idf_component_register( ...
REQUIRES .... lora-serialization
)
```

0 comments on commit ef4f6f7

Please sign in to comment.