Fixed typos

This commit is contained in:
Emanuele Trabattoni
2025-06-22 15:26:41 +02:00
parent b5de72a6d1
commit dcbe637ccc
6 changed files with 16 additions and 16 deletions

View File

@@ -36,7 +36,7 @@
#define RTC_Mode 6
typedef enum {
STATE_Closs = 0, // Closs Relay
STATE_Close = 0, // Closs Relay
STATE_Open = 1, // Open Relay
STATE_Retain = 2, // Stay in place
} Status_adjustment;
@@ -44,7 +44,7 @@ typedef enum {
extern bool Relay_Flag[8]; // Relay current status flag
void Relay_Init(void);
bool Relay_Closs(uint8_t CHx);
bool Relay_Close(uint8_t CHx);
bool Relay_Open(uint8_t CHx);
bool Relay_CHx_Toggle(uint8_t CHx);
bool Relay_CHx(uint8_t CHx, bool State);