PhysComp » Week 4: Servo w/ Disk Gauge

3 minute read

First things first: the code for this week’s build borrows heavily from the Love-O-Meter project in the Arduino Projects Book and Project 7: Control a servo motor with a FSR from the ITP Physical Computing website.

My intent was to juxtapose two different types of visual gauge to represent the amount of pressure applied to a force sensing resistor:

  • a row of LEDs that communicate force based on the number of LEDs illuminated

  • a disk-gauge with a cutout window that rotates in proportion to the amount of force applied

When at rest, the cutout in the disk-gauge reveals an invitation to “SQUEEZE ME” (which, now that I think of it, doesn’t make it what exactly is meant to be squeezed) and the first LED blinks (more on that later).

As more force is applied, the LEDs illuminate in sequence (three green, two yellow, one red) and the disk-gauge rotates clockwise through 180 degrees of motion.

When the amount of pressure applied to the sensor is at its maximum, the cutout window in the disk-gauge reveals the message “OUCH!” and all the LEDs are illuminated with the red LED blinking rapidly.

Video below:

The part of this exercise I found most befuddling was the rapidly blinking green LED when the project is at risk, and the rapidly blinking red LED when the maximum amount of pressure is applied to the force sensing resistor. The unintended blinking goes away when the servo is disconnected from the breadboard so I have to imagine it has something to do with the pulse width modulation that drives the servo, but I have no idea how to identify the actually source of the problem.

Lastly, early on in Intro to Computational Media we’re taught recurring patterns are good indicators that code can be better optimized. The code as it’s written sends LOW and HIGH outputs to a row of six LEDs for each additional 1/6th of the total range that measures force applied to the sensor.

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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// if pressure sensor value is 0, turn off all LEDs
if (analogValue <= 0) {
  digitalWrite(2, LOW);
  digitalWrite(3, LOW);
  digitalWrite(4, LOW);
  digitalWrite(5, LOW);
  digitalWrite(6, LOW);
  digitalWrite(7, LOW);
}

// if pressure sensor value increases, turn one LED on
else if (analogValue >= 10 && analogValue <= 150) {
  digitalWrite(2, HIGH);
  digitalWrite(3, LOW);
  digitalWrite(4, LOW);
  digitalWrite(5, LOW);
  digitalWrite(6, LOW);
  digitalWrite(7, LOW);
}

// if pressure sensor value increases, turn a second LED on
else if (analogValue >= 150 * 2 && analogValue <= 150 * 3) {
  digitalWrite(2, HIGH);
  digitalWrite(3, HIGH);
  digitalWrite(4, LOW);
  digitalWrite(5, LOW);
  digitalWrite(6, LOW);
  digitalWrite(7, LOW);
}

// if pressure sensor value increases, turn third LEDs on
else if (analogValue >= 150 * 3 && analogValue <= 150 * 4) {
  digitalWrite(2, HIGH);
  digitalWrite(3, HIGH);
  digitalWrite(4, HIGH);
  digitalWrite(5, LOW);
  digitalWrite(6, LOW);
  digitalWrite(7, LOW);
}

// if pressure sensor value increases, turn a fourth LED on
else if (analogValue >= 150 * 4 && analogValue <= 150 * 5) {
  digitalWrite(2, HIGH);
  digitalWrite(3, HIGH);
  digitalWrite(4, HIGH);
  digitalWrite(5, HIGH);
  digitalWrite(6, LOW);
  digitalWrite(7, LOW);
}

// if pressure sensor value increases, turn a fifth LED on
else if (analogValue >= 150 * 5 && analogValue <= 150 * 6) {
  digitalWrite(2, HIGH);
  digitalWrite(3, HIGH);
  digitalWrite(4, HIGH);
  digitalWrite(5, HIGH);
  digitalWrite(6, HIGH);
}

// if pressure sensor value increases, turn all LEDs on
else if (analogValue >= 150 * 6 && analogValue <= 150 * 7) {
  digitalWrite(2, HIGH);
  digitalWrite(3, HIGH);
  digitalWrite(4, HIGH);
  digitalWrite(5, HIGH);
  digitalWrite(6, HIGH);
  digitalWrite(7, HIGH);
}

My guess is there’s a smarter way to go about this but I’m unclear what that might be.

Categories:

Updated: