Smart-Home am Beispiel der Präsenzerkennung im Raum Projektarbeit Lennart Heimbs, Johannes Krug, Sebastian Dohle und Kevin Holzschuh bei Prof. Oliver Hofmann SS2019
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mqtt_topic.tex 1.1KB

123456789101112131415161718192021222324
  1. % Tikz File mqtt_topic.tex
  2. \documentclass{standalone}
  3. \usepackage{tikz}
  4. \usepackage{graphicx}
  5. \usetikzlibrary{decorations.pathreplacing}
  6. \usetikzlibrary{positioning}
  7. \begin{document}
  8. \begin{tikzpicture}
  9. \node[scale=3] (topic_104) at (0, 0) {/104};
  10. \node[scale=3] (topic_bb) [left=-8mm of topic_104] {/bb};
  11. \node[scale=3] (topic_gso) [left=-8mm of topic_bb] {gso};
  12. \node[scale=3] (topic_us) [right=-8mm of topic_104] {/ultraschall};
  13. \node[scale=3] (topic_wc) [right=-5mm of topic_us] {/\#};
  14. \node[green,scale=1.6] (ml-wc) [above=7mm of topic_wc] {Multilevel Wildcard};
  15. \draw[blue,decorate,decoration={brace,amplitude=12pt,pre=moveto,pre length=3mm,post=moveto,post length=3mm}] (topic_gso.north west) -- (topic_gso.north east) node[midway, above,yshift=12pt,scale=1.6]{Topic Level};
  16. \draw[blue,decorate,decoration={brace,mirror,amplitude=12pt,pre=moveto,pre length=5mm,post=moveto,post length=4mm}] (topic_bb.south west) -- (topic_bb.south east) node[midway, below,yshift=-12pt,scale=1.6]{Topic Level};
  17. \draw[->,thick,green] (ml-wc.south) -- (topic_wc.north) ;
  18. \end{tikzpicture}
  19. \end{document}