View raw

1 \documentclass[10pt]{beamer} 2 \usepackage[utf8]{inputenc} 3 \usetheme{Madrid} 4 % \usecolortheme{dolphin} 5 \setbeamertemplate{caption}[numbered] 6 \setbeamertemplate{navigation symbols}{} 7 8 9 \title{Weekly Report} 10 \author{Marius Peter} 11 \institute{UCLA $I^2BL$} 12 \date{July 12th, 2019} 13 14 15 \begin{document} 16 17 \frame{\titlepage} 18 19 \begin{frame} 20 \frametitle{Outline} 21 \tableofcontents 22 \end{frame} 23 24 \section{Key Progress} 25 26 % \subsection{App Structure} 27 % \begin{frame} 28 % \frametitle{App Structure} 29 % \begin{columns} 30 % \column{0.4\textwidth} 31 % \begin{block}{Initializing} 32 % \begin{enumerate} 33 % \item Splash Screen:\\ 34 % Welcome, I2BL logo 35 % \item BT Auth:\\ 36 % Connect to BT chip 37 % \item ITP Set:\\ 38 % Chose location 39 % \item Plot Input:\\ 40 % ITP (mA) vs. t (s) 41 % \end{enumerate} 42 % \end{block} 43 % \column{0.4\textwidth} 44 % \begin{block}{Sensing} 45 % \begin{enumerate} 46 % \item Acquire data:\\ 47 % Retrieve data from BT 48 % \item Plot:\\ 49 % Plot output mA vs. s 50 % \end{enumerate} 51 % \end{block} 52 % \begin{block}{Writing} 53 % \begin{enumerate} 54 % \item Write:\\ 55 % Write to .txt file 56 % \end{enumerate} 57 % \end{block} 58 % \end{columns} 59 % \end{frame} 60 61 % \begin{frame} 62 % \frametitle{This Week's Update} 63 % \begin{columns} 64 % \column[t]{0.48\textwidth} 65 % \begin{block}{New features} 66 % \begin{enumerate} 67 % \item a-f selector in GUI 68 % \item A-F selector in GUI 69 % \item Primary feature 70 % \begin{itemize} 71 % \item Does this 72 % \item Facilitates that 73 % \end{itemize} 74 % \item Secondary feature 75 % \begin{itemize} 76 % \item Does that 77 % \item Replaces need to do this 78 % \end{itemize} 79 % \item Minor feature 1: get this value 80 % \item Minor feature 2: return this object property 81 % \end{enumerate} 82 % \end{block} 83 % \column[t]{0.48\textwidth} 84 % \begin{block}{Refactored code} 85 % \begin{enumerate} 86 % \item Function 1:\\ 87 % Simplified it 88 % \item Function 2:\\ 89 % Expanded it 90 % \item Function 3:\\ 91 % Documented it 92 % \end{enumerate} 93 % \end{block} 94 % \end{columns} 95 % \end{frame} 96 97 \begin{frame} 98 \frametitle{ITP Location Selector} 99 \begin{columns} 100 \column[t]{0.3\textwidth} 101 \begin{figure} 102 \includegraphics[height=0.7\textheight]{./figures/hexagon1.png} 103 \caption{GUI on Wednesday} 104 \end{figure} 105 \column[t]{0.3\textwidth} 106 \begin{figure} 107 \includegraphics[height=0.7\textheight]{./figures/hexagon2.png} 108 \caption{Gui on Friday} 109 \end{figure} 110 \column[t]{0.3\textwidth} 111 Added: 112 \begin{itemize} 113 \item Serves toast confirming \texttt{dataSend} 114 \end{itemize} 115 Replaced: 116 \begin{itemize} 117 \item Leaf background with neutral hexagon 118 \end{itemize} 119 Removed: 120 \begin{itemize} 121 \item Superfluous toast messages 122 \end{itemize} 123 \end{columns} 124 \end{frame} 125 \begin{frame} 126 \frametitle{App Output} 127 \begin{columns} 128 \column[t]{0.48\textwidth} 129 \begin{figure} 130 \includegraphics[height=0.7\textheight]{./figures/data.png} 131 \caption{Initial .txt file output} 132 \end{figure} 133 \column[t]{0.48\textwidth} 134 \begin{figure} 135 \includegraphics[height=0.7\textheight]{./figures/file.png} 136 \caption{Contents of the \texttt{ITP\_a\_<date+time>.txt} file} 137 \end{figure} 138 \end{columns} 139 \end{frame} 140 \begin{frame} 141 \frametitle{Enforced Naming Conventions} 142 \begin{itemize} 143 \item File name structure:\\ 144 \texttt{ITP\_<padName>\_<date+time>.txt} 145 \item File data structure:\\ 146 \texttt{date | hr:min:sec | secElapsed | ITP} 147 \end{itemize} 148 \end{frame} 149 \begin{frame} 150 \frametitle{ITP \& Sensing Plots} 151 \begin{columns} 152 \column[t]{0.48\textwidth} 153 \begin{figure} 154 \includegraphics[height=0.7\textheight]{./figures/toast-create-file.png} 155 \caption{Plot after performing ITP} 156 \label{} 157 \end{figure} 158 \column[t]{0.48\textwidth} 159 \begin{figure} 160 \includegraphics[height=0.7\textheight]{./figures/graph2} 161 \caption{Plot after sensing} 162 \label{} 163 \end{figure} 164 \end{columns} 165 \end{frame} 166 167 \begin{frame} 168 \frametitle{Sensing Activity} 169 \begin{columns} 170 \column[t]{0.3\textwidth} 171 Added: 172 \begin{itemize} 173 \item Realistic representation of sensor board 174 \item Confirmation toasts \& log messages (level: info) 175 \end{itemize} 176 Replaced: 177 \begin{itemize} 178 \item Buttons with clock icons 179 \end{itemize} 180 \column[t]{0.3\textwidth} 181 \begin{figure} 182 \includegraphics[height=0.7\textheight]{./figures/a-f.png} 183 \caption{} 184 \end{figure} 185 \column[t]{0.3\textwidth} 186 \begin{figure} 187 \includegraphics[height=0.7\textheight]{./figures/hexagon_sensing.png} 188 \caption{} 189 \end{figure} 190 \end{columns} 191 \end{frame} 192 193 \section{Roadmap} 194 \begin{frame} 195 \frametitle{Roadmap for Upcoming Week} 196 \begin{enumerate} 197 \item Frontend: 198 \begin{itemize} 199 \item ITP/Sensing graphs 200 \item Setting ITP current (0-9) 201 \item Sensing data from BT 202 \end{itemize} 203 \item Backend: 204 \begin{itemize} 205 \item Complete data retrieval from BT device 206 \end{itemize} 207 \item Over the weekend: 208 \begin{itemize} 209 \item Learn Android BT interface for 4.4 \textit{KitKat} and 6.0 \textit{Lollipop} 210 \item Learn Android \textit{Material UI} specifications for clean GUI presentation 211 \end{itemize} 212 \end{enumerate} 213 \end{frame} 214 215 \section{Questions} 216 \begin{frame} 217 \frametitle{Questions} 218 \begin{enumerate} 219 \item What are the top 3 priorities for the upcoming week? 220 \end{enumerate} 221 \end{frame} 222 223 \end{document} 224