iot-night/presentation.tex

145 lines
3.5 KiB
TeX
Executable File

%===============================================================================
% Zweck: KTR-Präsentation-Vorlage
% Erstellt: 15.04.2013
% Update: 04.07.2016
% Autor: M.G.
%===============================================================================
\newcommand\ratio{169}
\documentclass[10pt,aspectratio=\ratio,
%draft,
%handout,
compress
]{beamer}
\newcommand\meta{./meta}
\input{\meta/config/commands}
\def\signed #1{{\leavevmode\unskip\nobreak\hfil\penalty50\hskip2em
\hbox{}\nobreak\hfil(#1)%
\parfillskip=0pt \finalhyphendemerits=0 \endgraf}}
\newsavebox\mybox
\newenvironment{aquote}[1]
{\savebox\mybox{#1}\begin{fancyquotes}}
{\signed{\usebox\mybox}\end{fancyquotes}}
\input{\meta/config/hyphenation}
\setbeamertemplate{caption}[numbered]
%\numberwithin{figure}{section}
\begin{document}
%===============================================================================
% Zum Kompilieren latexmk ausführen.
% Konfiguration in texmaker: Options -> Configure Texmaker -> Quick Build -> Select Latexmk + ViewPD
% Entsprechende Informationen in den config/metainfo verändern
% Zur Auswahl der Sprache im folgenden Befehl
% ngerman für deutsch eintragen, english für Englisch.
%===============================================================================
\selectlanguage{ngerman}
\ifnum\ratio<169
\frame{\titlepage}
\else
\frame[plain]{\titlepage}
\fi
%\AtBeginSection[]
%{
% \frame<handout:0>
% {
% \frametitle{Outline}
% \tableofcontents[currentsection,hideallsubsections]
% }
%}
\AtBeginSubsection[]
{
\frame<handout:0>
{
\frametitle{Outline}
\tableofcontents[sectionstyle=show/hide,subsectionstyle=show/shaded/hide,subsubsectionstyle=hide]
}
}
\AtBeginSubsubsection[]
{
\frame<handout:0>
{
\frametitle{Outline}
\tableofcontents[sectionstyle=show/hide,subsectionstyle=show/shaded/hide,subsubsectionstyle=show/shaded/hide]
}
}
\newcommand<>{\highlighton}[1]{%
\alt#2{\structure{#1}}{{#1}}
}
\newcommand{\icon}[1]{\pgfimage[height=1em]{#1}}
\section*{}
\phantomsection
\begin{frame}{Content}
\tableofcontents
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% Content starts here %%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{ESP8266}
\begin{frame}{ESP8266}\framesubtitle{Hardware}
\image{.6\textwidth}{esp8266}{ESP8266 + NodeMCU v3 \cite{esp8266}}{img:esp}
\end{frame}
\begin{frame}{ESP8266}\framesubtitle{Hardware}
\image{.6\textwidth}{pinmap}{ESP8266 Pins \cite{pinmap}}{img:pins}
\end{frame}
\begin{frame}{ESP8266}\framesubtitle{Software}
\href{http://nodemcu.com/index_en.html}{NodeMCU}
\begin{itemize}
\item Open Source Hardware
\item Open Source Firmware
\item Lua-Skriptbare Umgebung
\item Ardunio-kompatibel
\item Billige China-Klone :)
\end{itemize}
Cooler: \href{https://micropython.org/}{MicroPython}
\begin{itemize}
\item Basiert auf Python 3
\item Frei \& Open Source
\item Einige Funktionalität
\end{itemize}
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% References %%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{}
\begin{frame}[allowframebreaks]{References}
\def\newblock{\hskip .11em plus .33em minus .07em}
\scriptsize
\bibliographystyle{IEEEtran}
\bibliography{content/bib.bib}
\normalsize
\end{frame}
%% Last frame
\frame{
\vspace{2cm}
{\huge Questions ?}
\vspace{20mm}
\nocite*
\begin{flushright}
Marcel Gro\ss mann
\structure{\footnotesize{\href{mailto:marcel.grossmann@uni-bamberg.de}{marcel.grossmann@uni-bamberg.de}}}
\end{flushright}
}
\end{document}