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.
Misc.h
- Committer:
- khaiminhvn
- Date:
- 2021-03-17
- Revision:
- 2:31917884f2d4
- Parent:
- 1:a46794267da5
- Child:
- 3:a1a820da71f6
File content as of revision 2:31917884f2d4:
#ifndef MISC_H #define MISC_H //INCLUDES #include "mbed.h" #include "string" class Misc{ public: static string itos(int n); static string itos(int n, int w); static string itos(float n); static string itos(float n, int w); }; #endif