Build Status Maintenance

coap-message-demos

This crate contains demo applications for CoAP on Rust

All demos use the ecosystem around the [coap-message] crate. They come in two variations:

Usage

The examples are all configured to run a selection of the applications; which they are depends on the selected features.

For minimal operation, run the examples as

sh $ cargo +nightly run --example EXNAME --features example-EXNAME

where EXNAME is substituted with any of the examples -- currently coaplite, coap_crate or std_embedded_nal_minicoapserver.

To explore all features, just run with

sh $ cargo +nightly run --example EXNAME --all-features

which, for example, adds access to a system [::log].

All the same can be accessed, for example, by using [aiocoap-client]:

```sh $ aiocoap-client coap://localhost/.well-known/core ; ct="0"; title="Landing page", ; ct="0"; title="Clock", ; ct="60", ; ct="60", ; ct="60", ; title="POST warning texts here", ; title="POST info texts here"

$ aiocoap-client coap://localhost/cbor {'hidden': False, 'number': 32, 'label': 'Hello', 'list': [1, 2, 3]} ```

License: MIT OR Apache-2.0