Electric Tiger DAQ  1.0.0
Data Acquisition Software for the Electric Tiger Experiment
arduino.h
1 #ifndef ARDUINO_H
2 #define ARDUINO_H
3 
4 //C System-Headers
5 //
6 //C++ System headers
7 #include <vector>
8 //Boost Headers
9 //
10 //Qt Headers
11 //
12 //Project specific headers
13 #include "../SocketComm/q_socket_comm.h"
14 #include "../AbstractSocketCommunicator/abstractsocketcommunictor.h"
15 
22 
23  public:
24  Arduino( std::string ip_addr, uint port_number, QObject* parent = 0 );
25  Arduino& operator=( const Arduino& ) = delete; // non copyable
26 
38  double GetCavityLength();
39 
40  private:
41  //
42 
43 };
44 
45 
46 #endif // ARDUINO_H
Object to send and receive commands from an Arduino Uno (R3)
Definition: arduino.h:21
double GetCavityLength()
Get the current cavity length from the Arduino.
Definition: arduino.cpp:23
Definition: abstractsocketcommunictor.h:16