Files
ENIG/Arduino_PLC/UtilClass.h
2025-01-07 16:07:58 +09:00

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