This is used for sending Data to receiving mDot
Dependencies: libmDot-dev-mbed5-deprecated ISL29011
Fork of mdot-examples by
examples/inc/itoa.h@31:79940947df2c, 2018-04-14 (annotated)
- Committer:
- SDesign2018
- Date:
- Sat Apr 14 18:20:55 2018 +0000
- Revision:
- 31:79940947df2c
- Parent:
- 5:c9ab5062cfc3
SD card functionality isn't working as wanted. Was working before.; Add method to send longitude and latitude floats.
Who changed what in which revision?
User | Revision | Line number | New 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 |