add manageCamera plantUML
This commit is contained in:
부모
f78ec42f7b
커밋
74a610db33
1개의 변경된 파일과 19개의 추가작업 그리고 0개의 파일을 삭제
19
conception/th_manageCamera.txt
Normal file
19
conception/th_manageCamera.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
@startuml
|
||||
skinparam monochrome true
|
||||
start
|
||||
while ()
|
||||
:startCamera?;
|
||||
:bool success = camera.start();
|
||||
if (success) then (false)
|
||||
:msg = new Message(MESSAGE_ANSWER_NACK);
|
||||
:messageToMonitor!msg;
|
||||
else (true)
|
||||
:shouldSendImage = true;
|
||||
:stopCamera?;
|
||||
:shouldSendImage = false;
|
||||
:camera.Stop();
|
||||
endif;
|
||||
end while;
|
||||
stop
|
||||
@enduml
|
||||
|
불러오는 중…
Reference in a new issue