Final Report
Final Report
Final Report
i. Introduction
v. Arduino Code
vii. Advantages
viii. Limitation
ix. Conclusion
PAGE 1
INTRODUCTION
Pneumatic lift works on the principle of pneumatic system. Pneumatic system uses
compressible air or pure gas to achieve their function. The lifting mechanism within a
pneumatic lift utilizes a hollow cylinder and a piston. Using an external motor or pump,
the piston moves within the cylinder to increase air pressure allowing the cylinder to
move and create enough linear force to extend the lift components.
REQUIRED COMPONENTS :
PAGE 2
5. Tube 8mm about 4 feet long
6. Relay 5v ( 2 )
7. Arduino ( 1 )
8. Power plug ( 1 )
PAGE 3
HARDWARE DRAWING :
PAGE 4
PAGE 5
ARDUINO CODE :
void setup() {
pinMode(RelayPIn7,OUTPUT);
pinMode(RelayPIn8,OUTPUT);
void loop() {
digitalWrite(RelayPIn7,HIGH);
delay(1000);
digitalWrite(RelayPIn7,LOW);
delay(3000);
digitalWrite(RelayPIn7,HIGH);
delay(1000);
digitalWrite(RelayPIn7,LOW);
delay(3000);
digitalWrite(RelayPIn8,HIGH);
delay(1000);
digitalWrite(RelayPIn8,LOW);
delay(3000);
digitalWrite(RelayPIn8,HIGH);
delay(1000);
digitalWrite(RelayPIn8,LOW);
delay(3000);
PAGE 6
}
WORKING PRINCIPLE :
1. The fluid chosen to be flown here is compressed air. The compressed air is
transmitted through 8mm pipes from a compressed air source to a direction
control valve initially and ultimately to the pneumatic double acting cylinder.
4. Two 5\2 DCV’s are connected by means of tubes of 8mm and connectors of
different thread sizes for blocking of lift or cylinder at middle position.
6. The microcontroller is connected to two 5-volt single channel relay’s that act as
an on\off switches.
7. The reciprocating motion is transmitted through the piston which moves on the
cylinder.
8. When the DCV is given a 220-volt AC power supply the model can be lifted.
9. The stand on the cylinder gets the to and fro motion through the piston which
is connected to the DCV.
PAGE 7
APPLICATIONS :
ADVANTAGES :
LIMITATIONS :
CONCLUSION :
As a result of air being extremely abundant and free, it is easy to restoke the system
safety. As pneumatic system is running on air safety hazards are significantly reduced.
There are limited chances of fires because air is nonflammable and leakages in the
system do not negatively affect the outside environment.
PAGE 8
REFERENCES :
HTTPS://WWW.QUORA.COM/WHAT-ARE-THE-ADVANTAGES-
DISADVANTAGES-OF-PNEUMATIC-VACUUM-ELEVATORS-LIFTS
HTTPS://WWW.UNIDEX-INC.COM/BLOG/HYDRAULIC-VS-
PNEUMATIC-SYSTEMS/
PAGE 9
PAGE 10