last attempt

This commit is contained in:
Jono Targett 2023-05-23 10:27:17 +09:30
parent 467b9b2a6b
commit 269e96e0b8

View File

@ -11,12 +11,14 @@ stateDiagram
Disconnected --> Connected : [radio]/connect Disconnected --> Connected : [radio]/connect
state Idle { state Idle {
Connected --> Connected : [radio]/info
Connected --> Tuned : [radio]/configure/[] Connected --> Tuned : [radio]/configure/[]
Tuned --> Tuned : [radio]/configure/[] Tuned --> Tuned : [radio]/configure/[]
Tuned --> Tuned : [radio]/info
} }
Idle --> Disconnected : [radio]/disconnect Idle --> Disconnected : [radio]/disconnect
Idle --> Idle : [radio]/info
Tuned --> Streaming : [radio]/start Tuned --> Streaming : [radio]/start
Streaming --> Tuned : [radio]/end Streaming --> Tuned : [radio]/end