Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.doc/doc-tex/030-tutorial-ped-lights.tex')
-rw-r--r--plugins/org.eclipse.etrice.doc/doc-tex/030-tutorial-ped-lights.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/org.eclipse.etrice.doc/doc-tex/030-tutorial-ped-lights.tex b/plugins/org.eclipse.etrice.doc/doc-tex/030-tutorial-ped-lights.tex
index 4c6240b78..20d48843a 100644
--- a/plugins/org.eclipse.etrice.doc/doc-tex/030-tutorial-ped-lights.tex
+++ b/plugins/org.eclipse.etrice.doc/doc-tex/030-tutorial-ped-lights.tex
@@ -8,7 +8,7 @@ This tutorial is not like hello world or blinky. Being familiar with the basic t
The idea behind the exercise is, to control a Pedestrian crossing light. We will use the same GUI as for the blinky tutorial but now we will use the \textit{REQUEST} button to start a FSM, which controls the traffic lights.
-\includegraphics{images/020-Blinky08}
+\includegraphics{images/020-Blinky08.png}
% !images/020-Blinky08.png!
The \textit{REQUEST} must lead to a model message which starts the activity of the lights.
@@ -46,15 +46,15 @@ import room.basic.service.timing.* from
\item Arrange the Structure and the Statemachines to understand the model
\end{itemize}
-\includegraphics[width=\linewidth]{images/030-PedLights01}
+\includegraphics[width=\linewidth]{images/030-PedLights01.png}
% !images/030-PedLights01.png!
The \textit{GuiAdapter} represents the interface to the external code. It registers its \textit{ControlPort} by the external code.
-\includegraphics[width=\linewidth]{images/030-PedLights02}
+\includegraphics[width=\linewidth]{images/030-PedLights02.png}
% !images/030-PedLights02.png!
Visit the initial transition to understand the registration. The actor handles the incoming messages as usual and controls the traffic lights as known from blinky.
-\includegraphics[width=\linewidth]{images/030-PedLights03}
+\includegraphics[width=\linewidth]{images/030-PedLights03.png}
% !images/030-PedLights03.png!
The \textit{Controller} receives the \textit{start} message and controls the timing of the lights. Note that the \textit{start} message will be sent from the external code whenever the \textit{REQUEST} button is pressed.
@@ -70,7 +70,7 @@ The \textit{Controller} receives the \textit{start} message and controls the tim
\item Take a look at the generated MSC => notice that the start message will shown as if the \textit{GuiAdapter} had sent it.
\end{itemize}
-\includegraphics[width=\linewidth]{images/030-PedLights04}
+\includegraphics[width=\linewidth]{images/030-PedLights04.png}
% !images/030-PedLights04.png!
\section{Why does it work and why is it safe?}

Back to the top