iot_water_monitor_v2

Dependencies:   easy-connect-v16 Watchdog FP MQTTPacket RecordType-v-16 watersenor_and_temp_code

Committer:
DuyLionTran
Date:
Wed Feb 14 04:28:24 2018 +0000
Revision:
35:fc800d35c1ba
Parent:
34:601effb7b7fe
Child:
39:a5ee98bd0050
* version 2.5 02-14-2017: 3rd relay and remote time setting are added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
DuyLionTran 32:8226837c56ae 1 #ifndef __COMMANDEXECUTION_H__
DuyLionTran 32:8226837c56ae 2 #define __COMMANDEXECUTION_H__
DuyLionTran 32:8226837c56ae 3
DuyLionTran 35:fc800d35c1ba 4 #include <stdint.h>
DuyLionTran 35:fc800d35c1ba 5
DuyLionTran 34:601effb7b7fe 6 #define RELAY_1_PIN (D10)
DuyLionTran 32:8226837c56ae 7 #define RELAY_2_PIN (D11)
DuyLionTran 34:601effb7b7fe 8 #define RELAY_3_PIN (D12)
DuyLionTran 32:8226837c56ae 9
DuyLionTran 34:601effb7b7fe 10 void CE_HandleRelays(int Relay1State, int Relat2State, int Relat3State);
DuyLionTran 35:fc800d35c1ba 11 void CE_SetRTCTime(uint32_t CurrentEpochTime);
DuyLionTran 32:8226837c56ae 12
DuyLionTran 32:8226837c56ae 13 #endif /* __COMMANDEXECUTION_H__ */