From c3724af35bf99a4683237f85e2eac1cbf6b97bc0 Mon Sep 17 00:00:00 2001 From: chrysn Date: Mon, 26 Aug 2024 15:34:56 +0200 Subject: [PATCH] examples/rust-gcoap: Expose LEDs --- examples/rust-gcoap/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/rust-gcoap/src/lib.rs b/examples/rust-gcoap/src/lib.rs index 538a508665..344432f0f8 100644 --- a/examples/rust-gcoap/src/lib.rs +++ b/examples/rust-gcoap/src/lib.rs @@ -23,6 +23,7 @@ fn main() { let handler = coap_message_demos::full_application_tree(None) .below(&["ps"], riot_coap_handler_demos::ps::ps_tree()) + .below(&["led"], riot_coap_handler_demos::led::all_leds()) .below(&["vfs"], riot_coap_handler_demos::vfs::vfs("")) .below(&["saul"], riot_coap_handler_demos::saul::SaulHandler::new(&["saul"])) .with_wkc()