yes

communication.h

Committer:
128keaton
Date:
2019-06-24
Revision:
0:2b8bbdd96dca

File content as of revision 0:2b8bbdd96dca:

#ifndef COMMUNICATION_H
#define COMMUNICATION_H

// Define the orders that can be sent and received
enum Communication {
  HELLO = 0,
  RECEIVED = 1,
  UP = 2,
  DOWN = 3,
  OK = 4,
  BACK = 5,
  POWER = 6,
  BAD = 7,
  ALREADY_CONNECTED = 8
};

typedef enum Communication Communication;

#endif