You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- nodes:
- - id: talker_1
- custom:
- build: cargo build -p talker_1
- source: target/debug/talker_1
- inputs:
- tick: dora/timer/millis/100
- outputs:
- - speech
- - id: talker_2
- custom:
- build: cargo build -p talker_2
- source: target/debug/talker_2
- inputs:
- tick: dora/timer/secs/2
- outputs:
- - speech
-
- - id: listener_1
- custom:
- build: cargo build -p listener_1
- source: target/debug/listener_1
- inputs:
- tick: dora/timer/secs/1
- input-1: talker_1/speech
- input-2: talker_2/speech
|