This is used for sending Data to receiving mDot

Dependencies:   libmDot-dev-mbed5-deprecated sd-driver ISL29011

Fork of mdot-examples by 3mdeb

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers itoa.h Source File

itoa.h

00001 #ifndef __ITOA_H
00002 #define __ITOA_H
00003 
00004 #include <string.h>
00005 
00006 char* itoa(int num, char* str, int base);
00007 
00008 void reverse(char *s);
00009 
00010 #endif