Fixed build issue

This commit is contained in:
Ziver Koc 2016-02-24 21:51:16 +01:00
parent bfc7308cce
commit 853f1d0fe8
14 changed files with 172 additions and 115 deletions

View file

@ -1,8 +1,11 @@
#ifndef HARDWAREPHOTOCELL_H
#define HARDWAREPHOTOCELL_H
#include "HalInterfaces.h"
#include "Interrupt.h"
class HardwarePhotocell : public HardwarePowerConsumption
class HardwarePhotocell : public HardwarePowerConsumption
{
public:
virtual void setup();
@ -10,7 +13,8 @@ public:
virtual void reset();
private:
Interrupt* interrupt;
unsigned int pulse;
}
};
#endif // HARDWAREPHOTOCELL_H
#endif // HARDWAREPHOTOCELL_H