Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Communication.h
- Committer:
- ppovoa
- Date:
- 2021-05-06
- Revision:
- 4:256f2cbe3fdd
- Parent:
- 1:dc87724abce8
File content as of revision 4:256f2cbe3fdd:
#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);
void send_map(float Mapa);
#endif