To-do lists, gantt charts, team calendar, task management tools, project planning softwares, & more - While all these intangible solutions are good for tracking, we want to provide our users an opportunity to celebrate the accomplishment of a task. We built "Rings of Success" to experience the sense of satisfaction by triggering a huge arcade button connected to a display of task performance matrix of the studio.

0

Inspiration

The overabundance and ease of accessibility to task managing applications these days have made scheduling tasks easier. However, scheduling a task doesn't guarantee the execution of one, in another words, a Procrastinator will schedule and ignore thereafter. Therefore, the idea of "Rings of Success" germinated after understanding the basic barrier for task completion for a procrastinator. This barrier is called "Instant Gratification Monkey"

0


0

Ring of Success: Concept

 After years of behavioral psychology research, today user experience designers have been able to create beautiful interfaces for task scheduling applications. However, the very fundamental science of notifications is, in a word, alarming. Therefore, soon after the launch of these applications, user started disabling notifications in there devices, which were subdivided by the place they appear: lock screen, notification center, and banners. 

With Rings of Success, we envision to give our user the power to create notifications for oneself. The user does so after completing a task. The intent is to spark motivation in the user by glancing at the tasks done instead of looking at the list of "To Do" tasks.

While ideating this concept, we often referred to our learnings from the class reading: Rogers Y, Hazlewood W, Marshall P, Dalton NS, Hertrich S, (2010) Ambient Influence: Can Twinkly Lights Lure and Abstract Representations Trigger Behavioral Change?, UbiComp 2010

After reading this paper, we realized the power ambient devices behold in persuading or changing behavior in a workplace setting.

As visually bright colors and layers of complexity, like a mix pop-ups are hard to look away. Therefore, our concept also includes a dashboard in our studio to display the state of synergy. This display is engineered to collect data from each "Rings of Success" device inside studio's ecosystem.

We believe that applications of this kind of influence can be quite profound.

0


0


0
Components
Img 7028
0


0
Rings Of Success - Object show
// This #include statement was automatically added by the Particle IDE.
#include <neopixel.h>

// This #include statement was automatically added by the Particle IDE.
#include <neomatrix.h>

// This #include statement was automatically added by the Particle IDE.
#include <Adafruit_GFX.h>

int MATRIX_PIN = D6;
#define NEO_GRB  ((1 << 6) | (1 << 4) | (0 << 2) | (2)) // 0x52
#define NEO_KHZ800 0x0000 // 800 KHz datastream

Adafruit_NeoMatrix matrix = Adafruit_NeoMatrix(32, 8, MATRIX_PIN,
NEO_MATRIX_BOTTOM + NEO_MATRIX_RIGHT +
NEO_MATRIX_COLUMNS + NEO_MATRIX_ZIGZAG,
NEO_GRB + NEO_KHZ800);

const uint16_t colors[] = {
 matrix.Color(255, 0, 0), matrix.Color(0, 255, 0), matrix.Color(0, 0, 255) };

int x    = matrix.width();
int pass = 0;

void setup() {
   matrix.begin();
   matrix.setTextWrap(false);
   matrix.setBrightness(40);
   matrix.setTextColor(colors[0]);
   
    for (int i = 0; i < 256;i++){
    matrix.fillScreen(0);
    matrix.setCursor(x, 0);
    matrix.setTextColor(colors[1]);
    matrix.print(F("RINGS OF SUCCESS"));
    if(--x < -96) {
    x = matrix.width();
    }
    matrix.show();
    delay(50);
    }
}

void loop() {
  matrix.fillScreen(0);
  matrix.setCursor(x, 0);
 /* matrix.print(F("Hi Brian"));
  if(--x < -36) {
    x = matrix.width();
    if(++pass >= 3) pass = 0;
    matrix.setTextColor(colors[pass]);
  }
  matrix.show(); */
  if(++pass >= 3) pass = 0;
  for(int i = 8; i > -1; i--) {
    matrix.drawFastHLine(0,i,32,colors[pass]);
    matrix.show();
    delay(1000);
  }
  matrix.fillScreen(0);
  matrix.show();
  delay(500);
}
Click to Expand
0

Process

0

The build process started by using th LED matrix to determine the outside diameter of the cylinder required for to which the matrix would attach. The size was marked out on a piece of maple, and precisely turned on a lathe. The inside of the cylinder was hollowed out to allow for positioning of the particle, wiring, and button. Next, we calculated the required size for the acrylic cover, lasercut it to size, and formed it using a heat gun to match the radius of the mounted LED matrix. Finally, we laser-cut plywood rings to capture and secure the acrylic cover around the cylinder.

0
Mounting a Face Plate
Giphy
0
Holing up
Giphy 5
0
Turning on a lathe
Giphy 3
0
Laser Cutting the Rings
Giphy 4
0
Integrating the electronics
Giphy 2
0

The displayboard was built by mounting twelve LED strips to a plywood board, and soldering connections to each of the ends. A frame was built to cover the LEDs using a piece of laser-cut plywood with rice-paper acting as a diffuser. 

0

Future applications of Rings of Success

For future iterations, we want to experiment with the communication within two Rings of Success devices. If the team member A finishes a task and presses the button, how would that reflect on the other team member B's device. 

Secondly, we propose to introduce more playful iterations of animation on the matrix. Other ideas for display shared below are categorised as per the personalities of the users:

  1. The matrix showing a jumbled up pixelated display to spark the OCD inside the user. The idea is to trigger the need to organize, straighten, clean, and otherwise coddle the inner micromanager. When we spoke with potential users, we realised that people who like to use the task scheduler application suffer from OCD (obsessive-compulsive disorder) frequently and have unwanted thoughts urging them to have compulsive behaviors. This pixelated matrix will correct itself step-by-step as the user progresses to complete the tasks.
  2. Gamifiying the experience by allowing the user to complete a line of blocks by finishing the task. Pixel's fun graphics will certainly bolster its appeal, and  draw a simple gameplay. This idea was inspired by "Pixel drop game" which is legitimately one of the most addictive games out there. 

0

Feedback

  • Think about more innovative ways to relay the information to the user of their accomplishment. The team can experiment more with the verbal outputs of the notifications for the display board.
  • Think about how might you integrate more data sources into your object to make more inclusive in the ecosystem and informative. Explore opportunities to network to exchange input and output. 
  • Think about the other ways of displaying rings on the device, maybe you can not introduce the rings but other playful display interaction.
  • Think about how you can introduce the context in your notification mechanism. How would the user get to learn about the kind of task accomplished?

x
Share this Project

Courses

49713 Designing for the Internet of Things

· 18 members

A hands-on introductory course exploring the Internet of Things and connected product experiences.


Focused on
Skills
Tools
About

To-do lists, gantt charts, team calendar, task management tools, project planning softwares, & more - While all these intangible solutions are good for tracking, we want to provide our users an opportunity to celebrate the accomplishment of a task. We built "Rings of Success" to experience the sense of satisfaction by triggering a huge arcade button connected to a display of task performance matrix of the studio.

Created

March 2nd, 2019