18 lines
290 B
C++
18 lines
290 B
C++
#ifndef _UTILCLASS_H_
|
|
#define _UTILCLASS_H_
|
|
#include "arduino.h"
|
|
|
|
class UtilClass
|
|
{
|
|
|
|
public:
|
|
|
|
void copy(byte* src, byte* dst, byte len);
|
|
uint32_t b2i(bool Value);
|
|
uint8_t spdConvPercToValue(uint8_t perc);
|
|
|
|
//void debug(char *str, ...);
|
|
};
|
|
extern UtilClass util;
|
|
#endif
|