asd

Dependencies:   XBeeLib

Dependents:   XBeeZB_Receive_Data

Committer:
manl2003
Date:
Thu Mar 17 12:43:46 2016 +0000
Revision:
0:0e9dcb5dffbc
Allo F?lix

Who changed what in which revision?

UserRevisionLine numberNew contents of line
manl2003 0:0e9dcb5dffbc 1 #include "CookerComms.h"
manl2003 0:0e9dcb5dffbc 2 #pragma once
manl2003 0:0e9dcb5dffbc 3
manl2003 0:0e9dcb5dffbc 4 class RecipeCommand : public CookerComms
manl2003 0:0e9dcb5dffbc 5 {
manl2003 0:0e9dcb5dffbc 6 public:
manl2003 0:0e9dcb5dffbc 7 RecipeCommand(uint16_t temp, uint8_t time, uint8_t programTime);
manl2003 0:0e9dcb5dffbc 8 protected:
manl2003 0:0e9dcb5dffbc 9 uint16_t m_Temp;
manl2003 0:0e9dcb5dffbc 10 uint8_t m_Time;
manl2003 0:0e9dcb5dffbc 11 uint8_t m_ProgramTime;
manl2003 0:0e9dcb5dffbc 12 };