mermaid diagrams for PSST paper #137
venkateshpotluri
started this conversation in
Show and tell
Replies: 1 comment 1 reply
-
Diagram for scenario described in PSST sectiongraph LR
LightSensor -->|RXJS stream| DataSink
DataSink --> NoteHandler
DataSink -->|Min/Max| ExtremaHandler
ExtremaHandler --> SpeechOutput
NoteHandler --> SonifyOutput
SpeechOutput --> User
SonifyOutput --> User
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This thread will contain mermaid diagrams for the PSST paper. If you would like to make changes, please post a new comment with a clear textual label of the diagram you are iterating on. To provide an example of this, I have included the architecture diagram of PSST from the paper in this post. I will include more diagrams to seek feedback.
graph LR OutputEngine -- State:Play/Pause/Stop --> DataSink OutputEngine -- State --> DataSink2 OutputEngine -- State --> DataSink3 subgraph InputStream[Input Stream] -- Datum --> DataSink InputStream2[Input Stream] -- Datum --> DataSink2(DataSink ...) InputStream3[Input Stream] -- Datum --> DataSink3(DataSink ...) end DataSink -- Datum/State --> DataHandler1(DataHandler, e.g. NoteHandler) DataHandler1 -- Datum/State --> DataOutput(DataOutput, e.g. NoteOutput) DataSink -- Datum/State --> DataHandler2(DataHandler, e.g. FilterHandler) subgraph Can Chain to support Filtering DataHandler2 -- ... --> DataHandler3(DataHandler) end DataHandler3 -- Datum/State --> DataOutput3(Data Output) subgraph May Use Statistics DataOutput DataOutput3 endBeta Was this translation helpful? Give feedback.
All reactions