1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:52:44 +01:00

examples/rust-gcoap: Expose LEDs

This commit is contained in:
chrysn 2024-08-26 15:34:56 +02:00
parent b469a52a21
commit c3724af35b

View File

@ -23,6 +23,7 @@ fn main() {
let handler = coap_message_demos::full_application_tree(None) let handler = coap_message_demos::full_application_tree(None)
.below(&["ps"], riot_coap_handler_demos::ps::ps_tree()) .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(&["vfs"], riot_coap_handler_demos::vfs::vfs(""))
.below(&["saul"], riot_coap_handler_demos::saul::SaulHandler::new(&["saul"])) .below(&["saul"], riot_coap_handler_demos::saul::SaulHandler::new(&["saul"]))
.with_wkc() .with_wkc()