Keaton Burleson / BluetoothTest
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers communication.h Source File

communication.h

00001 #ifndef COMMUNICATION_H
00002 #define COMMUNICATION_H
00003 
00004 // Define the orders that can be sent and received
00005 enum Communication {
00006   HELLO = 0,
00007   RECEIVED = 1,
00008   UP = 2,
00009   DOWN = 3,
00010   OK = 4,
00011   BACK = 5,
00012   POWER = 6,
00013   BAD = 7,
00014   ALREADY_CONNECTED = 8
00015 };
00016 
00017 typedef enum Communication Communication;
00018 
00019 #endif