Tutorials7 min read

Create a Stopwatch Timer using Formulas and Variables

In this advanced tutorial, you'll create a stopwatch-styled timer while exploring how formulas, detect functions, and variables can manipulate data.

Cal Brackin
Cal Brackin, UX Design Student @ University of Colorado-BoulderSeptember 30, 2021
Stopwatch Timer Using Formulas and Variables Thumbnail

Introduction

Time-based UI's are occasionally overlooked in UX design strategy, but stopwatch-styled timers are common features in exercise, cooking, and productivity apps. Consider the apps you use that include a temporal aspect of tasks and how you might incorporate a stopwatch timer into the apps you are designing.

ProtoPie allows designers to create stopwatch timers by using formulas, detect functions, and variables. With these powerful tools, ProtoPie is able to read and react to changes in data. While it may seem complicated, exploring these skills will prove that ProtoPie is a powerful tool for your data (and time) oriented designs!

What you will learn

  1. Automate the centiseconds using a variable
  2. Increase the second using detect and condition
  3. Increase the minute using detect and condition
  4. Stop and reset the stopwatch

In the end, you’ll be able to make something like this!

Stopwatch Prototype Made With ProtoPie

Before you start

In the assets, you'll notice that the interactions for the start/stop button have already been created. This is made with the Condition feature. If you want to learn how to make a button based on Condition, please check How to Make a Toggle Button with Condition.

Step-by-step instructions

1. Automate the centiseconds using a variable

 1. You are going to start working on the last two digits (centiseconds) and making them start and stop with the button. Create a new variable and call it centisecond. Leave the variable's defaults so it will remain as a number and starting at zero. Drag out your debugger onto your preview screen so you can test your work.

Create a new variable and call it centisecond

 2. Under the start condition, add an Assign that is linked to the centisecond variable. The formula will be centisecond+1. Toggle the repeat on and also the Infinite Repeat. The interval is 0.01

Add an assign function that is linked to the centisecond variable

 3. Under the Stop condition, add a Stop response to the centisecond variable. Testing your start and stop button in the preview, you'll notice the numbers do continuously go up and will stop with the button.

Under the stop condition, add a Stop response to the centisecond variable

 4. The centiseconds only have two digits so you'll need the numbers to reset at 99. To do this, add a new trigger and select Detect linked to the centisecond variable.

Add a new trigger and select Detect linked to the centisecond variable

 5. Create a condition, that reads when the centisecond ≥ 99. Then, add a Reset. Change the duration to 0 and the start delay to 0.01. It is very hard to notice this delay, but it is important for later on. Using your debugger, you can see that the value goes to 99 and then restarts at 0.

Create a condition, that reads when the centisecond ≥ 99

 6. Now, we want to assign this value to the text. Under the detect trigger, add a Text response. Link this to the centisecond and insert a formula, lpad(centisecond,2,"0"). This formula ensures that there are two digits in the centiseconds by inserting a 0 with single-digit numbers.

Under the detect trigger, add a Text response

💡 lpad(): Left-pad a text with another text, to a specific length.

  • lpad(source:TEXT,length:NUMBER,pad:TEXT) → TEXT

2. Increase the seconds based on the centiseconds

 1. When the centiseconds reach 99, we want the seconds to increase by 1. To do this, add a variable and rename it second. Leave the variable's defaults so it will remain as a number and starting at zero. Drag the debugger onto your preview scene.

Add a variable and rename it second

 2. Under the Detect trigger, add an Assign under the Condition we just created and link it to the second variable. Type into the formula, second+1 so every time the centiseconds reach 99, the seconds will increase by 1. Change the start delay to 0.01. Do not make this repeat.

Under the Detect trigger, add an Assign under the Condition

 3. Assign the variable to the text by adding a Text response linked to the "second" text. As before, the formula will be lpad(second,2,"0") and will add a 0 to all single-digit numbers.

Assign the variable to the text by adding a Text response linked to the "second" text

 4. Make sure to change the start delay to 0.01 and that the Text response for the second variable is after the Assign response. The order of the interaction pieces is also important. Make sure that the Assign response is above the Text response. You do this because you want ProtoPie to trigger the Assign response then the Text response.

Make sure to change the start delay to 0.01

3. Increase the minutes based on the seconds

 1. Add a Detect trigger linked to the second variable. Then, add a condition linked to the second variable that reads, when the second variable ≥ 59.

Add a Detect trigger linked to the second variable

 2. Under this condition, create a Reset response linked to the second and make the start delay 1.

This means that when the seconds reach 59, it will delay by 1 second before restarting to 0.

create a Reset response linked to the second and make the start delay 1

 3. Along with resetting the variable, you need to reset the text. Add another Reset linked to the second text and change the start delay to 1.

Add another Reset linked to the second text and change the start delay to 1

 4. To link the minute variable to text, create a variable and rename it "minute". Add an Assign response under the last Reset response and link it to the minute variable you just created. The formula will be minute+1. The start delay will be 1.

Add an Assign response under the last Reset response

 5. Create a Text response under the assign, link it to the minute text, and use the formula, lpad(minute,2,"0"). Change the start delay to 1.

Create a Text response under the assign

 6. In the preview window, when the seconds reach 59 the minutes should increase by 1 and the seconds reset to 0.

4. Make the reset button actionable

 1. Create a Tap trigger for the reset button. Create a Stop response linked to the centisecond variable.

 2. Then, you need to reset all the variables (centisecond, second, minute) followed by their corresponding text. Create three reset responses each linked to these three variables. Create three reset responses each linked to the text of these three variables.

 3. You also need to reset the start/stop button's to their original state. Select the Stop layer and create a reset response. Then, create a reset response with the Start and Base layers.

 4. See the image below for reference.

Make the reset button actionable

Congratulations!

You explored many advanced techniques in this tutorial including using Formulas, Detect, and Variables! Now that you've learned these techniques, consider how you can incorporate other strategies to make stopwatch timers for your unique uses!

We would love to see your crazy experiments. Create your own prototype and share it on Twitter or Instagram with #MadeWithProtoPie