pepe

Dependencies:   mbed Matrix

Communication.h

Committer:
PedroMartins96
Date:
2019-03-13
Revision:
0:a7324f51348d

File content as of revision 0:a7324f51348d:

#ifndef COMMUNICATION_H
#define COMMUNICATION_H
 
#include "mbed.h"
 
void init_communication(Serial *serial_in);
void write_bytes(char *ptr, unsigned char len);
void send_odometry(int value1, int value2, int ticks_left, int ticks_right, float x, float y, float theta);
 
#endif