From c8aa2ed95d6adbb74c029861fe05823ad838feef Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 9 Jun 2023 15:12:20 -0500 Subject: [PATCH] fix --- components/ratgdo/ratgdo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/ratgdo/ratgdo.h b/components/ratgdo/ratgdo.h index 666f87b..8bc4586 100644 --- a/components/ratgdo/ratgdo.h +++ b/components/ratgdo/ratgdo.h @@ -108,7 +108,7 @@ namespace ratgdo { /********************************** FUNCTION DECLARATION * *****************************************/ - void transmit(Commands command); + void transmit(command command); void sync(); void obstructionLoop(); @@ -136,14 +136,14 @@ namespace ratgdo { void query(); void doorStateLoop(); void printRollingCode(); - void getRollingCode(Commands command); + void getRollingCode(command command); void gdoStateLoop(); void statusUpdateLoop(); void readRollingCode(bool& isStatus, uint8_t& door, uint8_t& light, uint8_t& lock, uint8_t& motion, uint8_t& obstruction, uint8_t& motor); void incrementRollingCodeCounter(); void sendRollingCodeChanged(); void setRollingCodeCounter(uint32_t counter); - void sendCommandAndSaveCounter(Commands command); + void sendCommandAndSaveCounter(command command); /** Register a child component. */ void register_child(RATGDOClient* obj);