initial commit
This commit is contained in:
17
Arduino_PLC/UtilClass.h
Normal file
17
Arduino_PLC/UtilClass.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user