Utility library for MTS Socket Modem Arduino Shield devices from Multi-Tech Systems
Dependents: mtsas mtsas thermostat_fan_demo--fan mtsas ... more
NOTE: MTS-Utils has moved to GitHub. This version will not be updated. For updates, go to the GitHub version.
Utils.h
- Committer:
- Mike Fiore
- Date:
- 2015-01-23
- Revision:
- 11:4f4966954da9
- Parent:
- 5:48d0ea2fe332
- Child:
- 15:ae12624eb600
File content as of revision 11:4f4966954da9:
#ifndef UTILS_H #define UTILS_H #include <string> //Defines a max function that can be used. inline int mts_max(int a, int b) { return a > b ? a : b; } //Defines a min function that can be used. inline int mts_min(int a, int b) { return a < b ? a : b; } ///An enumeration for relational operators enum RelationalOperator { GREATER, LESS, EQUAL, GREATER_EQUAL, LESS_EQUAL }; /** A static method for getting a string representation for the RelationalOperator * enumeration. * * @param relationalOperator a RelationalOperator enumeration. * @returns the enumeration name as a string. */ static std::string getRelationalOperatorNames(RelationalOperator relationalOperator) { switch(relationalOperator) { case GREATER: return "GREATER"; case LESS: return "LESS"; case EQUAL: return "EQUAL"; case GREATER_EQUAL: return "GREATER_EQUAL"; case LESS_EQUAL: return "LESS_EQUAL"; default: return "UNKNOWN ENUM"; } } #endif