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.
Dependencies: EthernetInterface LM75B mbed-rtos mbed
setup.h
- Committer:
- RobinMechele
- Date:
- 2018-03-14
- Revision:
- 1:db9b9bec0133
- Parent:
- 0:29eeb74e55c6
- Child:
- 3:fbf3c92f10ee
File content as of revision 1:db9b9bec0133:
#ifndef setup_h #define setup_h #include "mbed.h" #include "C12832A1Z.h" #include "string.h" class Setup { public: explicit Setup(); int chooseMode(); int chooseID(); char* convertToIP(int); private: int mode; char *ip; char tempID[4]; }; #endif