The Microsoft Kinect\footurl{https://tiny.one/Kinect} was just released.
It featured a motion capture system affordable for households.
It followed the trend of \emph{natural} user interfaces, and was advertised as “\emph{You} are the controller”\footurl{https://tiny.one/youAreTheController}.
-Besides the discussion about the natural aspect of user interfaces in the previous chapter, this motivation to eliminate physical controllers also eliminated many useful, not to say essential, haptic properties of physical controlers.
+Besides the discussion about the natural aspect of user interfaces and their relevance in the previous chapter, this motivation to eliminate physical controllers also eliminated many useful, not to say essential, haptic properties of physical controlers.
This was already an issue with touch interaction, but there was at least the passive haptics of the surface.
In the case of 3D gestural interaction, the users have no haptic feedback when they interact with virtual objects.
Therefore, the immediate feedback they need for direct manipulation~\cite{schneiderman83} is essentially visual or auditory.
The main difference is the frequency range: 1--1000Hz for haptics and 200--20kHz for sound.
Managing the amplitude is easier with vibrations because the required amplitude levels are much lower.
In the end, the shape parameter is in my opinion the bottleneck of complexity for the implementation of vibrotactile devices because it imposes a much higher sampling rate.
-However, a sound generation system is a complex design, especially with microcontrollers available at the time this project started.
+It makes the design of sound generation systems complex, especially with microcontrollers available at the time this project started.
-For the sake of simplicity, I opted for a straightforward design that enabled the precise control of both frequency and amplitude at the cost of a low control of the signal shape\footnote{Controlling the signal shape remains possible, with a software $\Delta\Sigma$ modulation \href{https://tiny.one/DeltaSigma}{https://tiny.one/DeltaSigma}.}.
-The overall idea is to control the frequency and amplitude with two PWM signals generated by the timers of a microcontroller (\reffig{fig:actuatorcircuit}).
+For the sake of simplicity, I rather opted for a straightforward design that enabled the precise control of both frequency and amplitude at the cost of a low control of the signal shape\footnote{Controlling the signal shape remains possible, with a software $\Delta\Sigma$ modulation \href{https://tiny.one/DeltaSigma}{https://tiny.one/DeltaSigma}.}.
+The idea is to control the frequency and amplitude with two PWM signals generated by the timers of a microcontroller (\reffig{fig:actuatorcircuit}).
The frequency signal typically ranges between 1--1000Hz.
The amplitude is controlled with the duty cycle of a high-frequency signal.
We used voice coil actuators, therefore they behave like low-pass filters, which stabilizes this high-frequency signal, hence reducing the amplitude of the actuator's movement.
\input{figures/actuatorcircuit.tex}
As shown on \reffig{fig:wristbandprototypes}, the design of the prototypes was iterative.
-The first two prototypes used the Arduino LilyPad microcontroller board~\cite{buechley08}.
+The first two prototypes used Arduino LilyPad microcontroller boards~\cite{buechley08}.
These board are designed for wearables, so it made sense for this project.
On the first prototypes, the components were sewn with conductive thread.
It caused several issues.
Now the issue was the connection between the thread and the pads.
Using conductive glue was only a temporary fix because it would not stick long to the pads.
Given the recurring technical issues, I designed a PCB for the third prototype, which was connected to the microcontroller, battery and actuators with wires.
-This new prototype uses an Arduino Mini Pro microcontroller board\footurl{https://tiny.one/ArduinoMiniPro}, wich includes the same microcontroller than the LilyPad: the Atmega 328P\footurl{https://tiny.one/ATmega328P}.
+This new prototype uses an Arduino Mini Pro microcontroller board\footurl{https://tiny.one/ArduinoMiniPro}, which includes the same microcontroller than the LilyPad: the Atmega 328P\footurl{https://tiny.one/ATmega328P}.
This is a conveninent 8-bits microcontroller for small designs.
-The issue with this project is that it only has six timer channels, and I needed eight to control four actuators in frequency and amplitude.
+The issue with it was that it only has six timer channels, and I needed eight to control four actuators in frequency and amplitude.
Therefore I used a common frequency signal for all actuators, and an individual Amplitude signal.
This choice made sense given the type of tactile effects we planned to use, and that we will discuss in the next sections.
\begin{figure}[htb]
\centering
\includegraphics[width=\textwidth]{figures/wristband3protos}
- \label{fig:wristbandprototypes}
\caption[Haptic wristband prototypes]{Three iterations of haptic wristband prototypes. On the first prototypes, components were connected with conductive thread. On the second prototype, the components were soldered on protoboards that were connected with conductive thread. The third prototype used a home-made PCB connected with wires.}
+ \label{fig:wristbandprototypes}
\end{figure}
-The take-away is that of such prototypes requires both keeping in mind the design rationale, and having enough technical skills to implement it.
+The take-away is that prototyping interactive devices requires both keeping in mind the design rationale and the technical constraints of their implementation.
It is critical to balance the trade-offs and making informed compromises.
-For example replacing condictive thread with wires was not a compromise afterall, and make the prototype more robust.
-The restrictions on signal shape and the common frequency were actual compromised.
-But it enabled a simple and robust design while keeping an expressive output vocabulary.
+For example replacing conductive thread with wires was not a compromise afterall, and make the prototype more robust.
+It was the consequence of the bad choice of microcontroller board from the beginning.
+The restrictions on signal shape and the common frequency were actual compromises.
+But they enabled a simple and robust design while keeping an expressive output vocabulary.
\subsection{Quantitative limitations}