prabhuta
Published © GPL3+

Backpack Weight Sensor

Create a pressure-sensitive backpack that lights up according to changes in weight

BeginnerFull instructions provided934
Backpack Weight Sensor

Things used in this project

Hardware components

LilyPad ProtoSnap Plus
SparkFun LilyPad ProtoSnap Plus
The LEDs and battery required for this project are included in this board!
×1
Resistor 10k ohm
Resistor 10k ohm
×1
Resistor 1k ohm
Resistor 1k ohm
×2
Neoprene Fabric
×1
Velostat
×1
Iron-on Fusible Interfacing
×1
Sewable Conductive Thread
Sewable Conductive Thread
×1
Foam
I used the interior of a sponge!
×1

Hand tools and fabrication machines

iron
Plier, Needle Nose
Plier, Needle Nose
Sewing Needle (hand sewing)
Scissors

Story

Read more

Schematics

Schematics

Code

CODE

Arduino
Working principle:
There are 2 LEDs (Green and Red):
- the LEDs are both OFF with no load conditions;
- the Green LED lights up with a weight between 100g and 2kg;
- the LEDs are both ON with a weight between 2.1kg and 3kg;
- the LEDs are blinking over 3kg

BOM:
Arduino lilypad ProtoSnap Plus
Textile Analog Pressure Sensor
Conductive wire
1x 10k resistor
2x 1k resistor
1x Green LED (included in ProtoSnap Plus Board)
1x Red LED (included in ProtoSnap Plus Board)

Approximated reference table:
0g    -> analogRead = 860
557g  -> analogRead = 630
945g  -> analogRead = 550
2121g -> analogRead = 410
4000g -> analogRead = 250

created by Arturo Guadalupi <a.guadalupi@arduino.cc>
*/
const int no = 850;
const int ok = 530;
const int mmh = 410;
const int argh = 330;
const int sensor = A0;
const int greenLED = A7;
const int redLED = 6;
int analogVal;

void setup() {
  // put your setup code here, to run once:
  pinMode(sensor, INPUT);
  pinMode(greenLED, OUTPUT); //green LED
  pinMode(redLED, OUTPUT); //red LED
}

void loop() {
  // put your main code here, to run repeatedly:
  analogVal = analogRead(A2);

  if (analogVal >= no) //no load
  {
    digitalWrite(greenLED, LOW);
    digitalWrite(redLED, LOW);
  }

  if (analogVal >= ok && analogVal < no) //100g < weight < 2kg;
  {
    digitalWrite(greenLED, HIGH);
    digitalWrite(redLED, LOW);
  }

  if (analogVal >= mmh && analogVal < ok) //2.1kg < weight < 3kg;
  {
    digitalWrite(greenLED, HIGH);
    digitalWrite(redLED, HIGH);
  }

  if (analogVal <= argh) //weight > 3kg;
  {
    digitalWrite(greenLED, HIGH);
    digitalWrite(redLED, HIGH);
    delay(150);
    digitalWrite(greenLED, LOW);
    digitalWrite(redLED, LOW);
    delay(150);
  }

}

Credits

prabhuta
1 project • 0 followers
Contact

Comments

Please log in or sign up to comment.