Interaction-Design-in-The-Wild

View the Project on GitHub svonhauske/Interaction-Design-in-The-Wild

10 February 2019

Empathy Machine

by Sofia von Hauske Valtierra

Creating an Empathy Machine:

First Attempt: Researching Animals

I began my journey by studying animals and their interesting behaviors and sensory abilities. One particular area that caught my attention was Firefly communication. I was fascinated by the various flying and lighting patterns these creatures use to communicate with their own species and attract mates.

I explored different possibilities for incorporating this concept into physical and digital games. However, none of the ideas I came up with felt quite right. Despite conducting extensive research, I realized that I had not yet reached the desired outcome.

firefly

So I decided to start by thinking about empathy.

Thinking About Empathy

When I think about empathy, I immediately recall something that happened back home in Mexico last year. I have two dogs, and whenever I visit, I bring one of them along. They’re both rescues, so they tend to be a bit skittish.

There’s this church a few blocks away that throws these massive block parties to celebrate different saints throughout the year. The parties go on all night, and fireworks are a big part of the celebration. The problem is, my dogs get really scared of the loud noises. They start shaking like crazy, hiding under furniture, and they won’t budge. It’s tough to see them so terrified, and we feel helpless in those situations.

During my last visit, around 2 AM, my mom took matters into her own hands. She decided to call the church and talk to the priest in charge of the celebration. She explained why she was calling and politely asked him to stop lighting up fireworks, to which the priest responded: “Animals are replaceable.” and hung up the phone.

This is a picture of the Church: 3350843466_80204db618_b

After that incident, it sparked my curiosity to dig deeper into the subject of hearing and how loud noises, like noise pollution, affect wildlife. I wanted to learn more and get a better grasp of the broader impact these things can have.

So, I started doing some research, delving into the connection between animals and sound. I wanted to understand how those loud noises can mess with their habitats, communication, and overall happiness. It became my mission to uncover the effects of noise pollution on wildlife and really get to the bottom of it.

Hearing in Animals

As I started searching for more information on this, I kept coming across things like this: news

News reports tend to focus heavily on marine life and how noise pollution impacts them, but it’s essential to remember that they’re not the only ones facing the consequences.

Noise Pollution

What is noise pollution? A noise is an unwanted or inappropriate sound. Noise pollution is noise that interferes with normal activities, and disrupts or diminishes our quality of life. PBS News Hour

Noise Pollution Effects:

Animal Pinnae

What is Pinnae? Pinnae are the external part of the ears in humans and other mammals. I decided to focus on the pinnae because I think it is something we often overlook or take for granted when we are thinking about hearing.

Here’s the interesting part: some animals can actually move their pinnae. They can rotate or swivel them around to figure out where sounds are coming from. It’s like having a built-in sound detector! This skill is super useful for predators when they’re hunting because it helps them locate their prey accurately. And for animals that are being hunted, it’s a survival tool that helps them detect and avoid potential predators.

So, pinnae may seem like just an ordinary part of our ears, but they play a vital role in helping animals hear and survive in their environments.

Examples:

Signia

animals

How can I design something that let’s humans experience an animal’s ability to rotate their pinna and focus on a sound?

First Step: Interior Mechanism

I decided to use a servo motor as the core component to achieve the pinna rotation. The servo motor would be responsible for moving the pinna-like structure. In order to make the rotation feel more interactive and connected to the user’s body, I incorporated a flex sensor into the design. This sensor detects the bending motion and translates it into degrees of rotation for the servo motor.

By bending the flex sensor with your finger, you would be able to control the extent of rotation of the pinna-like structure through the servo motor. This would simulate the experience of having control over the direction and focus of the sound, similar to how animals with rotating pinnae can adjust their hearing.

This is what my circuit looks like:

screen shot 2019-02-11 at 10 38 04 pm

screen shot 2019-02-11 at 10 38 43 pm

Second Step: Code

// Servo library

#include <Servo.h> 

Servo servo1;

const int flexpin = 0; 

void setup() 
{ 

  Serial.begin(9600);

  servo1.attach(7);
} 

void loop() 
{ 
  int flexposition;  
  int servoposition;   

  flexposition = analogRead(flexpin);

  servoposition = map(flexposition, 100, 300, 0, 180);
  servoposition = constrain(servoposition, 0, 180);


  servo1.write(servoposition);

  //Serial.print("sensor: ");
  //Serial.print(flexposition);
  //Serial.print("  servo: ");
  //Serial.println(servoposition);

  delay(20); 
}

Third Step: Exterior

Sketches:

untitled_artwork 2

untitled_artwork

3D Model:

ear1

ear2

Technical Drawings:

ear_techd

Fourth Step: Testing

screen shot 2019-02-11 at 11 56 25 pm

screen shot 2019-02-11 at 11 56 58 pm

screen shot 2019-02-11 at 11 57 32 pm

Empathy Machine Video

[](http://www.youtube.com/watch?v=BB0bYADjauI “”)

Go to main page.