HexDump.h
Go to the documentation of this file.
1 /*
2  * HexDump.h
3  *
4  * Created on: Feb 14, 2016
5  * Author: harry
6  */
7 
8 #pragma once
9 
10 #include "Arduino.h"
11 
12 class HexDump
13 {
14 public:
15  HexDump();
16  virtual ~HexDump();
17 
18  void print(unsigned char* data, int len);
19  void resetAddr();
20 
21 private:
22  void pritln(char* buf, int len);
23  int addr = 0;
24 };
void print(unsigned char *data, int len)
Definition: HexDump.h:12
virtual ~HexDump()
void resetAddr()