Pipeline Technology Centre / Mbed 2 deprecated PTCSpeed_MBED1

Dependencies:   mbed mbed-rtos

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers UserInput.h Source File

UserInput.h

00001 #ifndef USERINPUT_H
00002 #define USERINPUT_H
00003 
00004 #include "mbed.h"
00005 #include <string>
00006 
00007 extern Serial pc;
00008 extern LocalFileSystem local;
00009 
00010 class UserInput{
00011     public:
00012     string company();
00013     string pipeName();
00014     int numberOfSensorsB();
00015     float distanceB(); 
00016     int numberOfSensorsS();
00017     float distanceS(); 
00018 };
00019 
00020 #endif