Laurent m / XBee_Cooker

Dependencies:   XBeeLib

Dependents:   XBeeZB_Receive_Data

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RecipeCommand.h Source File

RecipeCommand.h

00001 #include "CookerComms.h"
00002 #pragma once
00003 
00004 class RecipeCommand : public CookerComms
00005 {
00006     public:
00007         RecipeCommand(uint16_t temp, uint8_t time, uint8_t programTime);
00008     protected:
00009         uint16_t m_Temp;
00010         uint8_t m_Time;
00011         uint8_t m_ProgramTime;   
00012 };