yotaro morizumi / Mbed 2 deprecated zoomy_customLibrary

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers aircylinder.hpp Source File

aircylinder.hpp

00001 #pragma once
00002 #include<mbed.h>
00003 #include<portSet.hpp>
00004 
00005 class aircylinder
00006 {
00007 public:
00008     aircylinder(Port port ,bool push_flag);
00009     void push(int cylinder_num);
00010     void pull(int cylinder_num);
00011 private:  
00012     Port port_;
00013     bool push_flag_;
00014 };