2017-04-12 17:28:30 -04:00
|
|
|
#ifndef DDR_H
|
|
|
|
|
#define DDR_H
|
|
|
|
|
|
2013-10-09 00:41:48 -04:00
|
|
|
#include "Arduino.h"
|
|
|
|
|
#include "Node.h"
|
|
|
|
|
|
|
|
|
|
class Ddr: public Node
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Ddr(); //contructor
|
|
|
|
|
void init();
|
|
|
|
|
short processRequest(byte* request, byte* sendBuff);
|
|
|
|
|
void update();
|
2017-01-25 15:59:19 -05:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
2013-10-09 00:41:48 -04:00
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
};
|
2017-01-25 15:59:19 -05:00
|
|
|
|
2017-04-12 17:28:30 -04:00
|
|
|
#endif
|
|
|
|
|
|