SPRINT 1 - a-division-2019-20-odd/Repo-07 GitHub Wiki
INTAKE
Fabrication plan
Steps | Solutions |
---|---|
Objectives | To make rollers |
Materials | Nylon rod / Acrylic sheet / PVC pipes |
Material chosen | PVC pipes |
Reason | Cheaper and easily available |
Program
void setup()
{
pinMode(30,OUTPUT);
pinMode(31,OUTPUT);
pinMode(8,INPUT);
Serial.begin(9600);
}
void loop()
{
digitalWrite(m1,HIGH);
digitalWrite(m2,HIGH);
if(digitalRead(ir)!=1)
{ delay(1000);
digitalWrite(m1,HIGH);
digitalWrite(m2,LOW);
delay(500);
digitalWrite(m1,HIGH);
digitalWrite(m2,HIGH);
delay(500);
digitalWrite(m1,HIGH);
digitalWrite(m2,LOW);
delay(1000)
}
WORKING:
- This mechanism is for the intake of the paper (cut in pre-set dimensions)
- The IR Sensor detects the paper and the roller starts rotating in the direction to pull the paper in
- The roller stops after the paper has reached its appropriate position
Functionality test report:
Report
The rollers were made using PVC pipes of dimensions according to the need. For increasing the thickness if the PVC pipes double tape was used. Rubber bands were used to maintain friction between the paper and the roller.
COMPONENTS:
- PVC pipe (Acts as the roller)
- PVC caps (to keeps the pipe in perfect position)
- Aluminium pipe (To attach the DC motor with the pipe)
- 60 RPM DC motor (used to rotate the rollers)
Integration test results:
The intake system is synchronized with the system.