Using the mDot to receive data.
Dependencies: libmDot-dev-mbed5-deprecated ISL29011
Fork of mdot-examples by
examples/inc/itoa.h
- Committer:
- SDesign2018
- Date:
- 2018-04-14
- Revision:
- 4:ee3739e513a9
- Parent:
- 2:b44a9032fcc5
File content as of revision 4:ee3739e513a9:
#ifndef __ITOA_H #define __ITOA_H #include <string.h> char* itoa(int num, char* str, int base); void reverse(char *s); #endif