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