summaryrefslogtreecommitdiffstats
path: root/checkin/checkin.tex
blob: 0c1892a6f3f9d58581648e9fabba14d5758d3588 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
\documentclass{article}
\usepackage{enumitem,amssymb}
\usepackage{pifont}

\newlist{todolist}{itemize}{2}
\setlist[todolist]{label=$\square$}
\newcommand{\cmark}{\ding{51}}%
\newcommand{\xmark}{\ding{55}}%
\newcommand{\done}{\rlap{$\square$}{\raisebox{2pt}{\large\hspace{1pt}\cmark}}%
\hspace{-2.5pt}}

\title{SOEN 422 Project Check-in}
\author{Sam Anthony 40271987}

\begin{document}

\maketitle

\par\noindent\rule{\textwidth}{0.4pt}
\textbf{Server  tasks:}
\begin{todolist}
	\item[\done] Design API.
	\item[\done] Handle \texttt{POST /humidity}.
	\item[\done] Handle \texttt{POST /target\_humidity}.
	\item[\done] Handle \texttt{GET /humidity}.
	\item[\done] Handle \texttt{GET /target\_humidity}.
	\item[\done] Handle \texttt{POST /duty\_cycle}.
	\item UI/dashboard.
\end{todolist}

\par\noindent\rule{\textwidth}{0.4pt}
\textbf{Sensor-station tasks:}
\begin{todolist}
	\item[\done] Design state machine.
	\item[\done] Measure humidity.
	\item[\done] Send humidity to server.
	\item Set target humidity with up/down buttons.
	\item Send target humidity to server.
	\item Display measured and target humidity on screen.
\end{todolist}

\par\noindent\rule{\textwidth}{0.4pt}
\textbf{HVAC-station tasks:}
\begin{todolist}
	\item[\done] Design state machine.
	\item[\done] Receive humidity from server.
	\item[\done] PID control of solenoid.
	\item Receive target humidity from server.
	\item Send duty cycle to server.
\end{todolist}

\end{document}