mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-14 07:49:01 +00:00
11 lines
211 B
C
11 lines
211 B
C
#ifndef _HEXUTILS_H
|
|
#define _HEXUTILS_H
|
|
|
|
#include <stdint.h>
|
|
#include "Arduino.h"
|
|
|
|
String toHex(uint8_t* in);
|
|
String toHex(uint8_t* in, uint8_t size);
|
|
void fromHex(uint8_t *out, String in, uint8_t size);
|
|
|
|
#endif |