This repository has been archived on 2023-02-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
bachelor-thesis/documentation/poster/poster.tex
Severin Kaderli 68ce3e0dbe
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add finalized poster
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
2023-01-03 17:39:06 +01:00

83 lines
4.3 KiB
TeX

% !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[autostyle]{csquotes}
\graphicspath{ {poster/assets/} }
\begin{document}
\title{Inductive Short-Range Communication Channel}
\author{Severin Kaderli}
\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{Author: Severin Kaderli\\Advisor: Dr. Reto König\\Expert: Thomas Jäggi}
%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=2.5cm,
},
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 found 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 works over magnetic induction using a simple protocol.
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.
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 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 the future, MagSend could be improved by incorporating more sophisticated error detection methods and by increasing the transmission data rate.
\end{posterboxenv}
\begin{posterboxenv}[BFH-plain]{name=notitle,column=3,row=4,span=2,rowspan=4}
\centering
\includegraphics[width=\linewidth]{applications.png}
\captionof{figure}{MagSend Applications: Website for sending on the left; App for receiving on the right}
\end{posterboxenv}
\end{tcbposter}
\end{document}