This is used for sending Data to receiving mDot

Dependencies:   libmDot-dev-mbed5-deprecated ISL29011

Fork of mdot-examples by 3mdeb

Committer:
SDesign2018
Date:
Fri Dec 01 20:22:20 2017 +0000
Revision:
5:c9ab5062cfc3
Added option 8 and 9; 8 to read SPI and 9 to write though not calling function yet;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
SDesign2018 5:c9ab5062cfc3 1 #ifndef __ITOA_H
SDesign2018 5:c9ab5062cfc3 2 #define __ITOA_H
SDesign2018 5:c9ab5062cfc3 3
SDesign2018 5:c9ab5062cfc3 4 #include <string.h>
SDesign2018 5:c9ab5062cfc3 5
SDesign2018 5:c9ab5062cfc3 6 char* itoa(int num, char* str, int base);
SDesign2018 5:c9ab5062cfc3 7
SDesign2018 5:c9ab5062cfc3 8 void reverse(char *s);
SDesign2018 5:c9ab5062cfc3 9
SDesign2018 5:c9ab5062cfc3 10 #endif