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 TempUpdate : public CookerComms
manl2003 0:0e9dcb5dffbc 5 {
manl2003 0:0e9dcb5dffbc 6 public:
manl2003 0:0e9dcb5dffbc 7 TempUpdate(uint16_t temp);
manl2003 0:0e9dcb5dffbc 8 int getTemp();
manl2003 0:0e9dcb5dffbc 9 protected:
manl2003 0:0e9dcb5dffbc 10 uint16_t m_Temp;
manl2003 0:0e9dcb5dffbc 11 };