SPRINT 4 - a-division-2019-20-odd/Repo-07 GitHub Wiki
PRESSING MECHANISM
Fabrication plan:
steps | solutions |
---|---|
Objectives | To press the paper against the wall |
Materials | Acrylic sheets / Foam sheets |
Materials chosen | Foam sheet |
Reason | Light weight so less load on the motor |
Program:
void setup()
{
pinMode(34,OUTPUT);
pinMode(35,OUTPUT);
}
void loop()
{
digitalWrite(m41,HIGH); //block press
digitalWrite(m42,LOW);
delay(1500);
digitalWrite(m41,LOW); //block stops
digitalWrite(m42,LOW);
delay(500);
digitalWrite(m41,LOW); //block back
digitalWrite(m42,HIGH);
delay(500);
digitalWrite(m41,LOW); //block stops
digitalWrite(m42,LOW);
}
WORKING:
- The paper which has been glued is being folded by folding mechanism.
- Now the paper has folded in u-shape is is being lowered to the pressing mechanism.
- Now the presser forces and the paper in between is pressed against the static wall.
- The paper has been pressed and the sides have stuck to each other.
COMPONENTS:
- Foam sheets (used to make block, wall and supports)
- Sponge (attached on the surface of block)
- 60 RPM Motor (to rotate the block for pressing against wall)
- L-clamps (for the support of the wall)
Functionality test report
Report
The foam was cut in the dimensions according to the need. The foam sheet was was layered with hard sponge . The compression helps in increase in the pressure over the paper to be pressed against the wall.
Integration test results
The pressing mechanism is synchronized with the system.