Add first draft of the poster
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
e8c0ffff7a
commit
8845eb5987
2 changed files with 87 additions and 0 deletions
|
@ -1,2 +1,3 @@
|
|||
#!/usr/bin/env sh
|
||||
latexmk -pdflatex=lualatex -pdf -output-directory=_build thesis/thesis.tex
|
||||
latexmk -pdflatex=lualatex -pdf -output-directory=_build poster/poster.tex
|
||||
|
|
86
documentation/poster/poster.tex
Normal file
86
documentation/poster/poster.tex
Normal file
|
@ -0,0 +1,86 @@
|
|||
% !TeX program = lualatex
|
||||
%%
|
||||
|
||||
\documentclass[
|
||||
paper=a1,
|
||||
landscape,
|
||||
boxstyle=plain,
|
||||
style=plain, % Stil für Header/Footer einzeln wählbar über title-style/footer-style, default ist plain
|
||||
%invert-colors % Orange/Blau im title,footer,logo getauscht. einzeln anwählbar über invert-title-colors,invert-footer-colors,invert-logo-colors
|
||||
]{bfhsciposter}
|
||||
|
||||
%Sprache
|
||||
\usepackage[nswissgerman]{babel}
|
||||
\usepackage[autostyle]{csquotes}
|
||||
|
||||
|
||||
|
||||
\begin{document}
|
||||
|
||||
\title{Inductive Short-Range Communication Channel}
|
||||
\author{Severin Kaderli}
|
||||
\thanks{Dr. Reto König}
|
||||
\thanks{Thomas Jäggi}
|
||||
\institute{Bern University of Applied Sciences}
|
||||
%\inst kann in den Autor und Institutsfeldern genutzt werden um eine Zuordnung zu ermöglichen. Bei Nummerierung ist der Nutzer dafür verantwortlich Konflikte mit \thanks zu vermeiden.
|
||||
%\titlegraphic{\includegraphics[width=10cm]{example-image}}
|
||||
\footerqrcode{https://magsend.kaderli.dev}
|
||||
\footer{Fusszeile: Falls neben den Logos andere Angaben erforderlich sind}
|
||||
|
||||
%Instituts/Sponsorenlogos von links nach rechts
|
||||
%\footergraphics{
|
||||
% \includegraphics[height=\height]{example-image}
|
||||
% \includegraphics[height=\height]{example-image}
|
||||
%}
|
||||
|
||||
\begin{tcbposter}[
|
||||
poster={
|
||||
columns=4,
|
||||
rows=9,
|
||||
spacing=2cm,
|
||||
},
|
||||
boxes = {
|
||||
frame hidden,
|
||||
},
|
||||
]
|
||||
|
||||
\begin{posterboxenv}[,BFH-abstract,title=Abstract]{name=abstract,column=1,row=1,span=2,rowspan=4}
|
||||
|
||||
In this thesis, I research an alternative short-range wireless communication method that uses
|
||||
magnetic induction instead of conventional radio waves for transmission of data, and point out the advantages and disadvantages of magnetic induction as a communication channel.
|
||||
|
||||
For demonstrating the communication method, I create a prototype implementation of a simple communication protocol that utilizes magnetic induction and that can be run using components in everyday devices such as a smartphone and a laptop.
|
||||
|
||||
At the end, I benchmark the prototype implementation under multiple conditions and configurations to illustrate how feasible and robust the communication is and if it is viable as an alternative to radio wave communication.
|
||||
|
||||
\end{posterboxenv}
|
||||
|
||||
\begin{posterboxenv}[,BFH-plain,title=Solution]{name=solution,column=1,row=5,span=2,rowspan=5}
|
||||
The solution that I created for my thesis consists of two parts: a laptop that acts as the sender and a smartphone that acts as the receiver. The communication between the devices over magnetic induction using a simple protocol. For that purpose two applications were developed.
|
||||
|
||||
On the sending side, by putting controlled stress on the processor of the laptop an attempt can be made to manipulate the magnetic field that gets generated around the CPU. By manipulating the magnetic field in a controlled way a payload signal can be encoded into the field. The sender was implemented as a website which allows the user to input a text, which then gets transmitted by stressing the CPU.
|
||||
|
||||
On the receiving side, a smartphone is used to receive the signals from the magnetic field. By putting the smartphone on top of the sender the magnetic field emitted by the CPU of the sender can be measured using a magnetometer, which is a sensor that is available in most modern smartphones. The received signal is then decoded and the contents of the payload can be displayed. This part was realized as a native Android application, which allows the user to listen for data signals in the magnetic field and display them on the screen.
|
||||
|
||||
\end{posterboxenv}
|
||||
|
||||
\begin{posterboxenv}[,BFH-plain,title=Results]{name=abstract,column=3,row=1,span=2,rowspan=4}
|
||||
The results of my thesis is a pair of applications and a protocol that I call together \textbf{MagSend}.
|
||||
|
||||
MagSend allows the user to send small messages of up to 16 characters over a small distance using magnetic induction. The speed of the transmission is very slow with about 1 bit/s and it is very susceptible to wrong results when other applications already use the CPU on the laptop or by moving the receiver during the transmission.
|
||||
|
||||
In future MagSend could be improved by incorperating more sophisticated error detection methods and by increasing the transmission data rate.
|
||||
\end{posterboxenv}
|
||||
|
||||
|
||||
\begin{posterboxenv}[BFH-plain]{name=notitle,column=3,row=5,span=2,rowspan=4}
|
||||
\includegraphics[height=400pt,width=\linewidth]{example-image}
|
||||
\captionof{figure}{Ein Beispielbild}
|
||||
\end{posterboxenv}
|
||||
|
||||
|
||||
\end{tcbposter}
|
||||
|
||||
\end{document}
|
||||
|
||||
|
Reference in a new issue